Cargo.toml (810B)
1 [package] 2 name = "radroots_simplex_chat_proto" 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 = "SimpleX chat protocol primitives and codecs" 10 repository.workspace = true 11 homepage.workspace = true 12 documentation = "https://docs.rs/radroots_simplex_chat_proto" 13 readme = "README" 14 15 [features] 16 default = ["std"] 17 std = ["serde/std", "serde_json/std", "dep:zstd"] 18 19 [dependencies] 20 base64 = { version = "0.22", default-features = false, features = ["alloc"] } 21 serde = { workspace = true, default-features = false, features = [ 22 "alloc", 23 "derive", 24 ] } 25 serde_json = { workspace = true, default-features = false, features = [ 26 "alloc", 27 ] } 28 zstd = { workspace = true, optional = true }