notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

Cargo.toml (587B)


      1 [package]
      2 name = "enostr"
      3 version = "0.1.0"
      4 edition = "2021"
      5 
      6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
      7 
      8 [dependencies]
      9 ewebsock = { version = "0.8.0", features = ["tls"] }
     10 serde_derive = "1"
     11 serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence
     12 serde_json = { workspace = true }
     13 nostr = { workspace = true }
     14 bech32 = { workspace = true }
     15 nostrdb = { workspace = true }
     16 hex = { workspace = true }
     17 tracing = { workspace = true }
     18 thiserror = { workspace = true }
     19 url = { workspace = true }