Refactored local delivery to avoid mpsc channel
This commit is contained in:
@@ -14,6 +14,7 @@ common = { path = "../common" }
|
||||
directory = { path = "../directory" }
|
||||
trc = { path = "../trc" }
|
||||
spam-filter = { path = "../spam-filter" }
|
||||
email = { path = "../email" }
|
||||
smtp-proto = { version = "0.1" }
|
||||
mail-parser = { version = "0.9", features = ["full_encoding", "serde_support", "ludicrous_mode"] }
|
||||
mail-builder = { version = "0.3", features = ["ludicrous_mode"] }
|
||||
@@ -27,8 +28,6 @@ hyper-util = { version = "0.1.1", features = ["tokio"] }
|
||||
http-body-util = "0.1.0"
|
||||
form_urlencoded = "1.1.0"
|
||||
tokio = { version = "1.23", features = ["rt"] }
|
||||
aes-gcm = "0.10.1"
|
||||
aes-gcm-siv = "0.11.1"
|
||||
bincode = "1.3.3"
|
||||
form-data = { version = "0.5.0", features = ["sync"], default-features = false }
|
||||
mime = "0.3.17"
|
||||
@@ -40,25 +39,20 @@ hkdf = "0.12.3"
|
||||
sha1 = "0.10"
|
||||
sha2 = "0.10"
|
||||
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-webpki-roots", "http2"]}
|
||||
tokio-tungstenite = "0.24"
|
||||
tungstenite = "0.24"
|
||||
tokio-tungstenite = "0.26"
|
||||
tungstenite = "0.26"
|
||||
chrono = "0.4"
|
||||
dashmap = "6.0"
|
||||
aes = "0.8.3"
|
||||
cbc = { version = "0.1.2", features = ["alloc"] }
|
||||
sequoia-openpgp = { version = "1.16", default-features = false, features = ["crypto-rust", "allow-experimental-crypto", "allow-variable-time-crypto"] }
|
||||
rand = "0.8.5"
|
||||
pkcs8 = { version = "0.10.2", features = ["alloc", "std"] }
|
||||
rasn = "0.10"
|
||||
rasn-cms = "0.10"
|
||||
rasn-pkix = "0.10"
|
||||
rsa = "0.9.2"
|
||||
async-trait = "0.1.68"
|
||||
lz4_flex = { version = "0.11", default-features = false }
|
||||
rev_lines = "0.3.0"
|
||||
x509-parser = "0.16.0"
|
||||
quick-xml = "0.36"
|
||||
quick-xml = "0.37"
|
||||
memory-stats = "1.2.0"
|
||||
aes-gcm = "0.10.1"
|
||||
aes-gcm-siv = "0.11.1"
|
||||
rsa = "0.9.2"
|
||||
|
||||
[features]
|
||||
test_mode = []
|
||||
|
||||
Reference in New Issue
Block a user