-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (81 loc) · 2.3 KB
/
Cargo.toml
File metadata and controls
88 lines (81 loc) · 2.3 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "badger-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.171", features = ["derive"] }
serde_json = { version = "1.0.103", default-features = true, features = ["alloc"] }
anyhow = "1.0.72"
thiserror = "1.0.43"
tokio = { version = "1.29.1", features = ["full", "tracing"] }
byteorder = "1.4.3"
rand = "0.8.5"
maligned = "0.2.1"
atomic = "0.5.3"
tabled = { version = "0.12.2", features = ["ansi-str", "color"] }
memmap = "0.7.0"
bytes = "1.4.0"
bloom = "0.3.2"
growable-bloom-filter = { version = "2.0.1", features = ["nightly"] }
filename = "0.1.1"
num_cpus = "1.16.0"
threads_pool = "0.2.6"
crc32fast = "1.3.2"
async-trait = "0.1.71"
fmmap = { version = "0.3.2", features = ["tokio-async"] }
parking_lot = "0.12.1"
bitflags = "2.3.3"
libc = "0.2.147"
log = { version = "0.4.19", features = ["kv_unstable", "kv_unstable_serde", "kv_unstable_sval"] }
async-channel = "1.9.0"
file-guard = "0.1.0"
fs2 = "0.4.3"
awaitgroup = "0.7.0"
range-lock = "0.2.3"
tracing = "0.1.37"
drop_cell = "0.0.0"
walkdir = "2.3.3"
crossbeam-epoch = "0.9.15"
tokio-context = "0.1.3"
dyn-clone = "1.0.12"
eieio = "1.0.0"
either = "1.8.1"
enum-unitary = "0.5.0"
atom_box = "0.1.2"
console-subscriber = "0.1.10"
uuid = { version = "1.4.1", features = ["v5", "v4"] }
winapi = "0.3.9"
itertools = "0.11.0"
tokio-metrics = "0.2.2"
metrics = "0.21.1"
metrics-prometheus = "0.4.1"
prometheus = "0.13.3"
lazy_static = "1.4.0"
getset = "0.1.2"
tokio-stream = "0.1.14"
async-stream = "0.3.5"
futures-core = "0.3.28"
backtrace-on-stack-overflow = "0.3.0"
protobuf = { version = "3.0.0-alpha.2", features = ["with-bytes"] }
[dev-dependencies]
tracing-subscriber = "0.3.17"
tracing-log = "0.1.3"
chrono = "0.4.26"
env_logger = "0.10.0"
console_log = { version = "1.0.0", features = ["color"] }
itertools = "0.11.0"
tokio-metrics = { version = "0.2.2", default-features = false }
tokio = { version = "1.29.1", features = ["full", "rt", "time", "macros", "test-util"] }
criterion = { version = "0.5.1", features = ["tokio"] }
[build]
rustflags = ["--cfg", "tokio_unstable"]
[build-dependencies]
protoc-rust = "3.0.0-alpha.2"
[[bench]]
name = "my_benchmark"
harness = false
[profile.dev]
debug-assertions = false
[profile.release]
codegen-units=1