summaryrefslogtreecommitdiff
path: root/e2etest-runner/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-runner/Cargo.toml
initialHEADmain
Diffstat (limited to 'e2etest-runner/Cargo.toml')
-rw-r--r--e2etest-runner/Cargo.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/e2etest-runner/Cargo.toml b/e2etest-runner/Cargo.toml
new file mode 100644
index 0000000..2b8d4c9
--- /dev/null
+++ b/e2etest-runner/Cargo.toml
@@ -0,0 +1,24 @@
+[package]
+name = "e2etest-runner"
+version = "0.1.0"
+edition = "2024"
+description = "A command line interface (CLI) tool for running end-to-end (e2e) tests. Written in rust-lang."
+authors = ["Gus Power <gus@infinitesidequests.com>"]
+repository = "https://github.com/guspower/e2etest-runner"
+license = "MIT OR Apache-2.0"
+
+[dependencies]
+e2etest-report = { path = "../e2etest-report" }
+thirtyfour = "0.35.0"
+serde = { version = "1.0", features = ["derive"] }
+serde_yaml = "0.9"
+tokio = { version = "1.0", features = ["full"] }
+inventory = "0.3"
+
+[lib]
+name = "runner"
+path = "src/lib.rs"
+
+[[bin]]
+name = "runner"
+path = "src/bin.rs"