[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" }
tracing = { workspace = true }
[dev-dependencies]
tempfile = "3.10.1"
tracing-subscriber = { version = "0.3.18", features = [ "env-filter" ] }
[target.'cfg(not(target_family="wasm"))'.dependencies]
tokio = { version = "1.38.0", features = ["rt", "rt-multi-thread", "sync", "time"] }