mirror of
https://github.com/chatmail/relay.git
synced 2026-09-14 19:33:14 +00:00
feat: https transport channel (#122)
Transport mode: Implements an additional mail delivery channel over HTTPS. Incoming mode: Adds a http server listening for incoming messages delivered over HTTPS. Signed-off-by: Jagoda Ślązak <jslazak@jslazak.com>
This commit is contained in:
committed by
GitHub
parent
1b1585eb7d
commit
0a652e61ee
@@ -31,6 +31,21 @@ tokio-rustls = { version = "0.26.4", default-features = false, features = [
|
||||
webpki-roots = "1.0.6"
|
||||
tokio-io-timeout = "1.2.1"
|
||||
retainer = "0.4.0"
|
||||
hyper = { version = "1.8.1", features = ["server"] }
|
||||
hyper-util = { version = "0.1.20", features = [
|
||||
"tokio",
|
||||
"server",
|
||||
"server-auto",
|
||||
"client-legacy",
|
||||
] }
|
||||
http-body-util = "0.1.3"
|
||||
hyper-rustls = { version = "0.27.9", default-features = false, features = [
|
||||
"ring",
|
||||
"http1",
|
||||
"http2",
|
||||
"logging",
|
||||
"tls12",
|
||||
] }
|
||||
|
||||
[dev-dependencies]
|
||||
rstest = "0.26.1"
|
||||
|
||||
Reference in New Issue
Block a user