1
1
[package ]
2
2
name = " actix-tls"
3
3
version = " 3.4.0"
4
- authors = [
5
- " Nikolay Kim <[email protected] >" ,
6
-
7
- ]
4
+ authors = [
" Nikolay Kim <[email protected] >" ,
" Rob Ede <[email protected] >" ]
8
5
description = " TLS acceptor and connector services for Actix ecosystem"
9
6
keywords = [" network" , " tls" , " ssl" , " async" , " transport" ]
10
7
repository = " https://github.com/actix/actix-net.git"
@@ -18,17 +15,12 @@ all-features = true
18
15
rustdoc-args = [" --cfg" , " docsrs" ]
19
16
20
17
[package .metadata .cargo_check_external_types ]
21
- allowed_external_types = [
22
- " actix_service::*" ,
23
- " actix_utils::*" ,
24
- " futures_core::*" ,
25
- " tokio::*" ,
26
- ]
18
+ allowed_external_types = [" actix_service::*" , " actix_utils::*" , " futures_core::*" , " tokio::*" ]
27
19
28
20
[package .metadata .cargo-machete ]
29
21
ignored = [
30
- " rustls_021" , # specified to force version with add_trust_anchors method
31
- " rustls_webpki_0101" , # specified to force secure version
22
+ " rustls_021" , # specified to force version with add_trust_anchors method
23
+ " rustls_webpki_0101" , # specified to force secure version
32
24
]
33
25
34
26
[features ]
@@ -76,7 +68,6 @@ uri = ["dep:http-0_2", "dep:http-1"]
76
68
actix-rt = { version = " 2.2" , default-features = false }
77
69
actix-service = " 2"
78
70
actix-utils = " 3"
79
-
80
71
futures-core = { version = " 0.3.7" , default-features = false , features = [" alloc" ] }
81
72
impl-more = " 0.1"
82
73
pin-project-lite = " 0.2.7"
@@ -120,17 +111,17 @@ rustls-native-certs-07 = { package = "rustls-native-certs", version = "0.7", opt
120
111
tokio-native-tls = { version = " 0.3" , optional = true }
121
112
122
113
[target .'cfg(any())' .dependencies ]
123
- rustls-021 = { package = " rustls" , version = " 0.21.6" , optional = true } # force version with add_trust_anchors method
114
+ rustls-021 = { package = " rustls" , version = " 0.21.6" , optional = true } # force version with add_trust_anchors method
124
115
rustls-webpki-0101 = { package = " rustls-webpki" , version = " 0.101.4" , optional = true } # force secure version
125
116
126
117
[dev-dependencies ]
127
118
actix-codec = " 0.5"
128
119
actix-rt = " 2.2"
129
120
actix-server = " 2"
130
121
bytes = " 1"
131
- pretty_env_logger = " 0.5"
132
122
futures-util = { version = " 0.3.17" , default-features = false , features = [" sink" ] }
133
123
itertools = " 0.13"
124
+ pretty_env_logger = " 0.5"
134
125
rcgen = " 0.13"
135
126
rustls-pemfile = " 2"
136
127
tokio-rustls-026 = { package = " tokio-rustls" , version = " 0.26" }
@@ -139,3 +130,6 @@ trust-dns-resolver = "0.23"
139
130
[[example ]]
140
131
name = " accept-rustls"
141
132
required-features = [" accept" , " rustls-0_23" ]
133
+
134
+ [lints ]
135
+ workspace = true
0 commit comments