forked from iqlusioninc/tmkms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (76 loc) · 2.79 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[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.12.2"
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.60"
[dependencies]
abscissa_core = "0.7"
abscissa_tokio = { version = "0.7", optional = true }
bytes_v0_5 = { version = "0.5", package = "bytes" }
bytes = "1"
chrono = "0.4"
clap = "4"
cosmrs = "0.11"
ed25519-dalek = "1"
elliptic-curve = { version = "0.12", features = ["pkcs8"], optional = true }
eyre = "0.6"
getrandom = "0.2"
hkd32 = { version = "0.7", default-features = false, features = ["mnemonic"] }
hkdf = "0.12"
hyper = { version = "0.14", optional = true }
hyper-rustls = { version = "0.23", optional = true, features = ["webpki-roots"] }
k256 = { version = "0.11", features = ["ecdsa", "sha256"] }
ledger = { version = "0.2", optional = true }
once_cell = "1.5"
prost = "0.11"
prost-amino = "0.6"
prost-amino-derive = "0.6"
prost-derive = "0.11"
rand_core = { version = "0.6", features = ["std"] }
rpassword = { version = "6", optional = true }
sdkms = { version = "0.5", optional = true }
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1"
sha2 = "0.10"
signature = { version = "1.5", features = ["std"] }
stdtx = { version = "0.7", optional = true }
subtle = "2"
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
tempfile = "3"
tendermint = { version = "0.27", features = ["secp256k1"] }
tendermint-config = "0.27"
tendermint-rpc = { version = "0.27", optional = true, features = ["http-client"] }
tendermint-proto = "0.27"
tendermint-p2p = { version = "0.27", features = ["amino"] }
thiserror = "1"
url = { version = "2.2.2", features = ["serde"], optional = true }
uuid = { version = "1", features = ["serde"], optional = true }
wait-timeout = "0.2"
yubihsm = { version = "0.41", features = ["secp256k1", "setup", "usb"], optional = true }
zeroize = "1"
[dev-dependencies]
abscissa_core = { version = "0.7", 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"]
fortanixdsm = ["elliptic-curve", "sdkms", "url", "uuid"]
# Enable integer overflow checks in release builds for security reasons
[profile.release]
overflow-checks = true
[package.metadata.docs.rs]
all-features = true