Skip to content

Commit 24be36b

Browse files
committed
chore: prepare actix-tls release v3.4.0
1 parent 38ae762 commit 24be36b

File tree

4 files changed

+17
-15
lines changed

4 files changed

+17
-15
lines changed

.cargo/config.toml

-6
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,3 @@ ci-check-linux = "hack --workspace --feature-powerset --depth=2 check --tests --
1313

1414
# tests avoiding io-uring feature
1515
ci-test = "hack --feature-powerset --depth=2 --exclude-features=io-uring test --lib --tests --no-fail-fast -- --nocapture"
16-
ci-test-rustls-020 = "hack --feature-powerset --depth=2 --exclude-features=io-uring,rustls-0_21,rustls-0_22 test --lib --tests --no-fail-fast -- --nocapture"
17-
ci-test-rustls-021 = "hack --feature-powerset --depth=2 --exclude-features=io-uring,rustls-0_20,rustls-0_22 test --lib --tests --no-fail-fast -- --nocapture"
18-
ci-test-rustls-022 = "hack --feature-powerset --depth=2 --exclude-features=io-uring,rustls-0_20,rustls-0_21 test --lib --tests --no-fail-fast -- --nocapture"
19-
20-
# test with io-uring feature
21-
ci-test-linux = "hack --feature-powerset --depth=2 --exclude-features=rustls-0_20,rustls-0_21 test --lib --tests --no-fail-fast -- --nocapture"

actix-tls/CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 3.4.0
6+
57
- Add `rustls-0_23`, `rustls-0_23-webpki-roots`, and `rustls-0_23-native-roots` crate features.
68
- Minimum supported Rust version (MSRV) is now 1.70.
79

actix-tls/Cargo.toml

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-tls"
3-
version = "3.3.0"
3+
version = "3.4.0"
44
authors = [
55
"Nikolay Kim <[email protected]>",
66
"Rob Ede <[email protected]>",
@@ -92,31 +92,37 @@ http-1 = { package = "http", version = "1", optional = true }
9292
tls-openssl = { package = "openssl", version = "0.10.55", optional = true }
9393
tokio-openssl = { version = "0.6", optional = true }
9494

95+
# rustls PKI types
96+
rustls-pki-types-1 = { package = "rustls-pki-types", version = "1", optional = true }
97+
9598
# rustls v0.20
9699
tokio-rustls-023 = { package = "tokio-rustls", version = "0.23", optional = true }
97-
webpki-roots-022 = { package = "webpki-roots", version = "0.22", optional = true }
98100

99101
# rustls v0.21
100-
rustls-021 = { package = "rustls", version = "0.21.6", optional = true }
101-
rustls-webpki-0101 = { package = "rustls-webpki", version = "0.101.4", optional = true }
102102
tokio-rustls-024 = { package = "tokio-rustls", version = "0.24", optional = true }
103-
webpki-roots-025 = { package = "webpki-roots", version = "0.25", optional = true }
104103

105104
# rustls v0.22
106-
rustls-pki-types-1 = { package = "rustls-pki-types", version = "1", optional = true } # Also used for rustls v0.23
107105
tokio-rustls-025 = { package = "tokio-rustls", version = "0.25", optional = true }
108-
webpki-roots-026 = { package = "webpki-roots", version = "0.26", optional = true } # Also used for rustls v0.23
109106

110107
# rustls v0.23
111108
tokio-rustls-026 = { package = "tokio-rustls", version = "0.26", default-features = false, optional = true }
112109

110+
# webpki-roots used with rustls features
111+
webpki-roots-022 = { package = "webpki-roots", version = "0.22", optional = true }
112+
webpki-roots-025 = { package = "webpki-roots", version = "0.25", optional = true }
113+
webpki-roots-026 = { package = "webpki-roots", version = "0.26", optional = true }
114+
113115
# native root certificates for rustls impls
114116
rustls-native-certs-06 = { package = "rustls-native-certs", version = "0.6", optional = true }
115117
rustls-native-certs-07 = { package = "rustls-native-certs", version = "0.7", optional = true }
116118

117119
# native-tls
118120
tokio-native-tls = { version = "0.3", optional = true }
119121

122+
[target.'cfg(any())'.dependencies]
123+
rustls-021 = { package = "rustls", version = "0.21.6", optional = true } # force version with add_trust_anchors method
124+
rustls-webpki-0101 = { package = "rustls-webpki", version = "0.101.4", optional = true } # force secure version
125+
120126
[dev-dependencies]
121127
actix-codec = "0.5"
122128
actix-rt = "2.2"

actix-tls/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<!-- prettier-ignore-start -->
66

77
[![crates.io](https://img.shields.io/crates/v/actix-tls?label=latest)](https://crates.io/crates/actix-tls)
8-
[![Documentation](https://docs.rs/actix-tls/badge.svg?version=3.3.0)](https://docs.rs/actix-tls/3.3.0)
8+
[![Documentation](https://docs.rs/actix-tls/badge.svg?version=3.4.0)](https://docs.rs/actix-tls/3.4.0)
99
[![Version](https://img.shields.io/badge/rustc-1.52+-ab6000.svg)](https://blog.rust-lang.org/2021/05/06/Rust-1.52.0.html)
1010
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-tls.svg)
1111
<br />
12-
[![Dependency Status](https://deps.rs/crate/actix-tls/3.3.0/status.svg)](https://deps.rs/crate/actix-tls/3.3.0)
12+
[![Dependency Status](https://deps.rs/crate/actix-tls/3.4.0/status.svg)](https://deps.rs/crate/actix-tls/3.4.0)
1313
![Download](https://img.shields.io/crates/d/actix-tls.svg)
1414
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)
1515

0 commit comments

Comments
 (0)