17 lines
478 B
TOML
17 lines
478 B
TOML
[package]
|
|
name = "cucumber-demo"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dev-dependencies]
|
|
futures = "0.3.30"
|
|
cucumber = "0.20.2"
|
|
tokio = { version = "1.10", features = ["macros", "rt-multi-thread", "time"] }
|
|
rand = "0.8.5"
|
|
|
|
[[test]]
|
|
name = "example" # this should be the same as the filename of your test target
|
|
harness = false # allows Cucumber to print output instead of libtest
|