Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.
/ tmkms Public archive
forked from iqlusioninc/tmkms

Commit

Permalink
Update to tendermint v0.34.21-mekatek.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tsenart committed Sep 20, 2022
1 parent 1fc26e6 commit c800880
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 16 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 27 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ signing key management for Tendermint applications including validators,
oracles, IBC relayers, and other transaction signing applications
"""
version = "0.12.2-mekatek.1"
authors = ["Tony Arcieri <[email protected]>", "Ismail Khoffi <[email protected]>"]
authors = [
"Tony Arcieri <[email protected]>",
"Ismail Khoffi <[email protected]>",
]
license = "Apache-2.0"
repository = "https://github.com/iqlusioninc/tmkms/"
readme = "README.md"
Expand All @@ -30,7 +33,9 @@ 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"] }
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"
Expand All @@ -51,14 +56,20 @@ subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
tempfile = "3"
tendermint = { version = "0.23.9", features = ["secp256k1"] }
tendermint-config = "0.23.9"
tendermint-rpc = { version = "0.23.9", optional = true, features = ["http-client"] }
tendermint-rpc = { version = "0.23.9", optional = true, features = [
"http-client",
] }
tendermint-proto = "0.23.9"
tendermint-p2p = { version = "0.23.9", 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 }
yubihsm = { version = "0.41", features = [
"secp256k1",
"setup",
"usb",
], optional = true }
zeroize = "1"

[dev-dependencies]
Expand All @@ -67,15 +78,21 @@ byteorder = "1"
rand = "0.7"

[patch.crates-io]
tendermint = { git = "https://github.com/meka-dev/tendermint-rs", tag = "v0.34.19-mekatek.1" }
tendermint-config = { git = "https://github.com/meka-dev/tendermint-rs", tag = "v0.34.19-mekatek.1" }
tendermint-rpc = { git = "https://github.com/meka-dev/tendermint-rs", tag = "v0.34.19-mekatek.1" }
tendermint-proto = { git = "https://github.com/meka-dev/tendermint-rs", tag = "v0.34.19-mekatek.1" }
tendermint-p2p = { git = "https://github.com/meka-dev/tendermint-rs", tag = "v0.34.19-mekatek.1" }
tendermint = { git = "https://github.com/meka-dev/tendermint-rs", tag = "v0.34.21-mekatek.1" }
tendermint-config = { git = "https://github.com/meka-dev/tendermint-rs", tag = "v0.34.21-mekatek.1" }
tendermint-rpc = { git = "https://github.com/meka-dev/tendermint-rs", tag = "v0.34.21-mekatek.1" }
tendermint-proto = { git = "https://github.com/meka-dev/tendermint-rs", tag = "v0.34.21-mekatek.1" }
tendermint-p2p = { git = "https://github.com/meka-dev/tendermint-rs", tag = "v0.34.21-mekatek.1" }

[features]
softsign = []
tx-signer = ["abscissa_tokio", "hyper", "hyper-rustls", "stdtx", "tendermint-rpc"]
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"]
Expand Down

0 comments on commit c800880

Please sign in to comment.