Skip to content

Commit e4a3626

Browse files
committed
mls: remove test-utils feature
The `test-utils` feature was used just to allow re-export of a `NostrMlsMemoryStorage`, which is a dev-dependency. Remove that feature and the re-export. Signed-off-by: Yuki Kishimoto <[email protected]>
1 parent aae2c02 commit e4a3626

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

crates/nostr-mls/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ readme = "README.md"
1111
rust-version = "1.74.0"
1212
keywords = ["nostr", "mls", "openmls"]
1313

14-
[features]
15-
default = []
16-
test-utils = []
17-
1814
[dependencies]
1915
nostr = { workspace = true, features = ["std", "nip44"] }
2016
nostr-mls-storage.workspace = true

crates/nostr-mls/src/prelude.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@
99
#![doc(hidden)]
1010

1111
pub use nostr::prelude::*;
12-
// Re-export for tests and examples
13-
#[cfg(any(test, feature = "test-utils"))]
14-
pub use nostr_mls_memory_storage::NostrMlsMemoryStorage;
15-
// Re-export nostr-mls-storage types and traits
1612
pub use nostr_mls_storage::groups::{types as group_types, GroupStorage};
1713
pub use nostr_mls_storage::messages::{types as message_types, MessageStorage};
1814
pub use nostr_mls_storage::welcomes::{types as welcome_types, WelcomeStorage};

0 commit comments

Comments
 (0)