Commit
Author: Kevin Schoon [me@kevinschoon.com]
Hash: bdd533ac95e093ee1d5fdbc62c5dde577b70c5b2
Timestamp: Thu, 26 Dec 2024 17:40:26 +0000 (3 weeks ago)

+7 -11 +/-2 browse
remove mail-auth git dependency
1diff --git a/Cargo.lock b/Cargo.lock
2index 6e163bf..14b97d8 100644
3--- a/Cargo.lock
4+++ b/Cargo.lock
5 @@ -1,6 +1,6 @@
6 # This file is automatically @generated by Cargo.
7 # It is not intended for manual editing.
8- version = 3
9+ version = 4
10
11 [[package]]
12 name = "addr2line"
13 @@ -1009,8 +1009,9 @@ dependencies = [
14
15 [[package]]
16 name = "mail-auth"
17- version = "0.5.0"
18- source = "git+https://github.com/stalwartlabs/mail-auth.git?branch=main#9cadc33fc096545f003399ca5169543539cd1434"
19+ version = "0.5.1"
20+ source = "registry+https://github.com/rust-lang/crates.io-index"
21+ checksum = "01e36ed6613c4c43f2d3e4ff3af1888b3612c74d56fe0eac2cf25706f6a85a6b"
22 dependencies = [
23 "ahash",
24 "flate2",
25 @@ -1331,9 +1332,9 @@ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
26
27 [[package]]
28 name = "quick-xml"
29- version = "0.36.1"
30+ version = "0.37.1"
31 source = "registry+https://github.com/rust-lang/crates.io-index"
32- checksum = "96a05e2e8efddfa51a84ca47cec303fac86c8541b686d37cac5efc0e094417bc"
33+ checksum = "f22f29bdff3987b4d8632ef95fd6424ec7e4e0a57e2f4fc63e489e75357f6a03"
34 dependencies = [
35 "memchr",
36 ]
37 diff --git a/maitred/Cargo.toml b/maitred/Cargo.toml
38index 06bdea0..5bc5b5f 100644
39--- a/maitred/Cargo.toml
40+++ b/maitred/Cargo.toml
41 @@ -10,6 +10,7 @@ bytes = "1.8.0"
42 crossbeam-deque = { version = "0.8.5", optional = true }
43 email_address = "0.2.9"
44 futures = "0.3.31"
45+ mail-auth = { version = "0.5.1", features = ["ring", "rustls-pemfile"] }
46 mail-builder = "0.3.2"
47 mail-parser = { version = "0.9.4", features = ["serde", "serde_support"] }
48 maildir = "0.6.4"
49 @@ -27,12 +28,6 @@ tokio-util = { version = "0.7.12", features = ["full"], optional = true }
50 tracing = { version = "0.1.40", features = ["log"] }
51 url = "2.5.2"
52
53- [dependencies.mail-auth]
54- git = "https://github.com/stalwartlabs/mail-auth.git"
55- branch = "main"
56- default-features = false
57- features = ["ring", "rustls-pemfile"]
58-
59 [dev-dependencies]
60 tracing-subscriber = "0.3.18"
61