]> git.proxmox.com Git - rustc.git/blame - vendor/annotate-snippets-0.6.1/src/stylesheets/mod.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / vendor / annotate-snippets-0.6.1 / src / stylesheets / mod.rs
CommitLineData
f20569fa
XL
1//! List of stylesheets that can be used by the `DisplayListFormatter`.
2//!
3//! The list depends on what optional dependencies the crate has been
4//! compiled with.
5//!
6//! By default the `no_color` is available. If the crate gets compiled
7//! with `ansi_term`, the `color` stylesheet is added.
8
9#[cfg(feature = "ansi_term")]
10pub mod color;
11pub mod no_color;