-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
56 lines (53 loc) · 1.66 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
[package]
authors = ["The Tidis Authors"]
edition = "2018"
name = "tidis"
version = "2.0.0"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/tikv/tidis"
description = """
The service layer for TiKV, a distributed key-value store, powered by PingCAP.
"""
[[bin]]
name = "tidis-server"
path = "src/bin/server.rs"
[dependencies]
async-stream = "0.3.0"
atoi = "0.3.2"
bytes = "1"
chrono = "0.4"
crc = "2.0"
structopt = "0.3.14"
slog = { version = "2.3", features = ["max_level_trace", "release_max_level_debug"] }
slog-term = { version = "2.4" }
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
tokio-util = { version = "0.7.1", features = ["rt"] }
tikv-client = { git = "https://github.com/yongman/client-rust.git", branch = "dev-scanner" }
#tikv-client = { path = "../client-rust" }
lazy_static = "1.4.0"
thiserror = "1"
prometheus = { version = "0.13.0", features = ["process"]}
pprof = { version = "0.9", features = ["flamegraph", "protobuf-codec"] }
hyper = { version = "0.14.17", features = ["full"] }
async-std = { version = "1.11.0", features = ["unstable"] }
async-tls = { version = "0.11.0", features = ["server"], default-features = false }
rustls = "0.19.0"
rand = {version = "0.8.5", features = ["small_rng"] }
regex = "1"
toml = { version = "0.5.8" }
serde = { version = "1.0", features = ["derive"] }
futures = { version = "0.3", default-features = false }
mlua = { version = "0.7.4", features = ["lua51", "async", "vendored", "macros", "send"]}
sha1 = "0.10.0"
hex = "0.4.3"
[profile.release]
opt-level = 3
debug = false
lto = "thin"
incremental = true
panic = 'unwind'
debug-assertions = false
overflow-checks = false
rpath = false