Cargo.toml (539B)
1 [package] 2 name = "xtask" 3 version = "0.1.0-alpha.2" 4 edition.workspace = true 5 rust-version.workspace = true 6 description = "Internal workspace automation tasks" 7 readme = "README" 8 license.workspace = true 9 publish = false 10 authors = ["Tyson Lupul <tyson@radroots.org>"] 11 12 [dependencies] 13 serde = { workspace = true, features = ["derive"] } 14 serde_json = { workspace = true } 15 sha2 = { workspace = true } 16 hex = { workspace = true } 17 toml = { workspace = true } 18 19 [lints.rust] 20 unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }