Skip to content

Commit 33bae5f

Browse files
authored
Update crates and fix Mail issue (dani-garcia#5125)
- Updated all the crates Including in this update is an update from lettre, which solves an issue with some specific SMTP mail providers.
1 parent f60502a commit 33bae5f

File tree

2 files changed

+45
-57
lines changed

2 files changed

+45
-57
lines changed

Cargo.lock

+38-50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ syslog = "6.1.1"
4141
[dependencies]
4242
# Logging
4343
log = "0.4.22"
44-
fern = { version = "0.6.2", features = ["syslog-6", "reopen-1"] }
44+
fern = { version = "0.7.0", features = ["syslog-6", "reopen-1"] }
4545
tracing = { version = "0.1.40", features = ["log"] } # Needed to have lettre and webauthn-rs trace logging to work
4646

4747
# A `dotenv` implementation for Rust
@@ -67,11 +67,11 @@ dashmap = "6.1.0"
6767

6868
# Async futures
6969
futures = "0.3.31"
70-
tokio = { version = "1.40.0", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time", "signal", "net"] }
70+
tokio = { version = "1.41.0", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time", "signal", "net"] }
7171

7272
# A generic serialization/deserialization framework
73-
serde = { version = "1.0.210", features = ["derive"] }
74-
serde_json = "1.0.129"
73+
serde = { version = "1.0.213", features = ["derive"] }
74+
serde_json = "1.0.132"
7575

7676
# A safe, extensible ORM and Query builder
7777
diesel = { version = "2.2.4", features = ["chrono", "r2d2", "numeric"] }
@@ -115,7 +115,7 @@ webauthn-rs = "0.3.2"
115115
url = "2.5.2"
116116

117117
# Email libraries
118-
lettre = { version = "0.11.9", features = ["smtp-transport", "sendmail-transport", "builder", "serde", "tokio1-native-tls", "hostname", "tracing", "tokio1"], default-features = false }
118+
lettre = { version = "0.11.10", features = ["smtp-transport", "sendmail-transport", "builder", "serde", "tokio1-native-tls", "hostname", "tracing", "tokio1"], default-features = false }
119119
percent-encoding = "2.3.1" # URL encoding library used for URL's in the emails
120120
email_address = "0.2.9"
121121

@@ -130,7 +130,7 @@ hickory-resolver = "0.24.1"
130130
html5gum = "0.5.7"
131131
regex = { version = "1.11.0", features = ["std", "perf", "unicode-perl"], default-features = false }
132132
data-url = "0.3.1"
133-
bytes = "1.7.2"
133+
bytes = "1.8.0"
134134

135135
# Cache function results (Used for version check and favicon fetching)
136136
cached = { version = "0.53.1", features = ["async"] }
@@ -147,7 +147,7 @@ pico-args = "0.5.0"
147147

148148
# Macro ident concatenation
149149
paste = "1.0.15"
150-
governor = "0.6.3"
150+
governor = "0.7.0"
151151

152152
# Check client versions for specific features.
153153
semver = "1.0.23"

0 commit comments

Comments
 (0)