summaryrefslogtreecommitdiff
path: root/e2etest-macros/Cargo.toml
diff options
context:
space:
mode:
authorGus Power <gus@infinitesidequests.com>2025-05-28 17:29:35 +0100
committerGus Power <gus@infinitesidequests.com>2025-05-28 17:29:35 +0100
commitcb6439016b9fe28a3dc9576842147af38117d117 (patch)
tree8eee3a1e6050aa562519754137004145dcb13ff1 /e2etest-macros/Cargo.toml
initialHEADmain
Diffstat (limited to 'e2etest-macros/Cargo.toml')
-rw-r--r--e2etest-macros/Cargo.toml18
1 files changed, 18 insertions, 0 deletions
diff --git a/e2etest-macros/Cargo.toml b/e2etest-macros/Cargo.toml
new file mode 100644
index 0000000..475207a
--- /dev/null
+++ b/e2etest-macros/Cargo.toml
@@ -0,0 +1,18 @@
+[package]
+name = "e2etest-macros"
+version = "0.1.0"
+edition = "2024"
+description = "Supporting macros for e2etest."
+authors = ["Gus Power <gus@infinitesidequests.com>"]
+repository = "https://github.com/guspower/e2etest-macros"
+license = "MIT OR Apache-2.0"
+
+[dependencies]
+proc-macro2 = "1.0"
+quote = "1.0"
+syn = { version = "2.0", features = ["full", "extra-traits"] }
+
+[lib]
+proc-macro = true
+name = "e2etest_macros"
+path = "src/lib.rs"