Skip to content

Commit 980a927

Browse files
committed
v0.4.9
1 parent 200aeca commit 980a927

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
mail-send 0.4.9
2+
================================
3+
- Bump `rustls` dependency to 0.23
4+
- Bump `tokio-rustls` dependency to 0.26
5+
16
mail-send 0.4.8
27
================================
38
- Bump `mail-auth` dependency to 0.4

Cargo.toml

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "mail-send"
33
description = "E-mail delivery library with SMTP and DKIM support"
4-
version = "0.4.8"
4+
version = "0.4.9"
55
edition = "2021"
66
authors = [ "Stalwart Labs <[email protected]>"]
77
license = "Apache-2.0 OR MIT"
@@ -23,8 +23,8 @@ base64 = "0.22"
2323
rand = { version = "0.8.5", optional = true }
2424
md5 = { version = "0.7.0", optional = true }
2525
tokio = { version = "1.23", features = ["net", "io-util", "time"]}
26-
rustls = { version = "0.22", features = ["tls12"]}
27-
tokio-rustls = { version = "0.25"}
26+
rustls = { version = "0.23", default-features = false, features = ["std"]}
27+
tokio-rustls = { version = "0.26", default-features = false }
2828
webpki-roots = { version = "0.26"}
2929
rustls-pki-types = { version = "1" }
3030
gethostname = { version = "0.4"}
@@ -34,9 +34,15 @@ tokio = { version = "1.16", features = ["net", "io-util", "time", "rt-multi-thre
3434
env_logger = "0.11.0"
3535

3636
[features]
37-
default = ["digest-md5", "cram-md5", "builder", "dkim"]
37+
default = ["digest-md5", "cram-md5", "builder", "dkim", "ring", "tls12"]
3838
builder = ["mail-builder"]
3939
parser = ["mail-parser"]
4040
dkim = ["mail-auth"]
4141
digest-md5 = ["md5", "rand"]
4242
cram-md5 = ["md5"]
43+
aws_lc_rs = ["rustls/aws_lc_rs", "tokio-rustls/aws_lc_rs"]
44+
aws-lc-rs = ["aws_lc_rs"]
45+
fips = ["rustls/fips", "tokio-rustls/fips"]
46+
logging = ["rustls/logging", "tokio-rustls/logging"]
47+
ring = ["rustls/ring", "tokio-rustls/ring"]
48+
tls12 = ["rustls/tls12", "tokio-rustls/tls12"]

0 commit comments

Comments
 (0)