-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (32 loc) · 990 Bytes
/
Cargo.toml
File metadata and controls
46 lines (32 loc) · 990 Bytes
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
[package]
name = "anode-kv"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.bench]
opt-level = 3
[profile.release]
debug = 1
[dependencies]
# let's not reimplement integer parsing
atoi = "1.0.0"
# error tracking is cool
thiserror = "1.0.35"
# sometimes we want to trace
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "std"] }
# starting this out async
# - enable "full" to get all the things, TODO slim this down later!
# - enable "tracing" to support use of tokio-console
tokio = { version = "1.21.1", features = ["full", "tracing"] }
# emit events to use with tokio-console
console-subscriber = "0.1.8"
# handy for reading contiguous streams of... bytes.
bytes = "1.2.1"
# clap if you like command line arguments
clap = { version = "4.0.15", features = ["derive"] }
[dev-dependencies]
criterion = "0.4.0"
[[bench]]
name = "kv_benchmark"
harness = false