Skip to content

Commit

Permalink
Merge pull request #801 from dusk-network/mocello/782
Browse files Browse the repository at this point in the history
Hide all modules except prelude
  • Loading branch information
moCello authored Dec 20, 2023
2 parents 97240ce + 5126831 commit 4b3568f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Improve InvalidCircuitSize error [#792]
- Hide all modules except 'prelude' [#782]

## [0.18.0] - 2023-12-13

Expand Down Expand Up @@ -545,6 +546,7 @@ is necessary since `rkyv/validation` was required as a bound.
[#796]: https://github.com/dusk-network/plonk/issues/796
[#792]: https://github.com/dusk-network/plonk/issues/792
[#784]: https://github.com/dusk-network/plonk/issues/784
[#782]: https://github.com/dusk-network/plonk/issues/782
[#773]: https://github.com/dusk-network/plonk/issues/773
[#774]: https://github.com/dusk-network/plonk/issues/774
[#763]: https://github.com/dusk-network/plonk/issues/763
Expand Down
18 changes: 9 additions & 9 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,24 +63,22 @@ if #[cfg(feature = "alloc")] {
extern crate alloc;

mod bit_iterator;
mod constraint_system;
mod composer;
mod permutation;
mod runtime;
mod util;
mod transcript;

pub mod constraint_system;
pub mod composer;
pub mod runtime;
});

mod fft;

#[cfg(feature = "debug")]
pub(crate) mod debugger;

pub mod commitment_scheme;
pub mod error;
pub mod prelude;
pub mod proof_system;
mod commitment_scheme;
mod error;
mod fft;
mod proof_system;

#[doc = include_str!("../docs/notes-intro.md")]
pub mod notes {
Expand All @@ -93,3 +91,5 @@ pub mod notes {
#[doc = include_str!("../docs/notes-KZG10.md")]
pub mod kzg10_docs {}
}

pub mod prelude;

0 comments on commit 4b3568f

Please sign in to comment.