aboutsummaryrefslogtreecommitdiffstats
path: root/src/reader.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-04 20:40:26 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-04 20:44:05 -0500
commitaee04ecc6705d86d5371bbb54b2dc43bbec0773c (patch)
treee14cd5e512b73cc088d2d2b8f97b3fad2ab40f59 /src/reader.rs
parent57f245da290fee5a1cb2e9526fd30df3a2fb379d (diff)
downloadttyrec-aee04ecc6705d86d5371bbb54b2dc43bbec0773c.tar.gz
ttyrec-aee04ecc6705d86d5371bbb54b2dc43bbec0773c.zip
use futures-lite instead of futures
Diffstat (limited to 'src/reader.rs')
-rw-r--r--src/reader.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/reader.rs b/src/reader.rs
index 240c78e..4939eb9 100644
--- a/src/reader.rs
+++ b/src/reader.rs
@@ -1,13 +1,13 @@
-use futures::io::AsyncReadExt as _;
+use futures_lite::io::AsyncReadExt as _;
/// Reads ttyrec frames from a [`futures::io::AsyncRead`] instance.
-pub struct Reader<T: futures::io::AsyncRead> {
+pub struct Reader<T: futures_lite::io::AsyncRead> {
input: T,
parser: crate::Parser,
buf: [u8; 4096],
}
-impl<T: futures::io::AsyncRead + std::marker::Unpin + Send> Reader<T> {
+impl<T: futures_lite::io::AsyncRead + std::marker::Unpin + Send> Reader<T> {
/// Creates a new [`Reader`](Self) from a [`futures::io::AsyncRead`]
/// instance.
pub fn new(input: T) -> Self {