mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-26 06:30:29 +00:00
Update crossterm to 0.19.
This commit is contained in:
parent
853f3d9200
commit
8832281dcf
3 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@ unicode-segmentation = "1.2"
|
||||||
unicode-width = "0.1"
|
unicode-width = "0.1"
|
||||||
termion = { version = "1.5", optional = true }
|
termion = { version = "1.5", optional = true }
|
||||||
rustbox = { version = "0.11", optional = true }
|
rustbox = { version = "0.11", optional = true }
|
||||||
crossterm = { version = "0.18", optional = true }
|
crossterm = { version = "0.19", optional = true }
|
||||||
easycurses = { version = "0.12.2", optional = true }
|
easycurses = { version = "0.12.2", optional = true }
|
||||||
pancurses = { version = "0.16.1", optional = true, features = ["win32a"] }
|
pancurses = { version = "0.16.1", optional = true, features = ["win32a"] }
|
||||||
serde = { version = "1", "optional" = true, features = ["derive"]}
|
serde = { version = "1", "optional" = true, features = ["derive"]}
|
||||||
|
|
|
@ -12,7 +12,7 @@ use crossterm::{
|
||||||
};
|
};
|
||||||
use std::{
|
use std::{
|
||||||
error::Error,
|
error::Error,
|
||||||
io::{stdout, Write},
|
io::stdout,
|
||||||
sync::mpsc,
|
sync::mpsc,
|
||||||
thread,
|
thread,
|
||||||
time::{Duration, Instant},
|
time::{Duration, Instant},
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
//!
|
//!
|
||||||
//! ```toml
|
//! ```toml
|
||||||
//! [dependencies]
|
//! [dependencies]
|
||||||
//! crossterm = "0.18"
|
//! crossterm = "0.19"
|
||||||
//! tui = { version = "0.14", default-features = false, features = ['crossterm'] }
|
//! tui = { version = "0.14", default-features = false, features = ['crossterm'] }
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
|
|
Loading…
Reference in a new issue