//! Miscellaneous support code used by Cargo.
//!
//! > This crate is maintained by the Cargo team, primarily for use by Cargo
//! > and not intended for external use (except as a transitive dependency). This
//! > crate may make major changes to its APIs or be deprecated without warning.
pub use annotate_snippets as report;
pub use ColorChoice;
pub use Hyperlink;
pub use Shell;
pub use TtyWidth;
pub use Verbosity;
pub type CargoResult<T> = Result;