Cargo.toml (671B)
1 [package] 2 name = "radroots_publish_proxy_protocol" 3 publish = false 4 version.workspace = true 5 edition.workspace = true 6 authors = ["Tyson Lupul <tyson@radroots.org>"] 7 rust-version.workspace = true 8 license = "MIT OR Apache-2.0" 9 description = "Shared Radrootsd publish proxy JSON-RPC wire contracts" 10 repository.workspace = true 11 homepage.workspace = true 12 documentation = "https://docs.rs/radroots_publish_proxy_protocol" 13 readme = "README" 14 15 [features] 16 default = ["std", "serde"] 17 std = [] 18 serde = ["dep:serde"] 19 20 [dependencies] 21 serde = { workspace = true, optional = true, features = ["alloc", "derive"] } 22 23 [dev-dependencies] 24 serde_json = { workspace = true, features = ["std"] }