tmkms 0.10.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.10.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"]
keywords    = ["cosmos", "ed25519", "kms", "key-management", "yubihsm"]
edition     = "2018"

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

[dev-dependencies]
abscissa_core = { version = "=0.6.0-pre.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