summaryrefslogtreecommitdiff
path: root/e2etest-macros/Cargo.toml
diff options
context:
space:
mode:
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"