From aee04ecc6705d86d5371bbb54b2dc43bbec0773c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 4 Dec 2021 20:40:26 -0500 Subject: use futures-lite instead of futures --- CHANGELOG.md | 6 ++++++ Cargo.toml | 4 ++-- src/reader.rs | 6 +++--- src/writer.rs | 6 +++--- 4 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 010449b..e2dc60c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [Unreleased] + +### Changed + +* moved to `futures_lite` instead of `futures` + ## [0.3.0] - 2021-12-04 ### Changed diff --git a/Cargo.toml b/Cargo.toml index d0a8022..48e8b7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,8 +12,8 @@ keywords = ["ttyrec"] categories = ["parser-implementations"] [dependencies] -futures = { version = "0.3.18", optional = true } +futures-lite = { version = "1.12.0", optional = true } [features] default = ["async"] -async = ["futures"] +async = ["futures-lite"] 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 { +pub struct Reader { input: T, parser: crate::Parser, buf: [u8; 4096], } -impl Reader { +impl Reader { /// Creates a new [`Reader`](Self) from a [`futures::io::AsyncRead`] /// instance. pub fn new(input: T) -> Self { diff --git a/src/writer.rs b/src/writer.rs index f161df0..0a94586 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -1,12 +1,12 @@ -use futures::io::AsyncWriteExt as _; +use futures_lite::io::AsyncWriteExt as _; /// Writes ttyrec frames to a [`futures::io::AsyncWrite`] instance. -pub struct Writer { +pub struct Writer { output: T, creator: crate::Creator, } -impl Writer { +impl Writer { /// Creates a new [`Writer`](Self) from a [`futures::io::AsyncWrite`] /// instance. pub fn new(output: T) -> Self { -- cgit v1.2.3-54-g00ecf