2026-07-14 20:10:29 +02:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "2"
|
|
|
|
|
members = ["varde-proto", "varde-daemon", "varde-ctl"]
|
|
|
|
|
|
|
|
|
|
[workspace.package]
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
repository = "https://github.com/bendiklh/varde"
|
|
|
|
|
rust-version = "1.85"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
|
varde-proto = { path = "varde-proto" }
|
|
|
|
|
|
2026-07-14 20:47:11 +02:00
|
|
|
# Pinned per spec: 0.35 is the recommended production line of iroh-blobs;
|
|
|
|
|
# the post-0.35 rewrite is not yet production quality.
|
|
|
|
|
iroh-blobs = "=0.35.0"
|
|
|
|
|
iroh = "0.35"
|
|
|
|
|
iroh-io = "0.6"
|
|
|
|
|
reflink-copy = "0.1"
|
|
|
|
|
|
2026-07-14 20:10:29 +02:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
thiserror = "2"
|
|
|
|
|
anyhow = "1"
|
|
|
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "io-util", "signal", "sync", "time", "fs"] }
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
|
|
|
toml = "0.8"
|
|
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
lto = "thin"
|