Brought Example up to spec
Some checks failed
CI / checks (push) Failing after 3m29s

This commit is contained in:
Alex Emmet 2026-07-19 00:29:24 +02:00
commit 1b796d0ce7
46 changed files with 1755 additions and 691 deletions

View file

@ -8,6 +8,7 @@ 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" }
mtp-crypto = { version = "0.2.0", path = "../crypto" }
bytes = "1"
http = "1"
tokio = { version = "1", features = ["io-util", "macros", "net", "rt", "sync", "time"] }
@ -19,11 +20,12 @@ rustls = "0.23"
tracing = "0.1"
thiserror = "2"
async-trait = "0.1"
rand = { version = "0.10.1", optional = true }
[dev-dependencies]
rcgen = "0.14"
[features]
default = []
crypto = ["mtp-host/crypto"]
crypto = ["mtp-host/crypto", "dep:rand"]
pipes = ["mtp-host/pipes", "mtp-transport/pipes"]