Skip to content
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
8 changes: 4 additions & 4 deletions ecdsa/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ pub mod dev;
pub mod hazmat;

#[cfg(feature = "sign")]
mod sign;
mod signing;

#[cfg(feature = "verify")]
mod verify;
mod verifying;

pub use crate::recovery::RecoveryId;

Expand All @@ -87,11 +87,11 @@ pub use signature::{self, Error, Result, SignatureEncoding};

#[cfg(feature = "sign")]
#[cfg_attr(docsrs, doc(cfg(feature = "sign")))]
pub use crate::sign::SigningKey;
pub use crate::signing::SigningKey;

#[cfg(feature = "verify")]
#[cfg_attr(docsrs, doc(cfg(feature = "verify")))]
pub use crate::verify::VerifyingKey;
pub use crate::verifying::VerifyingKey;

use core::{
fmt::{self, Debug},
Expand Down
File renamed without changes.
File renamed without changes.