mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
2e63ff5928
* Fix type confusion in some scenarios When the feature for rustls 0.22 is enabled, and rustls 0.23 is also present in a project, there suddently exist multiple paths for errors when building middleware chains due to the use of two consecutive `?` operators without specifying the intermediate error type. This commit addresses the issue by removing the first `?`, so that the first error type will always be known, and the second `?` always has a well defined implementation. * Add CHANGES entry about type confusion * actix-http: add rustls 0.23 support * actix-http: update ws example, tests for rustls 0.23 * actix-http: add rustls 0.23 to changelog * Update comments to mention 0.23 instead of 0.22 * awc: add rustls 0.23 support This also fixes certificate lookup when native-roots is enabled for rustls 0.22. * awc: update changelog for rustls 0.23 * awc: Add base rustls-0_23 feature without roots to better enable custom config * actix-test: add rustls-0.23 * actix-test: add rustls 0.23 to changelog * awc: update changelog with rustls 0.23 tweaks * actix-web: add rustls 0.23 * Add rustls-0_23 to CI * Update tls_rustls.rs * review nits * review nits part 2 * fix doc test --------- Co-authored-by: Rob Ede <robjtede@icloud.com>
60 lines
2.1 KiB
TOML
60 lines
2.1 KiB
TOML
[package]
|
|
name = "actix-test"
|
|
version = "0.1.3"
|
|
authors = [
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
"Rob Ede <robjtede@icloud.com>",
|
|
]
|
|
description = "Integration testing tools for Actix Web applications"
|
|
keywords = ["http", "web", "framework", "async", "futures"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-web"
|
|
categories = [
|
|
"network-programming",
|
|
"asynchronous",
|
|
"web-programming::http-server",
|
|
"web-programming::websocket",
|
|
]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
# TLS via Rustls v0.20
|
|
rustls = ["rustls-0_20"]
|
|
# TLS via Rustls v0.20
|
|
rustls-0_20 = ["tls-rustls-0_20", "actix-http/rustls-0_20", "awc/rustls-0_20"]
|
|
# TLS via Rustls v0.21
|
|
rustls-0_21 = ["tls-rustls-0_21", "actix-http/rustls-0_21", "awc/rustls-0_21"]
|
|
# TLS via Rustls v0.22
|
|
rustls-0_22 = ["tls-rustls-0_22", "actix-http/rustls-0_22", "awc/rustls-0_22-webpki-roots"]
|
|
# TLS via Rustls v0.23
|
|
rustls-0_23 = ["tls-rustls-0_23", "actix-http/rustls-0_23", "awc/rustls-0_23-webpki-roots"]
|
|
|
|
# TLS via OpenSSL
|
|
openssl = ["tls-openssl", "actix-http/openssl", "awc/openssl"]
|
|
|
|
[dependencies]
|
|
actix-codec = "0.5"
|
|
actix-http = "3.6"
|
|
actix-http-test = "3"
|
|
actix-rt = "2.1"
|
|
actix-service = "2"
|
|
actix-utils = "3"
|
|
actix-web = { version = "4.5", default-features = false, features = ["cookies"] }
|
|
awc = { version = "3.4", default-features = false, features = ["cookies"] }
|
|
|
|
futures-core = { version = "0.3.17", default-features = false, features = ["std"] }
|
|
futures-util = { version = "0.3.17", default-features = false, features = [] }
|
|
log = "0.4"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
serde_urlencoded = "0.7"
|
|
tls-openssl = { package = "openssl", version = "0.10.55", optional = true }
|
|
tls-rustls-0_20 = { package = "rustls", version = "0.20", optional = true }
|
|
tls-rustls-0_21 = { package = "rustls", version = "0.21", optional = true }
|
|
tls-rustls-0_22 = { package = "rustls", version = "0.22", optional = true }
|
|
tls-rustls-0_23 = { package = "rustls", version = "0.23", default-features = false, optional = true }
|
|
tokio = { version = "1.24.2", features = ["sync"] }
|