General & Crypto
This commit is contained in:
parent
0bbcab5727
commit
02f94993c7
27 changed files with 1881 additions and 47 deletions
|
|
@ -1,6 +1,26 @@
|
|||
[package]
|
||||
name = "transport"
|
||||
name = "mtp-transport"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
mtp-codec = { path = "../codec" }
|
||||
mtp-common = { path = "../common" }
|
||||
wtransport = { version = "0.7.1", default-features = false, features = [
|
||||
"aws-lc-rs",
|
||||
"quinn",
|
||||
"self-signed",
|
||||
] }
|
||||
rustls = { version = "0.23.40" }
|
||||
quinn = { version = "0.11.9", default-features = false, features = [
|
||||
"rustls-aws-lc-rs",
|
||||
"rustls",
|
||||
] }
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
thiserror = "2.0.18"
|
||||
rustls-native-certs = "0.8.4"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
# Enables hosting a MTP server
|
||||
host = []
|
||||
|
|
|
|||
Loading…
Reference in a new issue