30 lines
831 B
TOML
30 lines
831 B
TOML
[package]
|
|
name = "rocky"
|
|
version = "0.1.0"
|
|
description = "Multi-threaded binding to the RocksDB C++ key-value store library"
|
|
keywords = ["rocksdb", "key-value"]
|
|
categories = ["database", "api-bindings"]
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
publish = false # TODO publish crate #severity/high #urgency/medium
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
dashmap = { workspace = true }
|
|
gat-lending-iterator = { workspace = true }
|
|
libc = { workspace = true }
|
|
librocksdb-sys = { workspace = true }
|
|
maybe-tracing = { workspace = true }
|
|
rkyv_util = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
test-log = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|