mirror of
https://github.com/vacp2p/de-mls.git
synced 2026-01-08 21:17:56 -05:00
* 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
33 lines
729 B
TOML
33 lines
729 B
TOML
[package]
|
|
name = "sc_key_store"
|
|
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"
|
|
|
|
thiserror = "=1.0.61"
|
|
anyhow = "=1.0.81"
|
|
|
|
tls_codec = "=0.3.0"
|
|
hex = "0.4.3"
|
|
url = "2.5.2"
|
|
|
|
eyre = "=0.6"
|
|
tokio = { version = "=1.38.0", features = ["macros", "rt-multi-thread"] }
|
|
alloy = { git = "https://github.com/alloy-rs/alloy", features = [
|
|
"providers",
|
|
"node-bindings",
|
|
"network",
|
|
"signer-local",
|
|
"transports",
|
|
"transport-http",
|
|
"k256",
|
|
] }
|
|
|
|
mls_crypto = { path = "../mls_crypto" }
|