Cargo.toml (1210B)
1 [package] 2 name = "radroots_runtime" 3 publish = ["crates-io"] 4 version = "0.1.0-alpha.2" 5 edition.workspace = true 6 authors = ["Tyson Lupul <tyson@radroots.org>"] 7 rust-version.workspace = true 8 license.workspace = true 9 description = "Runtime configuration, secret-file, and service helpers" 10 repository.workspace = true 11 homepage.workspace = true 12 documentation = "https://docs.rs/radroots_runtime" 13 readme = "README" 14 15 [features] 16 default = [] 17 cli = ["dep:clap"] 18 19 [dependencies] 20 anyhow = { workspace = true } 21 chacha20poly1305 = { workspace = true } 22 clap = { workspace = true, features = ["derive", "env"], optional = true } 23 config = { workspace = true } 24 getrandom = { workspace = true } 25 radroots_log = { workspace = true, features = ["std"] } 26 radroots_protected_store = { workspace = true, features = ["std"] } 27 radroots_runtime_paths = { workspace = true } 28 radroots_secret_vault = { workspace = true, features = ["std"] } 29 serde = { workspace = true } 30 serde_json = { workspace = true } 31 tempfile = { workspace = true } 32 thiserror = { workspace = true } 33 tokio = { workspace = true, features = ["macros", "rt-multi-thread", "signal"] } 34 toml = { workspace = true } 35 tracing = { workspace = true } 36 zeroize = { workspace = true }