General Upgrade, NEW: WebServers, Better Docs
Some checks failed
CI / checks (push) Failing after 4m20s

This commit is contained in:
Alex Emmet 2026-07-18 03:08:03 +02:00
commit cf52b22537
122 changed files with 10308 additions and 5205 deletions

View file

@ -1,20 +1,19 @@
[package]
name = "mtp-client"
version = "0.1.0"
version = "0.2.0"
edition = "2024"
[dependencies]
mtp-common = { version = "0.1.0", path = "../common" }
mtp-codec = { version = "0.1.0", path = "../codec" }
mtp-transport = { version = "0.1.0", path = "../transport" }
mtp-crypto = { version = "0.1.0", path = "../crypto", optional = true }
rand = "0.8"
mtp-common = { version = "0.2.0", path = "../common" }
mtp-codec = { version = "0.2.0", path = "../codec" }
mtp-transport = { version = "0.2.0", path = "../transport" }
mtp-crypto = { version = "0.2.0", path = "../crypto", optional = true }
rand = "0.10.1"
tokio = { version = "1", features = ["rt", "sync", "time"] }
tracing = "0.1"
[dev-dependencies]
mtp-host = { version = "0.1.0", path = "../host" }
mtp-transport = { version = "0.1.0", path = "../transport", features = ["host"] }
mtp-host = { version = "0.2.0", path = "../host" }
mtp-transport = { version = "0.2.0", path = "../transport", features = ["host"] }
rcgen = "0.14"
[features]