Skip to content

Commit

Permalink
export signature and signature error
Browse files Browse the repository at this point in the history
  • Loading branch information
tyrchen committed Mar 9, 2021
1 parent 96d5b74 commit a40177e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cellar-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "cellar-core"
# - README.md
# - Update CHANGELOG.md.
# - Create git tag.
version = "0.3.1"
version = "0.3.2"
authors = ["Tyr Chen <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
4 changes: 3 additions & 1 deletion cellar-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ use serde::{Deserialize, Serialize};
use zeroize::{Zeroize, Zeroizing};

// reexport ed25519_dalek data structure
pub use ed25519_dalek::{Keypair, PublicKey, SecretKey, Signer, Verifier};
pub use ed25519_dalek::{
Keypair, PublicKey, SecretKey, Signature, SignatureError, Signer, Verifier,
};

mod error;
pub use error::CellarError;
Expand Down

0 comments on commit a40177e

Please sign in to comment.