| 1 | [package] |
| 2 | name = "codewhale-config" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | license.workspace = true |
| 7 | repository.workspace = true |
| 8 | description = "Config schema and precedence model for Codewhale" |
| 9 | |
| 10 | [lints] |
| 11 | workspace = true |
| 12 | |
| 13 | [dependencies] |
| 14 | anyhow.workspace = true |
| 15 | base64 = "0.23.1" |
| 16 | chrono.workspace = true |
| 17 | ring = "0.17.14" |
| 18 | semver.workspace = true |
| 19 | codewhale-execpolicy = { path = "../execpolicy", version = "0.10.0" } |
| 20 | codewhale-paths = { path = "../paths", version = "0.10.0" } |
| 21 | codewhale-secrets = { path = "../secrets", version = "0.10.0" } |
| 22 | fd-lock = "4.0.4" |
| 23 | libc = "0.2" |
| 24 | serde.workspace = true |
| 25 | serde_json.workspace = true |
| 26 | sha2.workspace = true |
| 27 | tempfile.workspace = true |
| 28 | toml.workspace = true |
| 29 | toml_edit.workspace = true |
| 30 | tracing.workspace = true |
| 31 | |
| 32 | [target.'cfg(windows)'.dependencies] |
| 33 | windows-sys = { version = "0.61.2", features = ["Win32_Foundation", "Win32_Security", "Win32_Security_Authorization", "Win32_Storage_FileSystem", "Win32_System_Threading"] } |
| 34 |