This commit is contained in:
parent
6e5c985719
commit
1b796d0ce7
46 changed files with 1755 additions and 691 deletions
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue