Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/cfg/Cargo.toml')
| -rw-r--r-- | crates/cfg/Cargo.toml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/crates/cfg/Cargo.toml b/crates/cfg/Cargo.toml index e17969bd82..cf2a7607b0 100644 --- a/crates/cfg/Cargo.toml +++ b/crates/cfg/Cargo.toml @@ -18,6 +18,8 @@ tracing.workspace = true # locals deps tt = { workspace = true, optional = true } +syntax = { workspace = true, optional = true } +span = { path = "../span", version = "0.0", optional = true } intern.workspace = true [dev-dependencies] @@ -32,5 +34,11 @@ syntax.workspace = true # tt is needed for testing cfg = { path = ".", default-features = false, features = ["tt"] } +[features] +default = [] +syntax = ["dep:syntax", "dep:span"] +tt = ["dep:tt"] +in-rust-tree = [] + [lints] workspace = true |