A lot
This commit is contained in:
parent
c2a7afe6c1
commit
ade0c3cde4
24 changed files with 1701 additions and 321 deletions
|
|
@ -33,13 +33,19 @@ mtp-codec = { path = "codec" }
|
|||
mtp-transport = { path = "transport" }
|
||||
|
||||
# --- optional, behind features ---
|
||||
mtp-crypto = { path = "crypto", optional = true }
|
||||
mtp-crypto = { path = "crypto", optional = true, features = [
|
||||
"serde",
|
||||
"mlkem-tls",
|
||||
] }
|
||||
mtp-host = { path = "host", optional = true }
|
||||
mtp-client = { path = "client", optional = true }
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
||||
# Serialization
|
||||
serde = ["mtp-crypto/serde"]
|
||||
|
||||
# Message encryption (AEAD, signatures, KEM, KDF, hashing).
|
||||
# When combined with `host` or `client`, also enables connection authentication.
|
||||
crypto = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue