Skip to content

Commit

Permalink
Hide summary functionality behind feature flag (#472)
Browse files Browse the repository at this point in the history
Since summaries are only used by Janus, the Just ecosystem testing tool,
it makes sense to hide it behind a feature flag.
  • Loading branch information
casey authored Sep 22, 2019
1 parent 1230af1 commit 1d063cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ edition = "2018"
[features]
default = []
help4help2man = []
summary = []

[dependencies]
ansi_term = "0.11"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,5 @@ mod warning;

pub use crate::run::run;

#[cfg(summary)]
pub mod summary;

0 comments on commit 1d063cc

Please sign in to comment.