Remove uneeded export

This commit is contained in:
Jazz Turner-Baggs 2026-01-30 10:19:08 -08:00
parent b6e19cd9ea
commit 649625311f
No known key found for this signature in database
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,5 @@
use generic_array::{GenericArray, typenum::U32};
use std::fmt::Debug;
pub use generic_array::{GenericArray, typenum::U32};
use zeroize::{Zeroize, ZeroizeOnDrop};
#[derive(Clone, Zeroize, ZeroizeOnDrop, PartialEq)]

View File

@ -1,5 +1,5 @@
mod keys;
mod x3dh;
pub use keys::{GenericArray, SecretKey};
pub use keys::SecretKey32;
pub use x3dh::{DomainSeparator, PrekeyBundle, X3Handshake};