Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove secret_connection and ring dependency #60

Merged
merged 1 commit into from
Nov 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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