-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (81 loc) · 3.25 KB
/
Copy pathCargo.toml
File metadata and controls
84 lines (81 loc) · 3.25 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
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
79
80
81
82
83
84
[workspace]
resolver = "2"
members = [
"crates/talon-core",
"crates/talon-cache-client",
"crates/talon-gateway",
"crates/talon-coordinator",
"crates/talon-worker",
"crates/talon-fuse",
"crates/talon-transport",
"crates/talon-backend",
"crates/talon-client",
"clients/c",
"clients/python",
"crates/talon-observability",
"crates/talon-metadata",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/talon/talon"
rust-version = "1.80"
[workspace.dependencies]
talon-core = { path = "crates/talon-core" }
talon-cache-client = { path = "crates/talon-cache-client" }
talon-transport = { path = "crates/talon-transport" }
talon-metadata = { path = "crates/talon-metadata" }
# Common third-party dependencies shared across crates
anyhow = "1"
thiserror = "2"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
bytes = "1"
async-trait = "0.1"
bincode = "1.3"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
sha2 = "0.10"
hmac = "0.12"
# Durable WAL record encoding (ADR 0003 §9.4 forbids serde/bincode/JSON on disk).
# Pinned to the version already in the tree via tonic so both agree.
prost = "0.14"
prost-build = "0.14"
libc = "0.2"
clap = { version = "4", features = ["derive"] }
divan = "0.1"
# Thread-per-core io_uring runtime for the data plane (#273, #285). The "sync"
# feature provides spawn_blocking, which the zero-copy sendfile/splice path
# needs to stay off the ring; it requires an explicitly attached thread pool.
monoio = { version = "0.2.4", features = ["sync"] }
axum = "0.8"
tower = { version = "0.5", features = ["limit", "util"] }
tower-http = { version = "0.6", features = ["timeout"] }
http-body-util = "0.1"
httpdate = "1"
serde_yaml = "0.9"
# Kubernetes client for the Lease-based ClusterStateStore backend (feature
# "kubernetes"). rustls avoids a system OpenSSL build dependency. k8s-openapi is
# pinned to a single API version per its compile-time version-feature contract.
kube = { version = "0.97", default-features = false, features = ["client", "config", "rustls-tls", "runtime"] }
k8s-openapi = { version = "0.23", default-features = false, features = ["v1_30"] }
futures = "0.3"
tempfile = "3"
tokio-util = { version = "0.7", features = ["io"] }
# etcd v3 client for the production ClusterStateStore backend. `tls-roots`
# enables TLS via tonic/ring with the platform's native root certificates and
# avoids a system OpenSSL build dependency.
etcd-client = { version = "0.19", default-features = false, features = ["tls", "tls-roots"] }
# gRPC status codes surfaced by etcd-client errors. Pinned to the same tonic
# major the etcd client depends on so error mapping stays in sync.
percent-encoding = "2"
tonic = { version = "0.14", default-features = false }
url = "2"
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
rustls-webpki = { version = "0.103", default-features = false, features = ["ring", "std"] }
tokio-rustls = { version = "0.26", default-features = false, features = ["logging", "ring"] }
x509-cert = { version = "0.2", default-features = false, features = ["std"] }