File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 63
63
//! # extern crate alloc;
64
64
//! use alloc::sync::Arc;
65
65
//!
66
- //! # use triptych::parameters::Parameters;
67
66
//! use curve25519_dalek::RistrettoPoint;
68
67
//! use merlin::Transcript;
69
68
//! use rand_core::OsRng;
70
- //! # use triptych::statement::InputSet;
71
- //! # use triptych::statement::Statement;
72
- //! # use triptych::witness::Witness;
73
- //! # use triptych::proof::Proof;
69
+ //! use triptych::*;
74
70
//!
75
71
//! let mut rng = OsRng;
76
72
//!
@@ -119,11 +115,15 @@ extern crate alloc;
119
115
pub ( crate ) mod gray;
120
116
/// Public parameters used for generating and verifying Triptych proofs.
121
117
pub mod parameters;
118
+ pub use parameters:: Parameters ;
122
119
/// Triptych proofs.
123
120
pub mod proof;
121
+ pub use proof:: Proof ;
124
122
/// Triptych proof statements.
125
123
pub mod statement;
124
+ pub use statement:: { InputSet , Statement } ;
126
125
/// Various utility functionality.
127
126
pub ( crate ) mod util;
128
127
/// Triptych proof witnesses.
129
128
pub mod witness;
129
+ pub use witness:: Witness ;
You can’t perform that action at this time.
0 commit comments