Exported ResetColor command (#274)

This commit is contained in:
Timon 2019-10-15 20:45:47 +02:00 committed by GitHub
parent bed198a1cc
commit edd9189234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ input = ["crossterm_input"]
crossterm_screen = { version = "0.3.1" , optional = true }
crossterm_cursor = { version = "0.3.1" , optional = true }
crossterm_terminal = { version = "0.3.1", optional = true }
crossterm_style = { version = "0.5.1" , optional = true }
crossterm_style = { git = "https://github.com/crossterm-rs/crossterm-style", branch = "master", version = "0.5.1", optional = true }
crossterm_input = { version = "0.4.1" , optional = true }
crossterm_utils = { version = "0.3.1" , optional = false }

View File

@ -31,8 +31,8 @@ pub use crossterm_input::{
pub use crossterm_screen::{AlternateScreen, IntoRawMode, RawScreen};
#[cfg(feature = "style")]
pub use crossterm_style::{
color, style, Attribute, Color, Colored, Colorize, ObjectStyle, PrintStyledFont, SetAttr,
SetBg, SetFg, StyledObject, Styler, TerminalColor,
color, style, Attribute, Color, Colored, Colorize, ObjectStyle, PrintStyledFont, ResetColor,
SetAttr, SetBg, SetFg, StyledObject, Styler, TerminalColor,
};
#[cfg(feature = "terminal")]
pub use crossterm_terminal::{terminal, Clear, ClearType, ScrollDown, ScrollUp, SetSize, Terminal};