Files
de-mls/sc_key_store/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

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" }