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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Install Rust
run: |
rustup component add --toolchain nightly rustfmt
rustup component add rustfmt
rustup component add clippy
rustc --version
cargo --version
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:

- name: Install Rust
run: |
rustup component add --toolchain nightly rustfmt
rustup component add rustfmt
rustup component add clippy
rustc --version
cargo --version
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ build: pre
cargo build --examples --features=experimental

format:
cargo +nightly fmt --all
cargo fmt --all

pre:
cargo +nightly fmt --all -- --check
cargo fmt --all -- --check
cargo deny check licenses
cargo clippy --all-targets
cargo clippy --all-targets --no-default-features
Expand Down
2 changes: 0 additions & 2 deletions rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
group_imports = "StdExternalCrate"
imports_granularity = "Item"
max_width = 100
style_edition = "2024"