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
|
|
@ -5,40 +5,40 @@ edition = "2021"
|
|||
|
||||
[dependencies]
|
||||
async-compression = { workspace = true, features = ["tokio", "zstd"] }
|
||||
async-stream = { workspace = true }
|
||||
async-tempfile = { workspace = true }
|
||||
async-stream.workspace = true
|
||||
async-tempfile.workspace = true
|
||||
blake3 = { workspace = true, features = ["rayon", "std", "traits-preview"] }
|
||||
bstr = { workspace = true }
|
||||
bytes = { workspace = true }
|
||||
data-encoding = { workspace = true }
|
||||
digest = { workspace = true }
|
||||
bstr.workspace = true
|
||||
bytes.workspace = true
|
||||
data-encoding.workspace = true
|
||||
digest.workspace = true
|
||||
fastcdc = { workspace = true, features = ["tokio"] }
|
||||
futures = { workspace = true }
|
||||
futures.workspace = true
|
||||
object_store = { workspace = true, features = ["http"] }
|
||||
parking_lot = { workspace = true }
|
||||
pin-project-lite = { workspace = true }
|
||||
prost = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
parking_lot.workspace = true
|
||||
pin-project-lite.workspace = true
|
||||
prost.workspace = true
|
||||
thiserror.workspace = true
|
||||
tokio-stream = { workspace = true, features = ["fs", "net"] }
|
||||
tokio-util = { workspace = true, features = ["io", "io-util", "codec"] }
|
||||
tokio-tar = { workspace = true }
|
||||
tokio-tar.workspace = true
|
||||
tokio = { workspace = true, features = ["fs", "macros", "net", "rt", "rt-multi-thread", "signal"] }
|
||||
tonic = { workspace = true }
|
||||
tower = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
tracing-indicatif = { workspace = true }
|
||||
tonic.workspace = true
|
||||
tower.workspace = true
|
||||
tracing.workspace = true
|
||||
tracing-indicatif.workspace = true
|
||||
tvix-tracing = { path = "../tracing", features = ["tonic"] }
|
||||
url = { workspace = true }
|
||||
walkdir = { workspace = true }
|
||||
zstd = { workspace = true }
|
||||
url.workspace = true
|
||||
walkdir.workspace = true
|
||||
zstd.workspace = true
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_with = { workspace = true }
|
||||
serde_qs = { workspace = true }
|
||||
petgraph = { workspace = true }
|
||||
pin-project = { workspace = true }
|
||||
erased-serde = { workspace = true }
|
||||
serde_tagged = { workspace = true }
|
||||
hyper-util = { workspace = true }
|
||||
serde_with.workspace = true
|
||||
serde_qs.workspace = true
|
||||
petgraph.workspace = true
|
||||
pin-project.workspace = true
|
||||
erased-serde.workspace = true
|
||||
serde_tagged.workspace = true
|
||||
hyper-util.workspace = true
|
||||
redb = { workspace = true, features = ["logging"] }
|
||||
bigtable_rs = { workspace = true, optional = true }
|
||||
fuse-backend-rs = { workspace = true, optional = true }
|
||||
|
|
@ -51,23 +51,23 @@ virtio-queue = { workspace = true, optional = true }
|
|||
vm-memory = { workspace = true, optional = true }
|
||||
vmm-sys-util = { workspace = true, optional = true }
|
||||
virtio-bindings = { workspace = true, optional = true }
|
||||
wu-manber = { workspace = true }
|
||||
wu-manber.workspace = 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 }
|
||||
tempfile = { workspace = true }
|
||||
tokio-retry = { workspace = true }
|
||||
hex-literal = { workspace = true }
|
||||
rstest_reuse = { workspace = true }
|
||||
xattr = { workspace = true }
|
||||
serde_json = { workspace = true }
|
||||
tokio-test = { workspace = true }
|
||||
async-process.workspace = true
|
||||
rstest.workspace = true
|
||||
tempfile.workspace = true
|
||||
tokio-retry.workspace = true
|
||||
hex-literal.workspace = true
|
||||
rstest_reuse.workspace = true
|
||||
xattr.workspace = true
|
||||
serde_json.workspace = true
|
||||
tokio-test.workspace = true
|
||||
|
||||
[features]
|
||||
default = ["cloud"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue