Files
de-mls/Cargo.toml
Ekaterina Broslavskaya 4774e574d2 Interactive CLI for demo (#17)
* delete pks

* refactor

* update ciphersuite

* add draft cli interface

* add ui

* change to read file

* fix problem with threads, add error handler

* add graceful shutdown
2024-07-18 11:52:39 +03:00

55 lines
1.2 KiB
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"
tokio = { version = "=1.38.0", features = [
"macros",
"rt-multi-thread",
"full",
] }
tokio-util = "=0.7.11"
alloy = { git = "https://github.com/alloy-rs/alloy", features = [
"providers",
"node-bindings",
"network",
"transports",
"k256",
] }
fred = { version = "=9.0.3", features = ["subscriber-client"] }
rand = "=0.8.5"
serde_json = "=1.0"
url = "=2.5.2"
tls_codec = "=0.3.0"
hex = "=0.4.3"
shlex = "=1.3.0"
clap = { version = "=4.5.8", features = ["derive"] }
anyhow = "=1.0.81"
thiserror = "=1.0.61"
crossterm = "=0.27.0"
ratatui = "=0.27.0"
textwrap = "=0.16.1"
ds = { path = "ds" }
sc_key_store = { path = "sc_key_store" }
mls_crypto = { path = "mls_crypto" }