Skip to content

Commit

Permalink
Remove memchr dependency (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
notgull authored Apr 30, 2023
1 parent 12e4b30 commit 610f8b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,9 @@ async-lock = "2.6.0"
async-task = "4.0.2"
atomic-waker = "1.0.0"
fastrand = "1.3.4"
futures-lite = "1.11.0"
futures-io = { version = "0.3.28", default-features = false, features = ["std"] }
futures-lite = { version = "1.11.0", default-features = false }
log = "0.4.17"

[dev-dependencies]
futures-lite = "1.11.0"
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ use async_channel::{bounded, Receiver};
use async_lock::OnceCell;
use async_task::Runnable;
use atomic_waker::AtomicWaker;
use futures_io::{AsyncRead, AsyncSeek, AsyncWrite};
use futures_lite::{future, prelude::*, ready};

#[doc(no_inline)]
Expand Down

0 comments on commit 610f8b1

Please sign in to comment.