Skip to content

Commit

Permalink
Adding debug and bumping dependenceis
Browse files Browse the repository at this point in the history
  • Loading branch information
phayes committed Apr 24, 2021
1 parent cbad5aa commit 8ec74ca
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ecies-ed25519"
version = "0.5.0"
version = "0.5.1"
authors = ["phayes <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -12,17 +12,17 @@ readme = "README.md"

[dependencies]
rand = "0.7.3"
curve25519-dalek = "3.0.0"
thiserror = "1.0.22"
hex = "0.4.2"
zeroize = "1.1.1"
curve25519-dalek = "3.1.0"
thiserror = "1.0.24"
hex = "0.4.3"
zeroize = "1.3.0"
# "serde" feature
serde = { version = "1.0.115", optional = true }
serde = { version = "1.0.125", optional = true }
# "ring" feature
ring = { version = "0.16.15", optional = true, features = [] }
ring = { version = "0.16.20", optional = true, features = [] }
# "pure_rust" feature
aes-gcm = { version = "0.8.0", optional = true }
sha2 = { version = "0.9.1", optional = true }
sha2 = { version = "0.9.3", optional = true }
digest = { version = "0.9.0", optional = true }
hkdf = { version = "0.10.0", optional = true }

Expand All @@ -31,5 +31,5 @@ default = ["pure_rust"]
pure_rust = ["aes-gcm", "sha2", "digest", "hkdf"]

[dev-dependencies]
serde_json = "1.0.57"
serde_json = "1.0.64"
serde_cbor = "0.11.1"
2 changes: 1 addition & 1 deletion src/keys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ impl SecretKey {
///
/// Neither this public key (nor it's corresponding PrivateKey) should be used for signing
/// or in any other protocol other than ECIES.
#[derive(Copy, Clone, Default, Eq, PartialEq)]
#[derive(Copy, Clone, Default, Eq, PartialEq, Debug)]
pub struct PublicKey(pub(crate) CompressedEdwardsY);

impl PublicKey {
Expand Down

0 comments on commit 8ec74ca

Please sign in to comment.