-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (38 loc) · 1001 Bytes
/
Cargo.toml
File metadata and controls
44 lines (38 loc) · 1001 Bytes
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
[package]
name = "cucumber-sort"
version = "0.2.0"
edition = "2024"
description = "Sorts steps in Cucumber files"
[lib]
name = "cucumber_sort"
path = "src/lib.rs"
[[bin]]
name = "cucumber-sort"
path = "src/main.rs"
[dependencies]
ansi_term = "0.12.1"
big_s = "1.0.2"
camino = "1.2"
clap = { version = "4.5", features = ["derive"] }
glob = "0.3.3"
regex = "1.11.3"
schemars = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dev-dependencies]
camino-tempfile = "1.4.1"
cucumber = "0.21"
pretty = { package = "pretty_assertions", version = "1.4.1" }
strip-ansi-escapes = "0.2.1"
tokio = { version = "1.47", features = ["fs", "macros", "process", "rt"] }
[profile.release]
codegen-units = 1
debug = 0
lto = true
opt-level = "z"
panic = "abort"
strip = "symbols"
[[test]]
name = "cuke" # 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"