summaryrefslogtreecommitdiff
path: root/rustlings-macros/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'rustlings-macros/Cargo.toml')
-rw-r--r--rustlings-macros/Cargo.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/rustlings-macros/Cargo.toml b/rustlings-macros/Cargo.toml
new file mode 100644
index 0000000..20d6776
--- /dev/null
+++ b/rustlings-macros/Cargo.toml
@@ -0,0 +1,20 @@
+[package]
+name = "rustlings-macros"
+description = "A macros crate intended to be used only by Rustlings"
+version.workspace = true
+authors.workspace = true
+repository.workspace = true
+license.workspace = true
+edition.workspace = true
+include = [
+ "/src/",
+ "/info.toml",
+]
+
+[lib]
+proc-macro = true
+
+[dependencies]
+quote = "1.0.36"
+serde.workspace = true
+toml_edit.workspace = true