forked from oceanbase/obkv-table-client-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
78 lines (70 loc) · 1.68 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "obkv-table-client-rs"
version = "0.2.0"
authors = ["OceanBase OBKV Developers", "CeresDB Authors <ceresdbservice@gmail.com>"]
edition = "2021"
[workspace.package]
version = "0.2.0"
authors = ["OceanBase OBKV Developers", "CeresDB Authors <ceresdbservice@gmail.com>"]
edition = "2021"
[workspace]
members = [
"ycsb-rs",
]
[lib]
name = "obkv"
[[bench]]
name = "concurrent_insert"
harness = false
path = "benches/concurrent_insert/mod.rs"
[workspace.dependencies]
anyhow = "1.0"
log = "0.4"
toml = "0.7.3"
prometheus-client = "0.21"
tokio = { version = "1", features = ["full"] }
[dependencies]
anyhow = { workspace = true }
backtrace = "0.3"
byteorder = "1.2"
bytes = "1.4"
chrono = "0.4"
crossbeam = "0.8.2"
futures = "0.1"
futures-cpupool = "0.1"
lazy_static = "1.3"
linked-hash-map = "0.5"
log = { workspace = true }
murmur2 = "0.1"
mysql = { version = "24.0.0", default-features = false, features = ["default-rustls"] }
net2 = "0.2"
pin-project-lite = "0.2"
prometheus-client = { workspace = true }
quick-error = "1.2"
r2d2 = "0.8.3"
rand = "0.8"
regex = "1.7"
reqwest = { version = "0.11.13", default-features = false, features = ["rustls-tls", "blocking"] }
scheduled-thread-pool = "0.2"
serde = "1.0"
serde_bytes = "0.11"
serde_derive = "1.0"
serde_json = "1.0"
sha1 = "0.10.5"
socket2 = "0.5"
spin = "0.9"
tokio = { workspace = true }
tokio-util = "0.7"
uuid = { version = "1.3.0", default-features = false, features = ["v4", "fast-rng", "macro-diagnostics"] }
zstd = "0.12"
[dev-dependencies]
env_logger = "0.10"
scoped_threadpool = "0.1"
serial_test = "2.0"
serial_test_derive = "2.0"
tempfile = "3.0"
test-log = "0.2"
time = "0.3"
tokio-test = "0.4"
[profile.release]
debug = true