From a2ba82e241a693393fc3267d616d1c46ec80fa9e Mon Sep 17 00:00:00 2001 From: Hugo Caillard <911307+hugocaillard@users.noreply.github.com> Date: Tue, 14 May 2024 17:48:29 +0200 Subject: [PATCH] fix: stacks-common dependency features --- .vscode/settings.json | 6 +++--- clarity/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index f556f335c..e648ed3e5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,4 @@ { - "lldb.adapterType": "native", - "lldb.launch.sourceLanguages": ["rust"] -} + "lldb.adapterType": "native", + "lldb.launch.sourceLanguages": ["rust"] +} \ No newline at end of file diff --git a/clarity/Cargo.toml b/clarity/Cargo.toml index 4f525c5af..5376c83f2 100644 --- a/clarity/Cargo.toml +++ b/clarity/Cargo.toml @@ -27,7 +27,7 @@ regex = "1" lazy_static = "1.4.0" integer-sqrt = "0.1.3" slog = { version = "2.5.2", features = [ "max_level_trace" ] } -stacks_common = { package = "stacks-common", path = "../stacks-common", optional = true, default-features = true} +stacks_common = { package = "stacks-common", path = "../stacks-common", optional = true, default-features = false } rstest = "0.17.0" rstest_reuse = "0.5.0" hashbrown = { workspace = true }