nostrdb-rs

nostrdb in rust!
git clone git://jb55.com/nostrdb-rs
Log | Files | Refs | Submodules | README | LICENSE

Cargo.toml (659B)


      1 [package]
      2 name = "nostrdb"
      3 authors = ["William Casarin <jb55@jb55.com>"]
      4 description = "An unfairly fast embedded nostr database backed by lmdb"
      5 readme = "README.md"
      6 version = "0.6.1"
      7 edition = "2021"
      8 build = "build.rs"
      9 license = "GPL-3.0-or-later"
     10 homepage = "https://github.com/damus-io/nostrdb-rs/"
     11 repository = "https://github.com/damus-io/nostrdb-rs/"
     12 
     13 [build-dependencies]
     14 cc = "1.0"
     15 bindgen = "0.69.1"
     16 
     17 [features]
     18 bindgen = []
     19 
     20 [dependencies]
     21 flatbuffers = "23.5.26"
     22 libc = "0.2.151"
     23 thiserror = "2.0.7"
     24 futures = "0.3.31"
     25 tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
     26 tracing = "0.1.40"
     27 
     28 [dev-dependencies]
     29 hex = "0.4.3"