Cargo.toml (803B)
1 [package] 2 name = "radroots_authority" 3 publish = false 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 = "Actor and signer authority primitives for Radroots events" 10 repository.workspace = true 11 homepage.workspace = true 12 documentation = "https://docs.rs/radroots_authority" 13 14 [features] 15 default = ["std"] 16 std = ["radroots_events/std"] 17 local_signer = [ 18 "std", 19 "dep:radroots_nostr", 20 "radroots_nostr/events", 21 "radroots_nostr/std", 22 ] 23 24 [dependencies] 25 radroots_events = { workspace = true, default-features = false } 26 radroots_nostr = { workspace = true, optional = true, default-features = false } 27 28 [lints.rust] 29 unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }