28 lines
724 B
TOML
28 lines
724 B
TOML
[workspace]
|
|
members = [
|
|
"crates/arbiter-client",
|
|
"crates/arbiter-proto",
|
|
"crates/arbiter-server",
|
|
"crates/arbiter-useragent",
|
|
]
|
|
resolver = "3"
|
|
|
|
|
|
[workspace.dependencies]
|
|
prost = "0.14.3"
|
|
tonic = { version = "0.14.3", features = ["deflate", "gzip", "tls-connect-info", "zstd"] }
|
|
tracing = "0.1.44"
|
|
tokio = { version = "1.49.0", features = ["full"] }
|
|
ed25519 = "3.0.0-rc.4"
|
|
ed25519-dalek = "3.0.0-pre.6"
|
|
chrono = { version = "0.4.43", features = ["serde"] }
|
|
rand = "0.10.0"
|
|
uuid = "1.20.0"
|
|
rustls = "0.23.36"
|
|
smlang = "0.8.0"
|
|
miette = { version = "7.6.0", features = ["fancy", "serde"] }
|
|
thiserror = "2.0.18"
|
|
async-trait = "0.1.89"
|
|
futures = "0.3.31"
|
|
tokio-stream = { version = "0.1.18", features = ["full"] }
|