Document feature flags in Cargo.toml (#709)
Just doesn't have any features that are likely to be useful to end users, but it's good to document them nonetheless.
This commit is contained in:
parent
0e1af65565
commit
d7799ebec4
16
Cargo.toml
16
Cargo.toml
@ -10,11 +10,6 @@ readme = "crates-io-readme.md"
|
||||
edition = "2018"
|
||||
autotests = false
|
||||
|
||||
[features]
|
||||
default = []
|
||||
help4help2man = []
|
||||
summary = []
|
||||
|
||||
[dependencies]
|
||||
ansi_term = "0.12.0"
|
||||
atty = "0.2.0"
|
||||
@ -46,6 +41,17 @@ which = "4.0.0"
|
||||
[dev-dependencies.test-utilities]
|
||||
path = "test-utilities"
|
||||
|
||||
[features]
|
||||
# No features are active by default.
|
||||
default = []
|
||||
# The `help4help2man` feature modifies the message produced by `--help`
|
||||
# so that `help2man` produces a reasonable man page.
|
||||
help4help2man = []
|
||||
# The `summary` feature includes the `summary` module, which is used
|
||||
# by Janus, https://github.com/casey/janus, a tool that analyses all
|
||||
# public justfiles on GitHub to avoid breaking changes.
|
||||
summary = []
|
||||
|
||||
# The public documentation is minimal and doesn't change between
|
||||
# platforms, so we only build them for linux on docs.rs to save
|
||||
# their build machines some cycles.
|
||||
|
Loading…
Reference in New Issue
Block a user