You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
42 lines
1.2 KiB
From acf56c28892d530a82912e9c2ffb6c601c9f94fd Mon Sep 17 00:00:00 2001
|
|
From: Fabio Valentini <decathorpe@gmail.com>
|
|
Date: Tue, 24 Sep 2024 19:29:58 +0200
|
|
Subject: [PATCH] avoid duplicate workspace definitions
|
|
|
|
---
|
|
Cargo.toml | 8 ++------
|
|
1 file changed, 2 insertions(+), 6 deletions(-)
|
|
|
|
diff --git a/Cargo.toml b/Cargo.toml
|
|
index d3815b1..332ddaa 100644
|
|
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -17,15 +17,14 @@ append-only-vec = "0.1.5"
|
|
tracing = "0.1"
|
|
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" }
|
|
+salsa-macro-rules = { version = "0.1.0", path = "../salsa-macro-rules" }
|
|
+salsa-macros = { path = "../salsa-macros" }
|
|
smallvec = "1"
|
|
lazy_static = "1"
|
|
|
|
[dev-dependencies]
|
|
annotate-snippets = "0.11.4"
|
|
derive-new = "0.6.0"
|
|
-codspeed-criterion-compat = { version = "2.6.0", default-features = false }
|
|
expect-test = "1.4.0"
|
|
eyre = "0.6.8"
|
|
notify-debouncer-mini = "0.4.1"
|
|
@@ -42,6 +41,3 @@ harness = false
|
|
[[bench]]
|
|
name = "incremental"
|
|
harness = false
|
|
-
|
|
-[workspace]
|
|
-members = ["components/salsa-macro-rules", "components/salsa-macros"]
|
|
--
|
|
2.46.1
|
|
|