From 1d185e7cab6f117cbee6282920a01ac8e13e1620 Mon Sep 17 00:00:00 2001 From: Andreas Blum Date: Tue, 14 Sep 2021 22:02:52 +0200 Subject: [PATCH] use raw identifier syntax for mod 'async' as it is a keyword since 2018 edition --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 69a01f8..7f22ccb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;