cargo/tests/testsuite/cargo_add/preserve_features_table/out/Cargo.toml
2023-05-26 16:49:59 -05:00

21 lines
329 B
TOML

[package]
name = "xxx"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
your-face = { version = "99999.0.0" }
[features]
default = [
"a",
"b",
"c",
]
a = [
"your-face/nose", # but not the mouth and nose
]
b = []
c = []