Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/macros/Cargo.toml')
-rw-r--r--crates/macros/Cargo.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml
new file mode 100644
index 0000000000..8184cc6d1c
--- /dev/null
+++ b/crates/macros/Cargo.toml
@@ -0,0 +1,19 @@
+[package]
+name = "macros"
+version = "0.0.0"
+repository.workspace = true
+description = "Proc macros for rust-analyzer."
+
+authors.workspace = true
+edition.workspace = true
+license.workspace = true
+rust-version.workspace = true
+
+[lib]
+proc-macro = true
+
+[dependencies]
+proc-macro2 = "1"
+quote = "1"
+syn = "2.0.9"
+synstructure = "0.13.0"