| 1 | [package] |
| 2 | name = "config" |
| 3 | description = "Configuration loading and validation (TOML + environment overrides)." |
| 4 | version.workspace = true |
| 5 | edition.workspace = true |
| 6 | rust-version.workspace = true |
| 7 | license.workspace = true |
| 8 | authors.workspace = true |
| 9 | repository.workspace = true |
| 10 | publish.workspace = true |
| 11 | |
| 12 | [dependencies] |
| 13 | figment = { workspace = true } |
| 14 | serde = { workspace = true } |
| 15 | thiserror = { workspace = true } |
| 16 | toml = { workspace = true } |
| 17 | url = { workspace = true } |
| 18 | |
| 19 | [dev-dependencies] |
| 20 | figment = { workspace = true, features = ["test"] } |
| 21 | |
| 22 | [lints] |
| 23 | workspace = true |