Skip to content

Commit

Permalink
Update signatory requirement to v0.19 (#227)
Browse files Browse the repository at this point in the history
This release uses the v1.0 releases of the `ed25519` and `signature`
crates. Release announcement here:

https://www.reddit.com/r/rust/comments/g4w8by/ann_rustcrypto_signature_v10_and_ed25519_v10/

It also eliminates the needless dependencies on the `p256` and `p384`
crates, which `tendermint-rs` doesn't use (it only uses the `k256` crate
for the secp256k1 curve definition).
  • Loading branch information
tony-iqlusion authored Apr 20, 2020
1 parent 375e6e2 commit 46385ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion light-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
gumdrop = "0.7"
serde = { version = "1", features = ["serde_derive"] }
tendermint = { version = "0.12.0-rc0", path = "../tendermint" }
tendermint = { version = "0.13.0-dev", path = "../tendermint" }
async-trait = "0.1"
tokio = { version = "0.2", features = ["full"] }
abscissa_tokio = "0.5"
Expand Down
6 changes: 3 additions & 3 deletions tendermint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ prost-amino-derive = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
sha2 = { version = "0.8", default-features = false }
signatory = { version = "0.18", features = ["ed25519", "ecdsa"] }
signatory-dalek = "0.18"
signatory-secp256k1 = "0.18"
signatory = { version = "0.19", features = ["ed25519", "ecdsa"] }
signatory-dalek = "0.19"
signatory-secp256k1 = "0.19"
subtle = "2"
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
tai64 = { version = "3", features = ["chrono"] }
Expand Down

0 comments on commit 46385ad

Please sign in to comment.