This repository has been archived by the owner on Jun 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Cargo.toml
64 lines (58 loc) · 1.78 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
[package]
name = "tmkms"
description = "Tendermint Key Management System"
version = "0.7.3" # Also update html_root_url in lib.rs when bumping this
authors = ["Tony Arcieri <[email protected]>", "Ismail Khoffi <[email protected]>"]
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.5"
atomicwrites = "0.2"
bytes = "0.5"
chacha20poly1305 = "0.4"
chrono = "0.4"
getrandom = "0.1"
gumdrop = "0.7"
hkd32 = { version = "0.3", default-features = false, features = ["mnemonic"] }
hkdf = "0.8"
hmac = "0.7"
once_cell = "1.3"
prost-amino = "0.5"
prost-amino-derive = "0.5"
rand = "0.7"
rpassword = { version = "4", optional = true }
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1"
sha2 = "0.8"
signatory = { version = "0.19", features = ["ecdsa", "ed25519", "encoding"] }
signatory-dalek = "0.19"
signatory-secp256k1 = "0.19"
signatory-ledger-tm = { version = "0.19", optional = true }
subtle = "2"
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
tendermint = "0.13"
thiserror = "1"
wait-timeout = "0.2"
x25519-dalek = "0.6"
yubihsm = { version = "0.33", features = ["setup", "usb"], optional = true }
zeroize = "1"
[dev-dependencies]
tempfile = "3"
[dev-dependencies.abscissa_core]
version = "0.5"
features = ["testing"]
[features]
default = []
softsign = []
ledgertm = ["signatory-ledger-tm"]
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