forked from openmls/openmls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (39 loc) · 1.07 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
[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",
]
default-members = [ "." ]
[dependencies]
uuid = { version = "0.8", features = ["v4"] }
rand = "^0.7"
byteorder = "^1.3"
lazy_static = "1.4"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
log = { version = "0.4", features = ["std"] }
typetag = "0.1"
hpke = { version = "0.0.4", package = "hpke-rs", features = ["hazmat", "serialization"] }
evercrypt = { version = "0.0.6", features = ["serialization"] }
[features]
default = ["rust-crypto"]
rust-crypto = ["evercrypt/rust-crypto-aes"]
[dev-dependencies]
criterion = "^0.3"
flexi_logger = "0.16"
pretty_env_logger = "0.4.0"
[[bench]]
name = "benchmark"
harness = false