mirror of
https://github.com/vacp2p/de-mls.git
synced 2026-01-08 22:57:57 -05:00
* integration * test: simple bool not deserialized properly * fix: contract address * fix: send instead of call * update sc_storage * refactor code --------- Co-authored-by: rymnc <43716372+rymnc@users.noreply.github.com>
41 lines
979 B
TOML
41 lines
979 B
TOML
[workspace]
|
|
members = ["sc_key_store", "ds", "crates/bindings", "mls_crypto"]
|
|
[workspace.dependencies]
|
|
foundry-contracts = { path = "crates/bindings" }
|
|
|
|
[package]
|
|
name = "de-mls"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# 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"
|
|
|
|
# waku-bindings = "0.6.0"
|
|
bus = "=2.4.1"
|
|
tokio = { version = "=1.38.0", features = ["macros", "rt-multi-thread"] }
|
|
alloy = { git = "https://github.com/alloy-rs/alloy", features = [
|
|
"providers",
|
|
"node-bindings",
|
|
"network",
|
|
"transports",
|
|
"k256",
|
|
] }
|
|
|
|
rand = "=0.8.5"
|
|
serde_json = "=1.0"
|
|
url = "=2.5.2"
|
|
|
|
anyhow = "=1.0.71"
|
|
thiserror = "=1.0.61"
|
|
|
|
ds = { path = "ds" }
|
|
sc_key_store = { path = "sc_key_store" }
|
|
mls_crypto = { path = "mls_crypto" }
|