cargo_whatfeatures/printer/mod.rs
1pub mod labels;
2
3mod deps;
4mod tree;
5
6mod style;
7use style::Style;
8
9mod theme;
10pub use theme::Theme;
11
12mod yank_status;
13pub use yank_status::YankStatus;
14
15mod workspace;
16pub use workspace::WorkspacePrinter;
17
18mod version;
19pub use version::VersionPrinter;
20
21#[derive(Copy, Clone)]
22pub struct Options {
23 pub print_features: bool,
24 pub show_private: bool,
25 pub show_deps: bool,
26 pub verbose: bool,
27 pub theme: Theme,
28}