[Add] TCP server to core MTP (HTTP/1.1 & HTTP/2) compatibility
All checks were successful
CI / checks (push) Successful in 5m29s
All checks were successful
CI / checks (push) Successful in 5m29s
This commit is contained in:
parent
04760fd88d
commit
00f0aaeeff
21 changed files with 1627 additions and 677 deletions
|
|
@ -12,6 +12,11 @@ mtp-crypto = { version = "0.2.0", path = "../crypto" }
|
|||
bytes = "1"
|
||||
http = "1"
|
||||
tokio = { version = "1", features = ["io-util", "macros", "net", "rt", "sync", "time"] }
|
||||
hyper = { version = "1", features = ["server", "http1", "http2"] }
|
||||
hyper-util = { version = "0.1", features = ["server", "http1", "http2", "tokio"] }
|
||||
http-body-util = "0.1"
|
||||
tokio-rustls = "0.26"
|
||||
tokio-stream = "0.1"
|
||||
h3 = "0.0.8"
|
||||
h3-quinn = { version = "0.0.10", features = ["datagram"] }
|
||||
h3-webtransport = "0.1.2"
|
||||
|
|
@ -24,6 +29,7 @@ rand = { version = "0.10.1", optional = true }
|
|||
|
||||
[dev-dependencies]
|
||||
rcgen = "0.14"
|
||||
hyper = { version = "1", features = ["client", "http2"] }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
|
|||
Loading…
Reference in a new issue