Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide all modules except prelude #801

Merged
merged 1 commit into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
Loading