-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (37 loc) · 1.16 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
[package]
name = "monolith"
version = "0.0.1"
authors = ["zhongyang.wu <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/tommycpp/monolith.git"
keywords = ["timeseries", "tsdb", "prometheus", "sled"]
description = "timeseries database that could used as promtheus remote write endpoint, support both slec or tikv"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
failure = "0.1.6"
log = "0.4.8"
clap = "2.33.0"
sled = "0.22.1"
tempfile = "3.0.7"
criterion="0.3.0"
protobuf = "2.8.0"
tiny_http = "0.6"
crc = "1.8.1"
env_logger = "0.7.1"
snap = "1"
rayon = "1.3.0"
rand = "0.7.3"
serde_json = "1.0"
serde_yaml = "0.8"
futures = { version = "0.3.1", features = ["compat", "async-await", "thread-pool"] }
uuid = { version = "0.8", features = ["v4"]}
serde = { version = "1.0", features = ["derive"] }
tikv-client = { git = "https://github.com/tikv/client-rust.git" }
[dev-dependencies]
assert_cmd = "1.0.1"
[patch.crates-io]
raft-proto = { git = "https://github.com/tikv/raft-rs", rev = "e624c1d48460940a40d8aa69b5329460d9af87dd" }
[[bench]]
name = "benchmark"
harness = false