serai/common/db/Cargo.toml

20 lines
464 B
TOML
Raw Normal View History

[package]
name = "serai-db"
version = "0.1.0"
description = "A simple database trait and backends for it"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/common/db"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
keywords = []
edition = "2021"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
2023-07-13 23:09:11 +00:00
[dependencies]
rocksdb = { version = "0.21", optional = true }
[features]
rocksdb = ["dep:rocksdb"]