fedimint-rocksdb 0.5.0

fedimint-rocksdb provides a rocksdb-backed database implementation for Fedimint.
Documentation
[package]
name = "fedimint-rocksdb"
version = { workspace = true }
authors = ["The Fedimint Developers"]
edition = "2021"
description = "fedimint-rocksdb provides a rocksdb-backed database implementation for Fedimint."
license = "MIT"
readme = "../README.md"
repository = "https://github.com/fedimint/fedimint"

[package.metadata.docs.rs]
rustc-args = ["--cfg", "tokio_unstable"]

[lib]
name = "fedimint_rocksdb"
path = "src/lib.rs"

[dependencies]
anyhow = { workspace = true }
async-trait = { workspace = true }
fedimint-core = { workspace = true }
futures = { workspace = true }
rocksdb = { version = "0.22.0", features = [ "jemalloc" ] }
tracing = { workspace = true }

[dev-dependencies]
tempfile = "3.14.0"

[target.'cfg(not(target_family="wasm"))'.dependencies]
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "sync", "time"] }