-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (58 loc) · 1.24 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "cargo-feature-combinations"
version = "0.0.35"
edition = "2021"
authors = ["romnn <[email protected]>"]
description = "run cargo commands for all feature combinations"
license-file = "LICENSE"
readme = "README.md"
homepage = "https://github.com/romnn/cargo-feature-combinations"
repository = "https://github.com/romnn/cargo-feature-combinations"
categories = [
"command-line-utilities",
"development-tools",
"development-tools::cargo-plugins",
"development-tools::testing"
]
keywords = [
"cargo",
"features",
"combinations",
"tool",
"subcommand"
]
exclude = [
"tests/"
]
default-run = "cargo-fc"
[[bin]]
name = "cargo-fc"
path = "src/fc.rs"
[[bin]]
name = "cargo-feature-combinations"
path = "src/feature-combinations.rs"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[features]
default = []
[package.metadata.cargo-feature-combinations]
denylist = ["default"]
[package.metadata.cargo-feature-combinations.matrix]
str-key = "str-value"
str_key = "str_value"
num_key = 2
[dependencies]
color-eyre = "0"
cargo_metadata = "0"
serde = "1"
serde_json = "1"
itertools = "0"
termcolor = "1"
regex = "^1.11"
lazy_static = "1"
strip-ansi-escapes = "0"
serde_json_merge = "0"
[dev-dependencies]
similar-asserts = "1"