Skip to content

Commit 60dd2ee

Browse files
committed
v0.6.0
1 parent df48517 commit 60dd2ee

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
mail-send 0.6.0
2+
================================
3+
- Use `rustls-platform-verifier` for TLS certificate verification.
4+
15
mail-send 0.5.2
26
================================
37
- Add an option to choose the sending IP (#41)

Cargo.toml

Lines changed: 6 additions & 6 deletions
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.5.3"
4+
version = "0.6.0"
55
edition = "2024"
66
authors = [ "Stalwart Labs <hello@stalw.art>"]
77
license = "Apache-2.0 OR MIT"
@@ -16,25 +16,25 @@ doctest = false
1616

1717
[dependencies]
1818
smtp-proto = { version = "0.2" }
19-
mail-auth = { version = "0.7", optional = true }
19+
mail-auth = { version = "0.8", optional = true }
2020
mail-builder = { version = "0.4", optional = true }
2121
mail-parser = { version = "0.11", optional = true }
2222
base64 = "0.22"
2323
rand = { version = "0.9", optional = true }
2424
md5 = { version = "0.8", optional = true }
25-
tokio = { version = "1.47", features = ["net", "io-util", "time"]}
25+
tokio = { version = "1.51", features = ["net", "io-util", "time"]}
2626
rustls = { version = "0.23", default-features = false, features = ["std"]}
2727
tokio-rustls = { version = "0.26", default-features = false }
28-
rustls-platform-verifier = "0.6"
28+
rustls-platform-verifier = "0.7"
2929
rustls-pki-types = { version = "1" }
3030
gethostname = { version = "1.0"}
3131

3232
[dev-dependencies]
33-
tokio = { version = "1.16", features = ["net", "io-util", "time", "rt-multi-thread", "macros"] }
33+
tokio = { version = "1.51", features = ["net", "io-util", "time", "rt-multi-thread", "macros"] }
3434
env_logger = "0.11.0"
3535

3636
[features]
37-
default = ["digest-md5", "cram-md5", "builder", "dkim", "ring", "tls12"]
37+
default = ["digest-md5", "cram-md5", "builder", "dkim", "aws_lc_rs", "tls12"]
3838
builder = ["mail-builder"]
3939
parser = ["mail-parser"]
4040
dkim = ["mail-auth"]

0 commit comments

Comments
 (0)