Skip to content

Commit

Permalink
Remove secret_connection and ring dependency (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamsi committed Nov 19, 2019
2 parents cf7e702 + a47430a commit 538d5bc
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 718 deletions.
5 changes: 0 additions & 5 deletions tendermint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,13 @@ authors = [
circle-ci = { repository = "tendermint/kms" }

[dependencies]
byteorder = { version = "1.2" }
bytes = "0.4"
chrono = { version = "0.4", features = ["serde"] }
digest = "0.8"
failure = "0.1"
hkdf = { version = "0.7" }
hyper = { version = "0.10" }
prost-amino = { version = "0.4.0" }
prost-amino-derive = { version = "0.4.0" }
rand_os = { version = "0.1" }
ring = { version = "0.14" }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
signatory = { version = "0.12", features = ["ed25519", "ecdsa"] }
Expand All @@ -49,7 +45,6 @@ subtle-encoding = { version = "0.3", features = ["bech32-preview"] }
tai64 = { version = "3", features = ["chrono"] }
toml = { version = "0.5" }
uuid = { version = "0.7", default-features = false }
x25519-dalek = { version = "0.5", default-features = false, features = ["u64_backend"] }
zeroize = { version = "0.9" }

[dev-dependencies]
Expand Down
2 changes: 0 additions & 2 deletions tendermint/src/amino_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ pub mod ed25519;
pub mod ping;
pub mod proposal;
pub mod remote_error;
pub mod secret_connection;
pub mod signature;
pub mod time;
pub mod validate;
Expand All @@ -20,7 +19,6 @@ pub use self::{
ping::{PingRequest, PingResponse, AMINO_NAME as PING_AMINO_NAME},
proposal::{SignProposalRequest, SignedProposalResponse, AMINO_NAME as PROPOSAL_AMINO_NAME},
remote_error::RemoteError,
secret_connection::AuthSigMessage,
signature::{SignableMsg, SignedMsgType},
time::TimeMsg,
validate::ConsensusMessage,
Expand Down
9 changes: 0 additions & 9 deletions tendermint/src/amino_types/secret_connection.rs

This file was deleted.

2 changes: 0 additions & 2 deletions tendermint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ pub mod node;
pub mod private_key;
pub mod public_key;
pub mod rpc;
pub mod secret_connection;
mod serializers;
pub mod signature;
pub mod time;
Expand All @@ -58,7 +57,6 @@ mod version;
pub mod vote;

pub use crate::genesis::Genesis;
pub use crate::secret_connection::SecretConnection;
pub use crate::{
block::Block,
error::{Error, ErrorKind},
Expand Down
Loading

0 comments on commit 538d5bc

Please sign in to comment.