Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/cfg/Cargo.toml')
| -rw-r--r-- | crates/cfg/Cargo.toml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/crates/cfg/Cargo.toml b/crates/cfg/Cargo.toml index ba34966614..9e2a95dbf3 100644 --- a/crates/cfg/Cargo.toml +++ b/crates/cfg/Cargo.toml @@ -18,20 +18,20 @@ tracing.workspace = true # locals deps tt = { workspace = true, optional = true } +syntax = { workspace = true, optional = true } intern.workspace = true [dev-dependencies] expect-test = "1.5.1" oorandom = "11.1.5" -# We depend on both individually instead of using `features = ["derive"]` to microoptimize the -# build graph: if the feature was enabled, syn would be built early on in the graph if `smolstr` -# supports `arbitrary`. This way, we avoid feature unification. -arbitrary = "1.4.1" -derive_arbitrary = "1.4.1" +arbitrary = { version = "1.4.1", features = ["derive"] } # local deps syntax-bridge.workspace = true syntax.workspace = true +# tt is needed for testing +cfg = { path = ".", default-features = false, features = ["tt"] } + [lints] workspace = true |