Hide summary functionality behind feature flag (#472)

Since summaries are only used by Janus, the Just ecosystem testing tool,
it makes sense to hide it behind a feature flag.
This commit is contained in:
Casey Rodarmor 2019-09-21 19:19:56 -07:00 committed by GitHub
parent 1230af138c
commit 1d063cce01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@ edition = "2018"
[features]
default = []
help4help2man = []
summary = []
[dependencies]
ansi_term = "0.11"

View File

@ -60,4 +60,5 @@ mod warning;
pub use crate::run::run;
#[cfg(summary)]
pub mod summary;