diff --git a/plonky2/Cargo.toml b/plonky2/Cargo.toml index 8f1bf87ee3..17128c289d 100644 --- a/plonky2/Cargo.toml +++ b/plonky2/Cargo.toml @@ -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 diff --git a/starky/Cargo.toml b/starky/Cargo.toml index 1e8538fe2b..80d1f3d949 100644 --- a/starky/Cargo.toml +++ b/starky/Cargo.toml @@ -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 diff --git a/starky/src/proof.rs b/starky/src/proof.rs index 2d71d8708c..230acc2742 100644 --- a/starky/src/proof.rs +++ b/starky/src/proof.rs @@ -189,8 +189,8 @@ pub struct StarkProofChallengesTarget { /// `Target`s for the randomness used in FRI. pub fri_challenges: FriChallengesTarget, } - -/// 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, const D: usize, const N: usize> { /// Randomness used in each STARK proof.