From 606909e652448f6c9d20c9ba868adb9a76746d74 Mon Sep 17 00:00:00 2001 From: Elliot Roberts Date: Sun, 12 Oct 2025 15:47:00 -0700 Subject: [PATCH] enable tt feature in crates/cfg tests --- Cargo.lock | 1 + crates/cfg/Cargo.toml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 6625403572b0..16a874ce5d97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -235,6 +235,7 @@ name = "cfg" version = "0.0.0" dependencies = [ "arbitrary", + "cfg", "expect-test", "intern", "oorandom", diff --git a/crates/cfg/Cargo.toml b/crates/cfg/Cargo.toml index af95f86c8352..e17969bd82d4 100644 --- a/crates/cfg/Cargo.toml +++ b/crates/cfg/Cargo.toml @@ -29,5 +29,8 @@ arbitrary = { version = "1.4.1", features = ["derive"] } syntax-bridge.workspace = true syntax.workspace = true +# tt is needed for testing +cfg = { path = ".", default-features = false, features = ["tt"] } + [lints] workspace = true