Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/cfg/Cargo.toml')
| -rw-r--r-- | crates/cfg/Cargo.toml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/crates/cfg/Cargo.toml b/crates/cfg/Cargo.toml index 2857420c28..bf131ef7fc 100644 --- a/crates/cfg/Cargo.toml +++ b/crates/cfg/Cargo.toml @@ -12,11 +12,10 @@ doctest = false [dependencies] rustc-hash = "1.1.0" -tt = { path = "../tt", version = "0.0.0" } +# locals deps +tt.workspace = true [dev-dependencies] -mbe = { path = "../mbe" } -syntax = { path = "../syntax" } expect-test = "1.4.0" oorandom = "11.1.3" # We depend on both individually instead of using `features = ["derive"]` to microoptimize the @@ -24,3 +23,7 @@ oorandom = "11.1.3" # supports `arbitrary`. This way, we avoid feature unification. arbitrary = "1.1.7" derive_arbitrary = "1.1.6" + +# local deps +mbe.workspace = true +syntax.workspace = true |