mirror of
https://github.com/vacp2p/de-mls.git
synced 2026-01-08 14:53:55 -05:00
chore(dependencies): remove unnessary features
This commit is contained in:
22
Cargo.toml
22
Cargo.toml
@@ -30,20 +30,13 @@ futures = "0.3.26"
|
||||
tower-http = { version = "0.4.0", features = ["cors"] }
|
||||
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread", "full"] }
|
||||
tokio-util = "0.7.13"
|
||||
alloy = { version = "0.11.0", features = [
|
||||
"providers",
|
||||
"node-bindings",
|
||||
"network",
|
||||
"transports",
|
||||
"k256",
|
||||
"signer-local",
|
||||
] }
|
||||
alloy = { version = "0.14.0", features = ["network", "signers"] }
|
||||
kameo = "0.13.0"
|
||||
|
||||
criterion = { version = "0.4.0", features = ["html_reports"] }
|
||||
|
||||
waku-bindings = { git = "https://github.com/waku-org/waku-rust-bindings.git", branch = "rln-fix-deps"}
|
||||
waku-sys = { git = "https://github.com/waku-org/waku-rust-bindings.git", branch = "rln-fix-deps"}
|
||||
waku-bindings = { git = "https://github.com/waku-org/waku-rust-bindings.git", branch = "rln-fix-deps" }
|
||||
waku-sys = { git = "https://github.com/waku-org/waku-rust-bindings.git", branch = "rln-fix-deps" }
|
||||
|
||||
rand = "0.8.5"
|
||||
serde_json = "1.0"
|
||||
@@ -51,12 +44,7 @@ serde = { version = "1.0.163", features = ["derive"] }
|
||||
tls_codec = "0.3.0"
|
||||
chrono = "0.4"
|
||||
|
||||
secp256k1 = { version = "0.30.0", features = [
|
||||
"rand",
|
||||
"std",
|
||||
"hashes",
|
||||
"global-context",
|
||||
] }
|
||||
secp256k1 = { version = "0.30.0", features = ["hashes"] }
|
||||
ecies = "0.2.7"
|
||||
libsecp256k1 = "0.7.1"
|
||||
|
||||
@@ -73,4 +61,4 @@ mls_crypto = { path = "mls_crypto" }
|
||||
|
||||
# [[bench]]
|
||||
# name = "group_flow_benchmark"
|
||||
# harness = false
|
||||
# harness = false
|
||||
|
||||
@@ -14,11 +14,4 @@ openmls_traits = "0.2.0"
|
||||
anyhow = "1.0.81"
|
||||
thiserror = "1.0.39"
|
||||
|
||||
alloy = { version = "0.11.0", features = [
|
||||
"providers",
|
||||
"node-bindings",
|
||||
"network",
|
||||
"transports",
|
||||
"k256",
|
||||
"signer-local",
|
||||
] }
|
||||
alloy = { version = "0.14.0", features = ["network", "signers"] }
|
||||
|
||||
@@ -70,7 +70,7 @@ pub async fn create_user_instance(
|
||||
/// 1. Get all collected key packages from previous epoch (not processed yet, just drained messaged queue)
|
||||
/// 2. Send new admin key to the waku node for new epoch and next message will be saved in the messaged queue
|
||||
/// 3. Process the income key packages from previous epoch and send welcome message to the new members and
|
||||
/// update message to the other members
|
||||
/// update message to the other members
|
||||
pub async fn handle_admin_flow_per_epoch(
|
||||
user: ActorRef<User>,
|
||||
group_name: String,
|
||||
|
||||
Reference in New Issue
Block a user