diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 640074b..7965a94 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -6,9 +6,6 @@ on: pull_request: branches: - "**" - workflow_dispatch: - branches: - - "**" jobs: test: diff --git a/Cargo.toml b/Cargo.toml index 31c2d49..aaaf5f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,8 +10,8 @@ edition = "2021" anyhow = { version = "1.0.40", default-features = false } itertools = { version = "0.10.0", default-features = false } num = { version = "0.4", default-features = false } -plonky2 = { git = "https://github.com/0xPolygonZero/plonky2" } +plonky2 = { git = "https://github.com/0xPARC/plonky2" } [dev-dependencies] rand = { version = "0.8.4", default-features = false, features = ["getrandom"] } -plonky2 = { git = "https://github.com/0xPolygonZero/plonky2" } +plonky2 = { git = "https://github.com/0xPARC/plonky2" } diff --git a/src/gadgets/arithmetic_u32.rs b/src/gadgets/arithmetic_u32.rs index bbc31e7..7fc686e 100644 --- a/src/gadgets/arithmetic_u32.rs +++ b/src/gadgets/arithmetic_u32.rs @@ -235,7 +235,7 @@ impl, const D: usize> CircuitBuilderU32 } } -#[derive(Debug)] +#[derive(Clone, Debug)] struct SplitToU32Generator, const D: usize> { x: Target, low: U32Target, diff --git a/src/gates/comparison.rs b/src/gates/comparison.rs index 4c055b2..6d9eceb 100644 --- a/src/gates/comparison.rs +++ b/src/gates/comparison.rs @@ -414,7 +414,7 @@ impl, const D: usize> PackedEvaluableBase } } -#[derive(Debug)] +#[derive(Clone, Debug)] struct ComparisonGenerator, const D: usize> { row: usize, gate: ComparisonGate, diff --git a/src/gates/range_check_u32.rs b/src/gates/range_check_u32.rs index c9cfc12..98ec61b 100644 --- a/src/gates/range_check_u32.rs +++ b/src/gates/range_check_u32.rs @@ -176,7 +176,7 @@ impl, const D: usize> Gate for U32RangeCheckG } } -#[derive(Debug)] +#[derive(Clone, Debug)] pub struct U32RangeCheckGenerator, const D: usize> { gate: U32RangeCheckGate, row: usize,