From 4995ce0ddcf82809c7614ba25406f26c518d1d11 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Mon, 29 Jul 2024 09:58:57 +0200 Subject: [PATCH] Relax dependency constraints --- Cargo.toml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 611aa69b..762d5b54 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,20 +8,20 @@ repository = "https://github.com/salsa-rs/salsa" description = "A generic framework for on-demand, incrementalized computation (experimental)" [dependencies] -arc-swap = "1.6.0" -boomphf = "0.6.0" -crossbeam = "0.8.1" -dashmap = "6.0.1" -hashlink = "0.9.1" +arc-swap = "1" +boomphf = "0.6" +crossbeam = "0.8" +dashmap = "6" +hashlink = "0.9" indexmap = "2" -orx-concurrent-vec = "2.2.0" +orx-concurrent-vec = "2" tracing = "0.1" -parking_lot = "0.12.1" -rustc-hash = "2.0.0" +parking_lot = "0.12" +rustc-hash = "2" salsa-macro-rules = { version = "0.1.0", path = "components/salsa-macro-rules" } salsa-macros = { path = "components/salsa-macros" } -smallvec = "1.0.0" -lazy_static = "1.5.0" +smallvec = "1" +lazy_static = "1" [dev-dependencies] annotate-snippets = "0.11.4"