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

This commit is contained in:
Andreas Blum 2021-09-14 22:02:52 +02:00
parent dce5e7500f
commit 1d185e7cab
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;