-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
104 lines (88 loc) · 3.11 KB
/
Copy pathCargo.toml
File metadata and controls
104 lines (88 loc) · 3.11 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[workspace]
resolver = "2"
members = [
"crates/gbp/core",
"crates/gbp/base",
"crates/gbp/mls",
"crates/gbp/transport",
"crates/gbp/node",
"crates/gbp/stack",
"crates/gbp/stack-ffi",
"crates/gbp/wasm",
"crates/gbp/cli",
"crates/gtp",
"crates/gap",
"crates/gsp",
"crates/gbp-sframe",
"crates/gbp-proto",
"crates/gbp-flat",
]
[workspace.package]
version = "1.9.2-rc2"
edition = "2024"
rust-version = "1.92"
license = "Apache-2.0"
authors = ["Group Protocol Stack contributors"]
repository = "https://github.com/F000NKKK/Group-Protocol-Stack"
homepage = "https://github.com/F000NKKK/Group-Protocol-Stack"
documentation = "https://docs.rs/gbp-stack"
readme = "README.md"
keywords = ["mls", "rfc9420", "group", "messaging", "e2ee"]
categories = ["cryptography", "network-programming"]
[workspace.dependencies]
# Internal — base layer
gbp-core = { path = "crates/gbp/core", version = "1.9.2-rc2" }
gbp-protocol = { path = "crates/gbp/base", version = "1.9.2-rc2" }
gbp-mls = { path = "crates/gbp/mls", version = "1.9.2-rc2" }
gbp-transport = { path = "crates/gbp/transport", version = "1.9.2-rc2" }
gbp-node = { path = "crates/gbp/node", version = "1.9.2-rc2" }
gbp-stack = { path = "crates/gbp/stack", version = "1.9.2-rc2" }
# Internal — sub-protocols
gtp-protocol = { path = "crates/gtp", version = "1.9.2-rc2" }
gap-protocol = { path = "crates/gap", version = "1.9.2-rc2" }
gsp-protocol = { path = "crates/gsp", version = "1.9.2-rc2" }
# External
openmls = "0.8"
openmls_rust_crypto = "0.5"
openmls_basic_credential = "0.5"
openmls_traits = "0.5"
ciborium = "0.2"
serde = { version = "1", features = ["derive"] }
serde_bytes = "0.11"
# wasm bindings
wasm-bindgen = "0.2"
wasm-bindgen-test = "0.3"
js-sys = "0.3"
fluvio-wasm-timer = "0.2"
# rand 0.8 chain (openmls) needs getrandom 0.2's "js" backend; chacha20poly1305's
# aead 0.6 chain pulls getrandom 0.4 separately, needing its "wasm_js" backend.
getrandom = { version = "0.2", features = ["js"] }
getrandom4 = { package = "getrandom", version = "0.4", default-features = false, features = ["wasm_js"] }
chacha20poly1305 = "0.11"
sha2 = "0.11"
sframe = { version = "1.4", default-features = false, features = ["ring"] }
gbp-sframe = { path = "crates/gbp-sframe", version = "1.9.2-rc2" }
gbp-proto = { path = "crates/gbp-proto", version = "1.9.2-rc2" }
gbp-flat = { path = "crates/gbp-flat", version = "1.9.2-rc2" }
prost = "0.14"
planus = "1.3"
planus-translation = "1.3"
planus-codegen = "1.3"
quinn = "0.11"
rustls = { version = "0.23", features = ["ring"] }
rcgen = "0.14"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "io-util", "sync", "time"] }
thiserror = "2"
anyhow = "1"
hex = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde_json = "1"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = "symbols"
[profile.dev]
opt-level = 0
debug = true