tangle


git clone https://radroots.dev/git/tangle.git
Log | Files | Refs | README | LICENSE

Cargo.toml (596B)


      1 [package]
      2 name = "tangle_crypto"
      3 version.workspace = true
      4 edition.workspace = true
      5 authors.workspace = true
      6 rust-version.workspace = true
      7 license.workspace = true
      8 description = "Nostr event hashing and signature verification for tangle"
      9 
     10 [dependencies]
     11 k256 = { version = "0.13", features = ["schnorr"] }
     12 pocket-types = { git = "https://github.com/triesap/pocket", rev = "329334f20948c796c6016b673b92551ac4855ad7" }
     13 secp256k1 = "0.31"
     14 sha2 = "0.10"
     15 tangle_protocol = { path = "../tangle_protocol" }
     16 tokio = { version = "1", features = ["macros", "rt", "sync", "time"] }
     17 
     18 [lints]
     19 workspace = true