Skip to content

Commit 646abb7

Browse files
committed
Move extend to dev
1 parent 9f99dc9 commit 646abb7

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

examples/src/simple_test.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
use alloc::collections::BTreeSet;
22

33
use manul::{
4-
combinators::extend::{ExtendableEntryPoint, RoundExtension},
5-
dev::{run_sync, BinaryFormat, TestSessionParams, TestSigner},
4+
dev::{run_sync, BinaryFormat, ExtendableEntryPoint, RoundExtension, TestSessionParams, TestSigner},
65
protocol::{LocalError, PartyId},
76
signature::Keypair,
87
};

manul/src/combinators.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
//! Combinators operating on protocols.
22
33
pub mod chain;
4-
pub mod extend;

manul/src/dev.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ which in turn is used to setup [`Session`](crate::session::Session)s to drive th
88
The [`run_sync()`] method is helpful to execute a protocol synchronously and collect the outcomes.
99
*/
1010

11+
mod extend;
1112
mod run_sync;
1213
mod session_parameters;
1314
mod wire_format;
1415

1516
#[cfg(feature = "tokio")]
1617
pub mod tokio;
1718

19+
pub use extend::{ExtendableEntryPoint, RoundExtension};
1820
pub use run_sync::{run_sync, ExecutionResult};
1921
pub use session_parameters::{TestHasher, TestSessionParams, TestSignature, TestSigner, TestVerifier};
2022
pub use wire_format::{BinaryFormat, HumanReadableFormat};
File renamed without changes.

0 commit comments

Comments
 (0)