Cargo.toml (1286B)
1 [package] 2 name = "radroots_simplex_interop_tests" 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 = "Synthetic SimpleX interop fixtures and roundtrip tests" 10 repository.workspace = true 11 homepage.workspace = true 12 documentation = "https://docs.rs/radroots_simplex_interop_tests" 13 readme = "README" 14 15 [features] 16 default = ["std"] 17 std = [ 18 "radroots_simplex_agent_proto/std", 19 "radroots_simplex_agent_runtime/std", 20 "radroots_simplex_chat_proto/std", 21 "radroots_simplex_smp_crypto/std", 22 "radroots_simplex_smp_proto/std", 23 "radroots_simplex_smp_transport/std", 24 "serde_json/std", 25 ] 26 27 [dependencies] 28 radroots_simplex_agent_proto = { workspace = true, default-features = false } 29 radroots_simplex_agent_runtime = { workspace = true, default-features = false } 30 radroots_simplex_chat_proto = { workspace = true, default-features = false } 31 radroots_simplex_smp_crypto = { workspace = true, default-features = false } 32 radroots_simplex_smp_proto = { workspace = true, default-features = false } 33 radroots_simplex_smp_transport = { workspace = true, default-features = false } 34 serde_json = { workspace = true, default-features = false, features = [ 35 "alloc", 36 ] }