-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (41 loc) · 895 Bytes
/
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
[package]
name = "rhino"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
name = "rhino"
path = "src/lib.rs"
[[bin]]
name = "api_server"
path = "src/api_server/main.rs"
[[bin]]
name = "region_server"
path = "src/region_server/main.rs"
[[bin]]
name = "control_server"
path = "src/control_server/main.rs"
[[bin]]
name = "replicator"
path = "src/replicator/main.rs"
[dependencies]
tokio = { version = "1.38.0", features = ["full"] }
foundationdb = { version = "0.9.0", features = [
"uuid",
"embedded-fdb-include",
"fdb-7_1",
] }
axum = "0.7.5"
serde = "1.0.203"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tokio-tungstenite = { version = "0.21.0", features = ["native-tls"] }
futures-util = "0.3.30"
serde_json = "1.0.115"
argh = "0.1.12"
toml = "0.8.12"
tokio-util = "0.7.11"
ulid = "1.1.2"
derive_more = "0.99.18"
exponential-backoff = "1.2.0"
itertools = "0.13.0"