Commit
Author: Dirkjan Ochtman [dirkjan@ochtman.nl]
Hash: 12a5108511a4241cdf8f9d805e7166dace6b18f6
Timestamp: Wed, 14 Dec 2022 14:17:39 +0000 (1 year ago)

+8 -8 +/-1 browse
Keep dependencies in alphabetic order
1diff --git a/Cargo.toml b/Cargo.toml
2index 7afcf4f..dfbe172 100644
3--- a/Cargo.toml
4+++ b/Cargo.toml
5 @@ -16,21 +16,21 @@ resolver = "2"
6 doctest = false
7
8 [dependencies]
9- mail-parser = { version = "0.8", git = "https://github.com/stalwartlabs/mail-parser", features = ["ludicrous_mode", "full_encoding"] }
10- mail-builder = { version = "0.2.5", git = "https://github.com/stalwartlabs/mail-builder", features = ["ludicrous_mode"] }
11- rsa = {version = "0.7.0"}
12+ ahash = "0.8.0"
13 ed25519-dalek = "1.0.1"
14- sha1 = {version = "0.10", features = ["oid"]}
15- sha2 = {version = "0.10.6", features = ["oid"]}
16- trust-dns-resolver = { version = "0.22.0", features = ["dns-over-rustls", "dnssec-ring"] }
17+ flate2 = "1.0.25"
18 lru-cache = "0.1.2"
19+ mail-parser = { version = "0.8", git = "https://github.com/stalwartlabs/mail-parser", features = ["ludicrous_mode", "full_encoding"] }
20+ mail-builder = { version = "0.2.5", git = "https://github.com/stalwartlabs/mail-builder", features = ["ludicrous_mode"] }
21 parking_lot = "0.12.0"
22- ahash = "0.8.0"
23 quick-xml = "0.27.1"
24+ rsa = "0.7.0"
25 serde = { version = "1.0", features = ["derive"] }
26 serde_json = "1.0"
27+ sha1 = { version = "0.10", features = ["oid"] }
28+ sha2 = { version = "0.10.6", features = ["oid"] }
29+ trust-dns-resolver = { version = "0.22.0", features = ["dns-over-rustls", "dnssec-ring"] }
30 zip = "0.6.3"
31- flate2 = "1.0.25"
32
33 [dev-dependencies]
34 tokio = { version = "1.16", features = ["net", "io-util", "time", "rt-multi-thread", "macros"] }