This commit is contained in:
Alex Emmet 2026-06-23 23:18:03 +02:00
commit ade0c3cde4
24 changed files with 1701 additions and 321 deletions

View file

@ -1,17 +1,16 @@
[package]
name = "mtp-example-server"
name = "server"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "mtp-example-server"
name = "server"
path = "src/main.rs"
[dependencies]
mtp-host = { path = "../../host", features = ["crypto"] }
mtp-codec = { path = "../../codec" }
mtp-crypto = { path = "../../crypto", features = ["serde"] }
mtp = { path = "../../", features = ["crypto", "host"] }
rcgen = "0.14"
tokio = { version = "1", features = ["full"] }
serde_json = "1"
serde_json = { version = "1" }
hex = "0.4"
serde_core = "1.0.228"