cargo-whatfeatures 0.9.13

display features, versions and dependencies of crates
Documentation
pub mod labels;

mod deps;
mod tree;

mod style;
use style::Style;

mod theme;
pub use theme::Theme;

mod yank_status;
pub use yank_status::YankStatus;

mod workspace;
pub use workspace::WorkspacePrinter;

mod version;
pub use version::VersionPrinter;

#[derive(Copy, Clone)]
pub struct Options {
    pub print_features: bool,
    pub show_private: bool,
    pub show_deps: bool,
    pub verbose: bool,
    pub theme: Theme,
}