mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 01:17:36 +00:00
38ad1d4bc4
This will effectively add msrv protections to the entire project as almost everything grabs from these. Doesn't add msrv to coins as coins/bitcoin is still frozen. Doesn't add msrv to services since cargo msrv doesn't play nice with anything importing the runtime.
20 lines
532 B
TOML
20 lines
532 B
TOML
[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"
|
|
rust-version = "1.65"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
rocksdb = { version = "0.21", default-features = false, features = ["lz4"], optional = true }
|
|
|
|
[features]
|
|
rocksdb = ["dep:rocksdb"]
|