lib

Core libraries for Radroots
git clone https://radroots.dev/git/lib.git
Log | Files | Refs | README | LICENSE

Cargo.toml (1307B)


      1 [package]
      2 name = "radroots_simplex_agent_runtime"
      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 agent runtime coordination"
     10 repository.workspace = true
     11 homepage.workspace = true
     12 documentation = "https://docs.rs/radroots_simplex_agent_runtime"
     13 readme = "README"
     14 
     15 [features]
     16 default = ["std"]
     17 std = [
     18   "radroots_simplex_agent_proto/std",
     19   "radroots_simplex_agent_store/std",
     20   "radroots_simplex_smp_crypto/std",
     21   "radroots_simplex_smp_proto/std",
     22   "radroots_simplex_smp_transport/std",
     23   "sha2/std",
     24   "sha3/std",
     25 ]
     26 
     27 [dependencies]
     28 base64 = { version = "0.22", default-features = false, features = ["alloc"] }
     29 radroots_simplex_agent_proto = { workspace = true, default-features = false }
     30 radroots_simplex_agent_store = { 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 sha2 = { workspace = true, default-features = false }
     35 sha3 = { workspace = true, default-features = false }
     36 
     37 [dev-dependencies]
     38 tempfile = { workspace = true }