| /// Errors produced by the `forge_config` crate. | |
| pub enum Error { | |
| /// Failed to read or parse configuration from a file or environment. | |
| Config( config::ConfigError), | |
| /// Failed to serialize or write configuration. | |
| Serialization( toml_edit::ser::Error), | |
| /// An I/O error occurred while reading or writing configuration files. | |
| Io( std::io::Error), | |
| Serde( serde_json::Error), | |
| } | |