mirror of
https://github.com/rust-lang/cargo
synced 2024-10-31 08:59:36 +00:00
21 lines
329 B
TOML
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 = []
|