aboutsummaryrefslogtreecommitdiff
path: root/derive-macro/Cargo.toml
diff options
context:
space:
mode:
authorAlexander van Ratingen <470642+alvra@users.noreply.github.com>2022-04-21 22:16:02 +0200
committerAlexander van Ratingen <470642+alvra@users.noreply.github.com>2022-04-21 22:16:02 +0200
commit645d3f8d22136d58d65f034fc15ea748d751eb96 (patch)
treebf55549077f17e9167194f6cb21fed41ec30ba03 /derive-macro/Cargo.toml
downloadgenerate-random-645d3f8d22136d58d65f034fc15ea748d751eb96.tar.xz
Initial commit
Diffstat (limited to 'derive-macro/Cargo.toml')
-rw-r--r--derive-macro/Cargo.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/derive-macro/Cargo.toml b/derive-macro/Cargo.toml
new file mode 100644
index 0000000..24bfa19
--- /dev/null
+++ b/derive-macro/Cargo.toml
@@ -0,0 +1,21 @@
+[package]
+name = "generate-random-macro"
+version = "0.1.0"
+edition = "2021"
+license = "MIT OR Apache-2.0"
+authors = ["Alexander van Ratingen"]
+homepage = "https://github.com/alvra/generate-random"
+repository = "https://github.com/alvra/generate-random"
+documentation = "https://docs.rs/generate-random"
+description = "Generate random data"
+readme = "README.md"
+keywords = ["random"]
+
+[lib]
+proc-macro = true
+
+[dependencies]
+proc-macro2 = "1.0"
+syn = { version = "1.0", features = ["full", "extra-traits"] }
+quote = "1.0"
+proc_macro2_helper = "0.2"