Commit
+7 -3 +/-2 browse
1 | diff --git a/Cargo.lock b/Cargo.lock |
2 | index c0c9dec..6e163bf 100644 |
3 | --- a/Cargo.lock |
4 | +++ b/Cargo.lock |
5 | @@ -1010,8 +1010,7 @@ dependencies = [ |
6 | [[package]] |
7 | name = "mail-auth" |
8 | version = "0.5.0" |
9 | - source = "registry+https://github.com/rust-lang/crates.io-index" |
10 | - checksum = "aaee4c38f4df428c6732f3d5472a013fa248d2772f48c8932295b32c683a23c4" |
11 | + source = "git+https://github.com/stalwartlabs/mail-auth.git?branch=main#9cadc33fc096545f003399ca5169543539cd1434" |
12 | dependencies = [ |
13 | "ahash", |
14 | "flate2", |
15 | diff --git a/maitred/Cargo.toml b/maitred/Cargo.toml |
16 | index c52eefe..06bdea0 100644 |
17 | --- a/maitred/Cargo.toml |
18 | +++ b/maitred/Cargo.toml |
19 | @@ -10,7 +10,6 @@ bytes = "1.8.0" |
20 | crossbeam-deque = { version = "0.8.5", optional = true } |
21 | email_address = "0.2.9" |
22 | futures = "0.3.31" |
23 | - mail-auth = { git = "https://github.com/stalwartlabs/mail-auth.git", branch = "main" } |
24 | mail-builder = "0.3.2" |
25 | mail-parser = { version = "0.9.4", features = ["serde", "serde_support"] } |
26 | maildir = "0.6.4" |
27 | @@ -28,6 +27,12 @@ tokio-util = { version = "0.7.12", features = ["full"], optional = true } |
28 | tracing = { version = "0.1.40", features = ["log"] } |
29 | url = "2.5.2" |
30 | |
31 | + [dependencies.mail-auth] |
32 | + git = "https://github.com/stalwartlabs/mail-auth.git" |
33 | + branch = "main" |
34 | + default-features = false |
35 | + features = ["ring", "rustls-pemfile"] |
36 | + |
37 | [dev-dependencies] |
38 | tracing-subscriber = "0.3.18" |
39 |