diff options
Diffstat (limited to 'tvix/eval')
-rw-r--r-- | tvix/eval/Cargo.toml | 66 | ||||
-rw-r--r-- | tvix/eval/builtin-macros/Cargo.toml | 4 |
2 files changed, 35 insertions, 35 deletions
diff --git a/tvix/eval/Cargo.toml b/tvix/eval/Cargo.toml index bb6b04bb6ca5..c99bea4f7125 100644 --- a/tvix/eval/Cargo.toml +++ b/tvix/eval/Cargo.toml @@ -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"] diff --git a/tvix/eval/builtin-macros/Cargo.toml b/tvix/eval/builtin-macros/Cargo.toml index 0171bb9ae62d..0696d742b342 100644 --- a/tvix/eval/builtin-macros/Cargo.toml +++ b/tvix/eval/builtin-macros/Cargo.toml @@ -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 |