summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/tests/testsuite/cargo_add/list_features_path_no_default/in/dependency/Cargo.toml
blob: 18041a53fd64b5943a161e0d8961b076b223fee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
[package]
name = "your-face"
version = "0.1.3"

[dependencies]
my-package = "0.1.1"
optional-dependency = { path = "../optional", optional = true }

[features]
default = ["mouth"]
nose = []
mouth = ["nose"]
eyes = []