forked from openmls/openmls
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 1.01 KB
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
[workspace]
members = [
"openmls",
"traits",
"openmls_rust_crypto",
"libcrux_crypto",
"fuzz",
"cli",
"interop_client",
"memory_storage",
"sqlite_storage",
"sqlx_storage",
"delivery-service/ds",
"delivery-service/ds-lib",
"basic_credential",
"openmls-wasm",
"openmls_test",
]
resolver = "2"
# Central dependency management for some crates
[workspace.dependencies]
tls_codec = { version = "0.4.2", features = ["derive", "serde", "mls"] }
openmls = { version = "0.8.0", path = "openmls" }
openmls_traits = { version = "0.5.0", path = "traits" }
openmls_test = { version = "0.2.1", path = "openmls_test" }
openmls_basic_credential = { version = "0.5.0", path = "basic_credential" }
openmls_rust_crypto = { version = "0.5.0", path = "openmls_rust_crypto" }
openmls_libcrux_crypto = { version = "0.3.0", path = "libcrux_crypto" }
openmls_memory_storage = { version = "0.5.0", path = "memory_storage" }
openmls_sqlite_storage = { version = "0.2.0", path = "sqlite_storage" }