-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (30 loc) · 901 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "seriesdb"
version = "0.11.2"
description = "A blazing fast key-ordered db which empowered by RocksDB but supports billions of tables."
authors = ["Chaoqian Xu <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/xuchaoqian/seriesdb-rust"
keywords = ["database"]
exclude = ["/benches", ".vscode", "target", "Cargo.lock"]
edition = "2021"
rust-version = "1.75"
[dependencies]
ahash = "0.8.11"
byteorder = "1.5.0"
bytes = "1.6.1"
chrono = "0.4.38"
concurrent-initializer = "0.5.1"
log = "0.4.22"
prost = "0.13.1"
quick_cache = "0.6.2"
rocksdb = {git = "https://github.com/xuchaoqian/rust-rocksdb.git", branch = "more-apis-for-writebatch-handler", features = [
"multi-threaded-cf",
]}
thiserror = "1.0.63"
[dev-dependencies]
criterion = {version = "0.5", features = ["html_reports"]}
[[bench]]
harness = false
name = "seriesdb_bench"