chore(tvix): simplify Cargo.toml
Use dotted keys where we'd else have maps with a single key. Change-Id: I9389e0fedddad1cf65f870a3a68415a0defaa259 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12929 Reviewed-by: Ilan Joselevich <personal@ilanjoselevich.com> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
This commit is contained in:
parent
74f2e86fcd
commit
06311444aa
13 changed files with 212 additions and 212 deletions
|
|
@ -4,66 +4,66 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
anyhow = { workspace = true }
|
||||
anyhow.workspace = true
|
||||
async-compression = { workspace = true, features = ["tokio", "bzip2", "gzip", "xz", "zstd"] }
|
||||
async-stream = { workspace = true }
|
||||
async-stream.workspace = true
|
||||
blake3 = { workspace = true, features = ["rayon", "std"] }
|
||||
bstr = { workspace = true }
|
||||
bytes = { workspace = true }
|
||||
bstr.workspace = true
|
||||
bytes.workspace = true
|
||||
clap = { workspace = true, features = ["derive", "env"] }
|
||||
count-write = { workspace = true }
|
||||
data-encoding = { workspace = true }
|
||||
ed25519 = { workspace = true }
|
||||
ed25519-dalek = { workspace = true }
|
||||
futures = { workspace = true }
|
||||
count-write.workspace = true
|
||||
data-encoding.workspace = true
|
||||
ed25519.workspace = true
|
||||
ed25519-dalek.workspace = true
|
||||
futures.workspace = true
|
||||
nix-compat = { path = "../nix-compat", features = ["async"] }
|
||||
pin-project-lite = { workspace = true }
|
||||
prost = { workspace = true }
|
||||
pin-project-lite.workspace = true
|
||||
prost.workspace = true
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json = { workspace = true }
|
||||
serde_with = { workspace = true }
|
||||
serde_qs = { workspace = true }
|
||||
sha1 = { workspace = true }
|
||||
sha2 = { workspace = true }
|
||||
md-5 = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
serde_json.workspace = true
|
||||
serde_with.workspace = true
|
||||
serde_qs.workspace = true
|
||||
sha1.workspace = true
|
||||
sha2.workspace = true
|
||||
md-5.workspace = true
|
||||
thiserror.workspace = true
|
||||
tokio = { workspace = true, features = ["fs", "macros", "net", "rt", "rt-multi-thread", "signal"] }
|
||||
tokio-listener = { workspace = true, features = ["clap", "multi-listener", "sd_listen", "tonic012"] }
|
||||
tokio-stream = { workspace = true, features = ["fs"] }
|
||||
tokio-util = { workspace = true, features = ["io", "io-util", "compat"] }
|
||||
tonic = { workspace = true, features = ["tls", "tls-roots"] }
|
||||
tower = { workspace = true }
|
||||
tower.workspace = true
|
||||
tower-http = { workspace = true, features = ["trace"] }
|
||||
tvix-castore = { path = "../castore" }
|
||||
url = { workspace = true }
|
||||
walkdir = { workspace = true }
|
||||
url.workspace = true
|
||||
walkdir.workspace = true
|
||||
reqwest = { workspace = true, features = ["rustls-tls-native-roots", "stream"] }
|
||||
reqwest-middleware = { workspace = true }
|
||||
lru = { workspace = true }
|
||||
parking_lot = { workspace = true }
|
||||
reqwest-middleware.workspace = true
|
||||
lru.workspace = true
|
||||
parking_lot.workspace = true
|
||||
tvix-tracing = { path = "../tracing", features = ["tonic", "reqwest"] }
|
||||
tracing = { workspace = true }
|
||||
tracing-indicatif = { workspace = true }
|
||||
hyper-util = { workspace = true }
|
||||
tracing.workspace = true
|
||||
tracing-indicatif.workspace = true
|
||||
hyper-util.workspace = true
|
||||
toml = { version = "0.8.19", optional = true }
|
||||
tonic-health = { workspace = true }
|
||||
tonic-health.workspace = true
|
||||
redb = { workspace = true, features = ["logging"] }
|
||||
mimalloc = { workspace = true }
|
||||
mimalloc.workspace = true
|
||||
tonic-reflection = { workspace = true, optional = true }
|
||||
bigtable_rs = { workspace = true, optional = true }
|
||||
auto_impl = "1.2.0"
|
||||
|
||||
[build-dependencies]
|
||||
prost-build = { workspace = true }
|
||||
tonic-build = { workspace = true }
|
||||
prost-build.workspace = true
|
||||
tonic-build.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
async-process = { workspace = true }
|
||||
rstest = { workspace = true }
|
||||
rstest_reuse = { workspace = true }
|
||||
tempfile = { workspace = true }
|
||||
tokio-retry = { workspace = true }
|
||||
hex-literal = { workspace = true }
|
||||
async-process.workspace = true
|
||||
rstest.workspace = true
|
||||
rstest_reuse.workspace = true
|
||||
tempfile.workspace = true
|
||||
tokio-retry.workspace = true
|
||||
hex-literal.workspace = true
|
||||
|
||||
[features]
|
||||
default = ["cloud", "fuse", "otlp", "tonic-reflection"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue