Skip to content

Commit

Permalink
chore: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
dutterbutter committed Oct 26, 2023
1 parent 1c342cc commit 30a97d1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
build-tests:
name: build tests
runs-on: ${{ matrix.os }}
timeout-minutes: 30
timeout-minutes: 60
needs: matrices
strategy:
fail-fast: false
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
doctests:
name: doc tests
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
Expand All @@ -130,7 +130,7 @@ jobs:
clippy:
name: clippy
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@clippy
Expand All @@ -144,7 +144,7 @@ jobs:
fmt:
name: fmt
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
Expand All @@ -155,7 +155,7 @@ jobs:
forge-fmt:
name: forge fmt
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
Expand All @@ -168,7 +168,7 @@ jobs:
feature-checks:
name: feature checks
runs-on: ubuntu-latest
timeout-minutes: 30
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
Expand Down
2 changes: 1 addition & 1 deletion crates/chisel/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#![warn(unused_extern_crates)]
#![forbid(unsafe_code)]
#![forbid(where_clauses_object_safety)]

#![allow(unused_imports)]
/// REPL input dispatcher module
pub mod dispatcher;

Expand Down
2 changes: 1 addition & 1 deletion crates/forge/bin/cmd/script/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ mod runner;
mod sequence;
pub mod transaction;
mod verify;

#[allow(unused_imports)]
pub use transaction::TransactionWithMetadata;

/// List of Chains that support Shanghai.
Expand Down
2 changes: 1 addition & 1 deletion crates/zkforge/bin/cmd/script/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ mod runner;
mod sequence;
pub mod transaction;
mod verify;

#[allow(unused_imports)]
pub use transaction::TransactionWithMetadata;

/// List of Chains that support Shanghai.
Expand Down

0 comments on commit 30a97d1

Please sign in to comment.