-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.28 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (40 loc) · 1.28 KB
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
[workspace]
members = [
"crates/rdmas-director",
"crates/rdmas-router",
"crates/rdmas-orchestrator",
"crates/rectifiers-connector",
"crates/rectifiers",
"tests",
"benches",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
repository = "https://github.com/rectifiers-project/rectifiers"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
tonic = "0.12"
prost = "0.13"
dashmap = "6"
xxhash-rust = { version = "0.8", features = ["xxh3", "xxh64"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
reqwest = { version = "0.12", default-features = true, features = ["stream", "json"] }
axum = "0.7"
tokio-stream = "0.1"
tokenizers = "0.21"
kube = { version = "0.95", features = ["derive"] }
k8s-openapi = { version = "0.23", features = ["v1_30"] }
anyhow = "1"
thiserror = "2"
criterion = { version = "0.5", features = ["async_tokio"] }
futures-core = "0.3"
tonic-health = "0.12"
# RDMAS 外部依赖(P0 spike 验证后确认可用)
# rdmas = { git = "https://github.com/ipconfiger/rdmas", tag = "v0.1.0" }
# rdmas = { git = "https://github.com/ipconfiger/rdmas", tag = "v0.1.0", features = ["pyo3-connector"] }