chore(tvix): Migrate members to inherit deps from workspace

From now on we will add the dependencies and their version in the root
Cargo.toml and in order to enable the dependency for a workspace member
we set `workspace = true` in the member's Cargo.toml.

Change-Id: I9738c1cf99810b7ace87ca712c3ea965ba846e25
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12389
Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com>
Tested-by: BuildkiteCI
Reviewed-by: flokli <flokli@flokli.de>
This commit is contained in:
Ilan Joselevich 2024-08-29 00:54:46 +03:00 committed by clbot
parent 2945a359b4
commit 5a97888d8b
16 changed files with 451 additions and 375 deletions

View file

@ -8,42 +8,42 @@ name = "tvix_eval"
[dependencies]
builtin-macros = { path = "./builtin-macros", package = "tvix-eval-builtin-macros" }
bytes = "1.7.1"
bstr = { version = "1.10.0", features = ["serde"] }
codemap = "0.1.3"
codemap-diagnostic = "0.1.2"
dirs = "4.0.0"
genawaiter = { version = "0.99.1", default-features = false }
itertools = "0.12.1"
lazy_static = "1.5.0"
lexical-core = { version = "0.8.5", features = ["format", "parse-floats"] }
os_str_bytes = { version = "6.6", features = ["conversions"] }
path-clean = "0.1"
proptest = { version = "1.5.0", default-features = false, features = ["std", "alloc", "tempfile"], optional = true }
regex = "1.10.6"
rnix = "0.11.0"
rowan = "*" # pinned by rnix
serde = { version = "1.0", features = [ "rc", "derive" ] }
serde_json = "1.0"
smol_str = "0.2.2"
tabwriter = "1.4"
test-strategy = { version = "0.2.1", optional = 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 }
lazy_static = { workspace = true }
lexical-core = { workspace = true, features = ["format", "parse-floats"] }
os_str_bytes = { workspace = true, features = ["conversions"] }
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
serde = { workspace = true, features = ["rc", "derive"] }
serde_json = { workspace = true }
smol_str = { workspace = true }
tabwriter = { workspace = true }
test-strategy = { workspace = true, optional = true }
toml = "0.6.0"
sha2 = "0.10.8"
sha1 = "0.10.6"
md-5 = "0.10.6"
data-encoding = "2.6.0"
rustc-hash = "2.0.0"
nohash-hasher = "0.2.0"
vu128 = "1.1.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 }
[dev-dependencies]
criterion = "0.5"
itertools = "0.12.1"
mimalloc = "0.1.43"
pretty_assertions = "1.4.0"
rstest = "0.19.0"
tempfile = "3.12.0"
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"]

View file

@ -6,8 +6,8 @@ edition = "2021"
[dependencies]
syn = { version = "1.0.109", features = ["full", "parsing", "printing", "visit", "visit-mut", "extra-traits"] }
quote = "1.0.37"
proc-macro2 = "1"
quote = { workspace = true }
proc-macro2 = { workspace = true }
[lib]
proc-macro = true