lib

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

Cargo.toml (1029B)


      1 [package]
      2 name = "radroots_simplex_smp_transport"
      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 SMP transport framing and TLS handshake policy"
     10 repository.workspace = true
     11 homepage.workspace = true
     12 documentation = "https://docs.rs/radroots_simplex_smp_transport"
     13 readme = "README"
     14 
     15 [features]
     16 default = ["std"]
     17 std = [
     18   "base64/std",
     19   "radroots_simplex_smp_crypto/std",
     20   "radroots_simplex_smp_proto/std",
     21   "rustls/std",
     22   "sha2/std",
     23   "x509-parser/verify",
     24 ]
     25 
     26 [dependencies]
     27 base64 = { workspace = true }
     28 radroots_simplex_smp_crypto = { workspace = true, default-features = false }
     29 radroots_simplex_smp_proto = { workspace = true, default-features = false }
     30 rustls = { workspace = true, default-features = false }
     31 sha2 = { workspace = true, default-features = false }
     32 x509-parser = { workspace = true, default-features = false }
     33 
     34 [dev-dependencies]
     35 rcgen = { version = "0.14" }