Skip to content

Commit

Permalink
Reduce futures crate dependency (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
tottoto committed Jan 21, 2024
1 parent ad7d00d commit 168bfa6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ webpki-roots = {version = "0.26.0", optional = true}
[dev-dependencies]
anyhow = "1.0.61"
env_logger = "0.10.0"
futures = "0.3.23"
futures-util = "0.3.23"
futures-util = {version = "0.3.23", default-features = false}
http02 = {package = "http", version = "0.2"}
hyper = "0.14.20"
lazy_static = "1.4.0"
Expand Down
3 changes: 1 addition & 2 deletions tests/tools/tls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ use std::io::{self, BufReader, Cursor, Read};
use std::path::PathBuf;
use std::pin::Pin;
use std::sync::Arc;
use std::task::{Context, Poll};
use std::task::{Context, Poll, ready};

use futures::ready;
use hyper::server::accept::Accept;
use hyper::server::conn::{AddrIncoming, AddrStream};
use tokio::io::{AsyncRead, AsyncWrite, ReadBuf};
Expand Down

0 comments on commit 168bfa6

Please sign in to comment.