Merge branch 'master' into 'master'

use raw identifier syntax for mod 'async' as it is a keyword since 2018 edition

See merge request redox-os/termion!180
This commit is contained in:
Jeremy Soller 2021-09-14 20:32:27 +00:00
commit e2f8451008
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@ pub use sys::size::terminal_size;
pub use sys::size::terminal_size_pixels;
pub use sys::tty::{is_tty, get_tty};
mod async;
pub use async::{AsyncReader, async_stdin};
mod r#async;
pub use r#async::{AsyncReader, async_stdin};
#[macro_use]
mod macros;