From 53fb48c7f01a7eb62630069a064cb63647ab14be Mon Sep 17 00:00:00 2001 From: Bobbin Threadbare Date: Tue, 27 Aug 2024 02:02:19 -0700 Subject: [PATCH] chore: don't use self-reference dev-dependencies from workspace --- miden-tx/Cargo.toml | 2 +- objects/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/miden-tx/Cargo.toml b/miden-tx/Cargo.toml index 1c5765671..585a19711 100644 --- a/miden-tx/Cargo.toml +++ b/miden-tx/Cargo.toml @@ -34,5 +34,5 @@ vm-processor = { workspace = true } winter-maybe-async = { version = "0.10" } [dev-dependencies] -miden-tx = { workspace = true, features = ["testing"] } +miden-tx = { path = ".", features = ["testing"] } rand_chacha = { version = "0.3", default-features = false } diff --git a/objects/Cargo.toml b/objects/Cargo.toml index 4965ea737..6db541e78 100644 --- a/objects/Cargo.toml +++ b/objects/Cargo.toml @@ -39,6 +39,6 @@ winter-rand-utils = { version = "0.9", optional = true } [dev-dependencies] criterion = { version = "0.5", default-features = false, features = ["html_reports"] } -miden-objects = { workspace = true, features = ["testing"] } +miden-objects = { path = ".", features = ["testing"] } rstest = { version = "0.22" } tempfile = { version = "3.12" }