diff options
Diffstat (limited to 'compiler/rustc_index_macros/Cargo.toml')
-rw-r--r-- | compiler/rustc_index_macros/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/compiler/rustc_index_macros/Cargo.toml b/compiler/rustc_index_macros/Cargo.toml new file mode 100644 index 000000000..c4ca29db3 --- /dev/null +++ b/compiler/rustc_index_macros/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "rustc_index_macros" +version = "0.0.0" +edition = "2021" + +[lib] +proc-macro = true + +[dependencies] +synstructure = "0.13.0" +syn = { version = "2.0.9", features = ["full"] } +proc-macro2 = "1" +quote = "1" + +[features] +default = ["nightly"] +nightly = []
\ No newline at end of file |