summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/tests/testsuite/cargo_add/preserve_features_table/out/Cargo.toml
blob: 39acd10160175faa83a39ffcb19f260f4483dd5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[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 = []