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:
Florian Klink 2024-12-29 19:08:13 +01:00 committed by clbot
parent 74f2e86fcd
commit 06311444aa
13 changed files with 212 additions and 212 deletions

View file

@ -8,42 +8,42 @@ name = "tvix_eval"
[dependencies]
builtin-macros = { path = "./builtin-macros", package = "tvix-eval-builtin-macros" }
bytes = { workspace = true }
bytes.workspace = true
bstr = { workspace = true, features = ["serde"] }
codemap = { workspace = true }
codemap-diagnostic = { workspace = true }
dirs = { workspace = true }
genawaiter = { workspace = true }
itertools = { workspace = true }
codemap.workspace = true
codemap-diagnostic.workspace = true
dirs.workspace = true
genawaiter.workspace = true
itertools.workspace = true
lexical-core = { workspace = true, features = ["format", "parse-floats"] }
os_str_bytes = { workspace = true, features = ["conversions"] }
path-clean = { workspace = true }
path-clean.workspace = true
proptest = { workspace = true, features = ["std", "alloc", "tempfile"], optional = true }
regex = { workspace = true }
rnix = { workspace = true }
rowan = { workspace = true } # pinned by rnix
regex.workspace = true
rnix.workspace = true
rowan.workspace = true # pinned by rnix
serde = { workspace = true, features = ["rc", "derive"] }
serde_json = { workspace = true }
smol_str = { workspace = true }
tabwriter = { workspace = true }
serde_json.workspace = true
smol_str.workspace = true
tabwriter.workspace = true
test-strategy = { workspace = true, optional = true }
toml = "0.6.0"
sha2 = { workspace = true }
sha1 = { workspace = true }
md-5 = { workspace = true }
data-encoding = { workspace = true }
rustc-hash = { workspace = true }
nohash-hasher = { workspace = true }
vu128 = { workspace = true }
sha2.workspace = true
sha1.workspace = true
md-5.workspace = true
data-encoding.workspace = true
rustc-hash.workspace = true
nohash-hasher.workspace = true
vu128.workspace = true
thiserror.workspace = true
[dev-dependencies]
criterion = { workspace = true }
itertools = { workspace = true }
mimalloc = { workspace = true }
pretty_assertions = { workspace = true }
rstest = { workspace = true }
tempfile = { workspace = true }
criterion.workspace = true
itertools.workspace = true
mimalloc.workspace = true
pretty_assertions.workspace = true
rstest.workspace = true
tempfile.workspace = true
[features]
default = ["impure", "arbitrary", "nix_tests"]