Skip to content

Commit

Permalink
chore: Fix clippy in CI (#464)
Browse files Browse the repository at this point in the history
* Fix clippy in CI
  • Loading branch information
adamspofford-dfinity authored Aug 25, 2023
1 parent 4afb978 commit 523e93e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
rustup default ${{ matrix.rust }}
rustup target add wasm32-unknown-unknown
- name: Run Lint
run: cargo clippy --verbose --tests --benches -- -D clippy::all
run: cargo clippy --verbose --tests --benches -- -D warnings
env:
RUST_BACKTRACE: 1
- name: Run Lint (WASM)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ rust-version = "1.65.0"
license = "Apache-2.0"

[workspace.dependencies]
ic-agent = { path = "ic-agent", version = "0.26.1" }
ic-agent = { path = "ic-agent", version = "0.26.1", default-features = false }
ic-utils = { path = "ic-utils", version = "0.26.1" }
ic-certification = { path = "ic-certification", version = "0.26.1" }

Expand Down
2 changes: 1 addition & 1 deletion ic-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ semver = "1.0.7"
once_cell = "1.10.0"

[dev-dependencies]
ic-agent = { workspace = true }
ic-agent = { workspace = true, default-features = true }
ring = { workspace = true }
tokio = { workspace = true, features = ["full"] }

Expand Down
2 changes: 1 addition & 1 deletion icx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ candid = { workspace = true, features = ["parser"] }
clap = { version = "3.0.14", features = ["derive", "cargo"] }
hex = { workspace = true }
humantime = "2.0.1"
ic-agent = { workspace = true }
ic-agent = { workspace = true, default-features = true }
ic-utils = { workspace = true }
ring = { workspace = true }
serde = { workspace = true }
Expand Down

0 comments on commit 523e93e

Please sign in to comment.