1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-13 10:49:26 +00:00

chore: update http crate

This commit is contained in:
Luis Moreno 2023-12-02 12:46:45 -04:00
parent e95c8fe5a6
commit 1020d80c7f
10 changed files with 24 additions and 13 deletions

View file

@ -3,6 +3,7 @@
## Unreleased
- Minimum supported Rust version (MSRV) is now 1.68 due to transitive `time` dependency.
- Updated `actix-tls` dependency to `4`.
## 3.1.0

View file

@ -31,7 +31,7 @@ openssl = ["tls-openssl", "awc/openssl"]
[dependencies]
actix-service = "2"
actix-codec = "0.5"
actix-tls = "3"
actix-tls = "4"
actix-utils = "3"
actix-rt = "2.2"
actix-server = "2"
@ -39,7 +39,7 @@ awc = { version = "3", default-features = false }
bytes = "1"
futures-core = { version = "0.3.17", default-features = false }
http = "0.2.7"
http = "1"
log = "0.4"
socket2 = "0.5"
serde = "1"

View file

@ -5,6 +5,9 @@
### Changed
- Updated `zstd` dependency to `0.13`.
- Updated `http` dependency to `1`.
- Updated `h2` dependency to `0.4`.
- Updated `actix-tls` dependency to `4`.
### Fixed

View file

@ -75,7 +75,7 @@ bytestring = "1"
derive_more = "0.99.5"
encoding_rs = "0.8"
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
http = "0.2.7"
http = "1"
httparse = "1.5.1"
httpdate = "1.0.1"
itoa = "1"
@ -89,7 +89,7 @@ tokio-util = { version = "0.7", features = ["io", "codec"] }
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
# http2
h2 = { version = "0.3.17", optional = true }
h2 = { version = "0.4", optional = true }
# websockets
local-channel = { version = "0.1", optional = true }
@ -98,7 +98,7 @@ rand = { version = "0.8", optional = true }
sha1 = { version = "0.10", optional = true }
# openssl/rustls
actix-tls = { version = "3.1", default-features = false, optional = true }
actix-tls = { version = "4", default-features = false, optional = true }
# compress-*
brotli = { version = "3.3.3", optional = true }
@ -108,7 +108,7 @@ zstd = { version = "0.13", optional = true }
[dev-dependencies]
actix-http-test = { version = "3", features = ["openssl"] }
actix-server = "2"
actix-tls = { version = "3.1", features = ["openssl"] }
actix-tls = { version = "4", features = ["openssl"] }
actix-web = "4"
async-stream = "0.3"

View file

@ -4,6 +4,9 @@
- Minimum supported Rust version (MSRV) is now 1.68 due to transitive `time` dependency.
### Changed
- Updated `http` dependency to `1`.
## 0.5.1
- Correct typo in error string for `i32` deserialization. [#2876]

View file

@ -21,14 +21,14 @@ default = ["http"]
[dependencies]
bytestring = ">=0.1.5, <2"
http = { version = "0.2.7", optional = true }
http = { version = "1", optional = true }
regex = "1.5"
serde = "1"
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
http = "0.2.7"
http = "1"
serde = { version = "1", features = ["derive"] }
percent-encoding = "2.1"

View file

@ -6,6 +6,7 @@
- Updated `zstd` dependency to `0.13`.
- Compression middleware now prefers brotli over zstd over gzip.
- Updated `actix-tls` dependency to `4`.
### Fixed

View file

@ -73,7 +73,7 @@ actix-rt = { version = "2.6", default-features = false }
actix-server = "2"
actix-service = "2"
actix-utils = "3"
actix-tls = { version = "3.1", default-features = false, optional = true }
actix-tls = { version = "4.0", default-features = false, optional = true }
actix-http = { version = "3.4", features = ["ws"] }
actix-router = "0.5"

View file

@ -4,6 +4,9 @@
- Update `trust-dns-resolver` dependency to `0.23`.
- Updated `zstd` dependency to `0.13`.
- Updated `http` dependency to `1`.
- Updated `h2` dependency to `0.4`.
- Updated `actix-tls` dependency to `4`.
## 3.2.0

View file

@ -63,7 +63,7 @@ actix-codec = "0.5"
actix-service = "2"
actix-http = { version = "3.4", features = ["http2", "ws"] }
actix-rt = { version = "2.1", default-features = false }
actix-tls = { version = "3.1", features = ["connect", "uri"] }
actix-tls = { version = "4.0", features = ["connect", "uri"] }
actix-utils = "3"
base64 = "0.21"
@ -72,8 +72,8 @@ cfg-if = "1"
derive_more = "0.99.5"
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
futures-util = { version = "0.3.17", default-features = false, features = ["alloc", "sink"] }
h2 = "0.3.17"
http = "0.2.7"
h2 = "0.4"
http = "1"
itoa = "1"
log =" 0.4"
mime = "0.3"
@ -98,7 +98,7 @@ actix-http = { version = "3.4", features = ["openssl"] }
actix-http-test = { version = "3", features = ["openssl"] }
actix-server = "2"
actix-test = { version = "0.1", features = ["openssl", "rustls-0_21"] }
actix-tls = { version = "3", features = ["openssl", "rustls-0_21"] }
actix-tls = { version = "4", features = ["openssl", "rustls-0_21"] }
actix-utils = "3"
actix-web = { version = "4", features = ["openssl"] }