Cargo.toml (642B)
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.3.4" 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 tokio = { version = "1", features = ["rt-multi-thread", "macros"] } 24 tracing = "0.1.40" 25 tracing-subscriber = "0.3.18" 26 27 [dev-dependencies] 28 hex = "0.4.3"