Updated Crypto to use MTP-Crypto

This commit is contained in:
Alex Emmet 2026-07-03 06:28:08 +02:00
commit 594f13e974
10 changed files with 465 additions and 513 deletions

View file

@ -4,30 +4,28 @@ version = "0.1.0"
edition = "2024"
[dependencies]
mtp = { git = "https://git.methanium.net/Methanium/mtp.git", features = ["host", "client"] }
mtp = { git = "https://git.methanium.net/Methanium/mtp.git", features = [
"host",
"client",
"crypto",
] }
ansi_term = "*"
uuid = { version = "*", features = ["v4"] }
base64 = "0.22.1"
dashmap = "*"
futures = "*"
hex = "*"
once_cell = "1.21.4"
rand = "0.8"
rand_core = { version = "0.6", features = ["getrandom", "std"] }
rustls = { version = "0.23.40", default-features = false, features = [
"std",
"tls12",
"aws-lc-rs",
"prefer-post-quantum",
] }
aes-gcm = "0.10.3"
sha2 = "0.11.0"
tokio = { version = "*", features = ["full"] }
x448 = { version = "*" }
log = "0.4"
dotenv = "0.15.0"
hkdf = "0.13"
strum = "0.28.0"
strum_macros = "0.28.0"
livekit-api = { version = "0.5.0", features = ["native-tls"] }