forked from openmls/openmls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (54 loc) · 1.6 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "openmls"
version = "0.3.0"
authors = ["Raphael Robert"]
edition = "2018"
description = "This is a WIP Rust implementation of the Messaging Layer Security (MLS) protocol based on draft 9+."
license = "MIT"
documentation = "https://openmls.github.io/openmls/"
repository = "https://github.com/openmls/openmls/"
readme = "README.md"
[workspace]
members = [
".",
"delivery-service/ds-lib",
"delivery-service/ds",
"cli",
"test_macros",
"tls-codec",
"tls-codec-derive",
]
default-members = [
".",
"test_macros",
"tls-codec",
]
[dependencies]
uuid = { version = "0.8", features = ["v4"] }
rand = "^0.8"
byteorder = "^1.3"
lazy_static = "1.4"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
tls-codec = { version = "0.1", path = "tls-codec", features = ["derive", "hpke"] }
log = { version = "0.4", features = ["std"] }
typetag = "0.1"
hpke = { version = "0.0.7", package = "hpke-rs", features = ["hazmat", "serialization"] }
evercrypt = { version = "0.0.8", features = ["serialization"] }
itertools = {version = "0.10", optional = true}
[features]
default = ["rust-crypto"]
rust-crypto = ["evercrypt/rust-crypto-aes"]
expose-test-vectors = ["itertools"]
crypto-debug = [] # ☣️ Enable logging of sensitive cryptographic information
content-debug = [] # ☣️ Enable logging of sensitive message content
[dev-dependencies]
criterion = "^0.3"
flexi_logger = "0.17"
pretty_env_logger = "0.4.0"
itertools = "0.10"
test_macros = { path = "test_macros" }
openmls = { path = ".", features = ["expose-test-vectors"] }
[[bench]]
name = "benchmark"
harness = false