Skip to content
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
1 change: 0 additions & 1 deletion plonky2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ harness = false
# Display math equations properly in documentation
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", ".cargo/katex-header.html"]
cargo-args = ["--no-deps"]

[lints]
workspace = true
1 change: 0 additions & 1 deletion starky/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ env_logger = { version = "0.9.0", default-features = false }
# Display math equations properly in documentation
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", ".cargo/katex-header.html"]
cargo-args = ["--no-deps"]

[lints]
workspace = true
4 changes: 2 additions & 2 deletions starky/src/proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ pub struct StarkProofChallengesTarget<const D: usize> {
/// `Target`s for the randomness used in FRI.
pub fri_challenges: FriChallengesTarget<D>,
}

/// Randomness for all STARK proofs contained in a [`MultiProof`]`.
/// Randomness for all STARK proofs contained in a MultiProof.
// TODO: remove?
#[derive(Debug)]
pub struct MultiProofChallenges<F: RichField + Extendable<D>, const D: usize, const N: usize> {
/// Randomness used in each STARK proof.
Expand Down
Loading