mirror of
https://github.com/vacp2p/de-mls.git
synced 2026-01-09 21:48:02 -05:00
* Refactor Waku client test to improve node setup and logging * Refactor Waku integration to use new node setup and improve message handling * Refactor Waku node setup and message handling with improved configuration * Refactor main application structure and improve Waku node initialization - Restructured main application to separate server and Waku node initialization - Added more detailed logging for Waku node setup and connection process - Updated Cargo.toml to use underscore naming convention and update Alloy dependency - Modified Dockerfile to simplify build process - Improved error handling and task management in main application flow * Refactor project structure and improve dependency management - Updated package name in Cargo.toml to use hyphen instead of underscore for consistency. - Simplified dependency paths for Waku bindings in Cargo.toml files across the project. - Modified Dockerfile to streamline the build process by removing unnecessary release flags. - Enhanced README with updated environment variable instructions for better clarity. - Improved frontend button structure for better user interaction. - Cleaned up unused code in Waku actor and related tests, enhancing maintainability. * Update Waku node initialization with auto-subscription notes - Added comments to clarify that the Waku node is auto-subscribing to the pubsub topic and that explicit subscription is unnecessary due to this behavior. - Documented the limitation regarding subscription checks in Waku, referencing the related issue for better context. * Remove unused Go setup from CI workflow and clean up Cargo.toml by commenting out the library section. This streamlines the configuration and focuses on Rust dependencies. * Add peer address configuration and benchmark setup - Introduced a new benchmark configuration in Cargo.toml for `group_flow_benchmark`. - Updated docker-compose.yml to include `PEER_ADDRESSES` environment variable. - Enhanced README with instructions for setting `PEER_ADDRESSES` for node connections. - Modified main.rs to parse and utilize peer addresses for Waku node connections, improving network configuration flexibility. * Update Cargo.toml and Dockerfile for library configuration and build process - Added a library section in Cargo.toml to specify bench settings. - Modified Dockerfile to create necessary source files and streamline the build process by removing redundant commands. - Updated main.rs to improve error handling for peer address configuration. * Comment out library and benchmark sections in Cargo.toml, update Dockerfile to streamline build process, and disable CI benchmark jobs in workflow configuration.
76 lines
1.7 KiB
TOML
76 lines
1.7 KiB
TOML
[workspace]
|
|
members = ["ds", "mls_crypto"]
|
|
# [workspace.dependencies]
|
|
# foundry-contracts = { path = "crates/bindings" }
|
|
|
|
[package]
|
|
name = "de-mls"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "de-mls"
|
|
path = "src/main.rs"
|
|
bench = false
|
|
|
|
# [lib]
|
|
# bench = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# foundry-contracts.workspace = true
|
|
openmls = { version = "0.5.0", features = ["test-utils"] }
|
|
openmls_basic_credential = "0.2.0"
|
|
openmls_rust_crypto = "0.2.0"
|
|
openmls_traits = "0.2.0"
|
|
|
|
axum = { version = "0.6.10", features = ["ws"] }
|
|
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",
|
|
] }
|
|
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"}
|
|
|
|
rand = "0.8.5"
|
|
serde_json = "1.0"
|
|
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",
|
|
] }
|
|
ecies = "0.2.7"
|
|
libsecp256k1 = "0.7.1"
|
|
|
|
anyhow = "1.0.81"
|
|
thiserror = "1.0.39"
|
|
uuid = "1.11.0"
|
|
bounded-vec-deque = "0.1.1"
|
|
|
|
env_logger = "0.11.5"
|
|
log = "0.4.22"
|
|
|
|
ds = { path = "ds" }
|
|
mls_crypto = { path = "mls_crypto" }
|
|
|
|
# [[bench]]
|
|
# name = "group_flow_benchmark"
|
|
# harness = false |