General Upgrade, NEW: WebServers, Better Docs
Some checks failed
CI / checks (push) Failing after 3m46s
Some checks failed
CI / checks (push) Failing after 3m46s
This commit is contained in:
parent
5f11d476b6
commit
e6bcce6b2e
122 changed files with 10177 additions and 5165 deletions
29
mtp-webserver/Cargo.toml
Normal file
29
mtp-webserver/Cargo.toml
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
[package]
|
||||
name = "mtp-webserver"
|
||||
version = "0.2.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
mtp-common = { version = "0.2.0", path = "../common" }
|
||||
mtp-codec = { version = "0.2.0", path = "../codec", features = ["registry"] }
|
||||
mtp-host = { version = "0.2.0", path = "../host" }
|
||||
mtp-transport = { version = "0.2.0", path = "../transport" }
|
||||
bytes = "1"
|
||||
http = "1"
|
||||
tokio = { version = "1", features = ["io-util", "macros", "net", "rt", "sync", "time"] }
|
||||
h3 = "0.0.8"
|
||||
h3-quinn = { version = "0.0.10", features = ["datagram"] }
|
||||
h3-webtransport = "0.1.2"
|
||||
quinn = "0.11"
|
||||
rustls = "0.23"
|
||||
tracing = "0.1"
|
||||
thiserror = "2"
|
||||
async-trait = "0.1"
|
||||
|
||||
[dev-dependencies]
|
||||
rcgen = "0.14"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
crypto = ["mtp-host/crypto"]
|
||||
pipes = ["mtp-host/pipes", "mtp-transport/pipes"]
|
||||
Loading…
Reference in a new issue