tmkms 0.11.0-rc.0

Tendermint Key Management System: provides isolated, optionally HSM-backed signing key management for Tendermint applications including validators, oracles, IBC relayers, and other transaction signing applications
Documentation
[package]
name = "tmkms"
description = """
Tendermint Key Management System: provides isolated, optionally HSM-backed
signing key management for Tendermint applications including validators,
oracles, IBC relayers, and other transaction signing applications
"""
version = "0.11.0-rc.0"
authors = ["Tony Arcieri <tony@iqlusion.io>", "Ismail Khoffi <Ismail.Khoffi@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/iqlusioninc/tmkms/"
readme = "README.md"
categories = ["cryptography::cryptocurrencies"]
keywords = ["cosmos", "ed25519", "kms", "key-management", "yubihsm"]
edition = "2021"
rust-version = "1.56"

[dependencies]
abscissa_core = "=0.6.0-rc.1"
abscissa_tokio = { version = "=0.6.0-rc.1", optional = true }
bytes_v0_5 = { version = "0.5", package = "bytes" }
bytes = "1"
chrono = "0.4"
clap = "3"
cosmrs = "0.4"
ed25519-dalek = "1"
eyre = "0.6"
getrandom = "0.1"
hkd32 = { version = "0.6", default-features = false, features = ["mnemonic"] }
hkdf = "0.11"
hyper = { version = "0.14", optional = true }
hyper-rustls = { version = "0.23", optional = true, features = ["webpki-roots"] }
k256 = { version = "0.10", features = ["ecdsa", "sha256"] }
ledger = { version = "0.2", optional = true }
once_cell = "1.5"
prost = "0.9"
prost-amino = "0.6"
prost-amino-derive = "0.6"
prost-derive = "0.9"
rand_core = { version = "0.6", features = ["std"] }
rpassword = { version = "5", optional = true }
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1"
sha2 = "0.9"
signature = { version = "1.3", features = ["std"] }
stdtx = { version = "0.6", optional = true }
subtle = "2"
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
tempfile = "3"
tendermint = { version = "0.23.3", features = ["secp256k1"] }
tendermint-config = "0.23.3"
tendermint-rpc = { version = "0.23.3", optional = true, features = ["http-client"] }
tendermint-proto = "0.23.3"
tendermint-p2p = { version = "0.23.3", features = ["amino"] }
thiserror = "1"
wait-timeout = "0.2"
yubihsm = { version = "0.40", features = ["secp256k1", "setup", "usb"], optional = true }
zeroize = "1"

[dev-dependencies]
abscissa_core = { version = "=0.6.0-rc.1", features = ["testing"] }
byteorder = "1"
rand = "0.7"

[features]
softsign = []
tx-signer = ["abscissa_tokio", "hyper", "hyper-rustls", "stdtx", "tendermint-rpc"]
yubihsm-mock = ["yubihsm/mockhsm"]
yubihsm-server = ["yubihsm/http-server", "rpassword"]

# Enable integer overflow checks in release builds for security reasons
[profile.release]
overflow-checks = true

[package.metadata.docs.rs]
all-features = true