-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
45 lines (39 loc) · 1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "atalanta"
version = "0.0.0"
edition = "2021"
rust-version = "1.61"
[dependencies]
ansi_term = "0.12.1"
big_s = "1.0.2"
once_cell = "1.18.0"
regex = { version = "1.9.6", default-features = false, features = ["std"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0"
tabwriter = "1.3.0"
[dev-dependencies]
async-trait = "0.1"
cucumber = "0.20.2"
futures = "0.3"
itertools = "0.12.0"
pretty = { package = "pretty_assertions", version = "1.4.0" }
rand = "0.8.5"
strip-ansi-escapes = "0.2.0"
tokio = { version = "1.29.1", features = ["fs", "io-util", "macros", "process", "rt"] }
[[bin]]
name = "a"
path = "src/main.rs"
doc = false
[[test]]
name = "cucumber" # this should be the same as the filename of your test target
harness = false # allows Cucumber to print output instead of libtest
test = false # don't run this as part of "cargo test"
[profile.release]
debug = 0
strip = "symbols"
lto = true
panic = 'abort'
opt-level = "z"
codegen-units = 1
[lints.clippy]
pedantic = "warn"