@@ -19,7 +19,17 @@ repository = "https://github.com/cucumber-rs/cucumber"
1919readme = " README.md"
2020categories = [" asynchronous" , " development-tools::testing" ]
2121keywords = [" cucumber" , " testing" , " bdd" , " atdd" , " async" ]
22- include = [" /src/" , " /tests/json.rs" , " /tests/junit.rs" , " /tests/libtest.rs" , " /tests/tracing.rs" , " /tests/wait.rs" , " /LICENSE-*" , " /README.md" , " /CHANGELOG.md" ]
22+ include = [
23+ " /src/" ,
24+ " /tests/json.rs" ,
25+ " /tests/junit.rs" ,
26+ " /tests/libtest.rs" ,
27+ " /tests/tracing.rs" ,
28+ " /tests/wait.rs" ,
29+ " /CHANGELOG.md" ,
30+ " /LICENSE-*" ,
31+ " /README.md" ,
32+ ]
2333
2434[package .metadata .docs .rs ]
2535all-features = true
@@ -30,9 +40,21 @@ default = ["macros"]
3040# Enables compatibility with Rust libtest (like outputting in its JSON format).
3141libtest = [" dep:serde" , " dep:serde_json" , " timestamps" ]
3242# Enables step attributes and auto-wiring.
33- macros = [" dep:anyhow" , " dep:cucumber-codegen" , " dep:cucumber-expressions" , " dep:inventory" ]
43+ macros = [
44+ " dep:anyhow" ,
45+ " dep:cucumber-codegen" ,
46+ " dep:cucumber-expressions" ,
47+ " dep:inventory" ,
48+ ]
3449# Enables support for outputting in Cucumber JSON format.
35- output-json = [" dep:base64" , " dep:Inflector" , " dep:mime" , " dep:serde" , " dep:serde_json" , " timestamps" ]
50+ output-json = [
51+ " dep:base64" ,
52+ " dep:Inflector" ,
53+ " dep:mime" ,
54+ " dep:serde" ,
55+ " dep:serde_json" ,
56+ " timestamps" ,
57+ ]
3658# Enables support for outputting JUnit XML report.
3759output-junit = [" dep:junit-report" , " timestamps" ]
3860# Enables timestamps collecting for all events.
0 commit comments