Add missing re-exports (#275)
This commit is contained in:
parent
edd9189234
commit
1f9ead9d51
@ -21,7 +21,7 @@ screen = ["crossterm_screen"]
|
|||||||
input = ["crossterm_input"]
|
input = ["crossterm_input"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
crossterm_screen = { version = "0.3.1" , optional = true }
|
crossterm_screen = { git = "https://github.com/crossterm-rs/crossterm-screen", branch = "master", version = "0.3.1" , optional = true }
|
||||||
crossterm_cursor = { version = "0.3.1" , optional = true }
|
crossterm_cursor = { version = "0.3.1" , optional = true }
|
||||||
crossterm_terminal = { version = "0.3.1", optional = true }
|
crossterm_terminal = { version = "0.3.1", optional = true }
|
||||||
crossterm_style = { git = "https://github.com/crossterm-rs/crossterm-style", branch = "master", version = "0.5.1", optional = true }
|
crossterm_style = { git = "https://github.com/crossterm-rs/crossterm-style", branch = "master", version = "0.5.1", optional = true }
|
||||||
|
@ -28,7 +28,9 @@ pub use crossterm_input::{
|
|||||||
input, AsyncReader, InputEvent, KeyEvent, MouseButton, MouseEvent, SyncReader, TerminalInput,
|
input, AsyncReader, InputEvent, KeyEvent, MouseButton, MouseEvent, SyncReader, TerminalInput,
|
||||||
};
|
};
|
||||||
#[cfg(feature = "screen")]
|
#[cfg(feature = "screen")]
|
||||||
pub use crossterm_screen::{AlternateScreen, IntoRawMode, RawScreen};
|
pub use crossterm_screen::{
|
||||||
|
AlternateScreen, EnterAlternateScreen, IntoRawMode, LeaveAlternateScreen, RawScreen,
|
||||||
|
};
|
||||||
#[cfg(feature = "style")]
|
#[cfg(feature = "style")]
|
||||||
pub use crossterm_style::{
|
pub use crossterm_style::{
|
||||||
color, style, Attribute, Color, Colored, Colorize, ObjectStyle, PrintStyledFont, ResetColor,
|
color, style, Attribute, Color, Colored, Colorize, ObjectStyle, PrintStyledFont, ResetColor,
|
||||||
|
Loading…
Reference in New Issue
Block a user