-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (52 loc) · 1.75 KB
/
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
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
[package]
authors = ["ymgyt <[email protected]>"]
default-run = "kvsd"
description = "Simple key value store"
edition = "2021"
license = "MIT"
name = "kvsd"
readme = "README.md"
repository = "https://github.com/ymgyt/kvsd"
version = "0.1.3"
[[bin]]
name = "kvsd"
path = "src/bin/kvsd.rs"
[[bin]]
name = "kvsadmin"
path = "src/bin/kvsadmin.rs"
[features]
cli = ["tracing-subscriber"]
default = ["cli"]
[dependencies]
async-trait = "0.1.41"
atoi = "0.3.3"
backtrace = "0.3.53"
bytes = "1.0.1"
chrono = "0.4.34"
clap = { version = "4", features = ["env", "derive", "wrap_help", "env", "std", "color", "suggestions"] }
crc32fast = "1.2.1"
num_cpus = "1.13.0"
rand = "0.8"
serde = { version = "1.0.117", features = ["derive"] }
serde_yaml = "0.8.14"
tokio = { version = "1.35", features = ["rt", "rt-multi-thread", "io-util", "net", "signal", "fs", "sync", "macros", "time"] }
tokio-rustls = { version = "0.25.0" }
tracing = "0.1.40"
tracing-futures = "0.2.4"
tracing-subscriber = { version = "0.3.18", optional = true, features = ["chrono", "env-filter"] }
# to avoid yanked deps
iana-time-zone = "0.1.60"
rustls-pemfile = "2.1.0"
serde_json = "1.0.124"
[dev-dependencies]
criterion = "0.5"
tempfile = "3"
tokio-test = "0.4.2"
[[bench]]
harness = false
name = "kvsd_benchmark"
[package.metadata.release]
allow-branch = ["main"]
pre-release-commit-message = "chore: release"
pre-release-replacements = [{ file = "CHANGELOG.md", search = "\\[unreleased\\]", replace = "[{{version}}] {{date}}", min = 1 }]
tag-message = "chore: release {{crate_name}} version {{version}}"