Skip to content

Commit

Permalink
v0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mdecimus committed May 28, 2024
1 parent 4eb4c3a commit 200aeca
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
mail-send 0.4.8
================================
- Bump `mail-auth` dependency to 0.4
- Bump `base64` dependency to 0.22

mail-send 0.4.7
================================
- Added 'parser` feature for `Message` conversion.
- Added 'parser feature for `Message` conversion.

mail-send 0.4.6
================================
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mail-send"
description = "E-mail delivery library with SMTP and DKIM support"
version = "0.4.7"
version = "0.4.8"
edition = "2021"
authors = [ "Stalwart Labs <hello@stalw.art>"]
license = "Apache-2.0 OR MIT"
Expand All @@ -16,10 +16,10 @@ doctest = false

[dependencies]
smtp-proto = { version = "0.1" }
mail-auth = { version = "0.3", optional = true }
mail-auth = { version = "0.4", optional = true }
mail-builder = { version = "0.3", optional = true }
mail-parser = { version = "0.9", optional = true }
base64 = "0.21"
base64 = "0.22"
rand = { version = "0.8.5", optional = true }
md5 = { version = "0.7.0", optional = true }
tokio = { version = "1.23", features = ["net", "io-util", "time"]}
Expand All @@ -31,7 +31,7 @@ gethostname = { version = "0.4"}

[dev-dependencies]
tokio = { version = "1.16", features = ["net", "io-util", "time", "rt-multi-thread", "macros"] }
env_logger = "0.10.0"
env_logger = "0.11.0"

[features]
default = ["digest-md5", "cram-md5", "builder", "dkim"]
Expand Down

0 comments on commit 200aeca

Please sign in to comment.