Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: http-rs/async-h1
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.2.1
Choose a base ref
...
head repository: http-rs/async-h1
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
20 changes: 8 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "async-h1"
version = "2.2.1"
version = "2.3.3"
license = "MIT OR Apache-2.0"
repository = "https://github.com/http-rs/async-h1"
documentation = "https://docs.rs/async-h1"
@@ -18,20 +18,16 @@ readme = "README.md"
edition = "2018"

[dependencies]
async-channel = "1.5.1"
async-dup = "1.2.2"
async-global-executor = "2.3.1"
async-io = "1.13.0"
futures-lite = "1.13.0"
http-types = { version = "2.9.0", default-features = false }
httparse = "1.3.4"
async-std = { version = "1.7.0", features = ["unstable"] }
http-types = "2.9.0"
byte-pool = "0.2.2"
lazy_static = "1.4.0"
futures-core = "0.3.8"
log = "0.4.11"
pin-project = "1.0.2"

[dev-dependencies]
async-std = { version = "1.7.0", features = ["attributes"] }
pretty_assertions = "0.6.1"
async-std = { version = "1.7.0", features = ["unstable", "attributes"] }
tempfile = "3.1.0"
async-test = "1.0.0"
duplexify = "1.2.2"
async-dup = "1.2.2"
async-channel = "1.5.1"
2 changes: 1 addition & 1 deletion src/body_encoder.rs
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ use std::io;
use std::pin::Pin;
use std::task::{Context, Poll};

use async_std::io::Read;
use futures_lite::io::AsyncRead as Read;
use http_types::Body;
use pin_project::pin_project;

Loading