Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies and rust version #149

Merged
merged 4 commits into from
Apr 28, 2024
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@v1.0.7
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.72.0
toolchain: 1.77.2
components: rustfmt

- name: Run rustfmt
Expand All @@ -30,10 +30,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@v1.0.7
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
toolchain: 1.72.0
toolchain: 1.77.2
- name: Run clippy
run: cargo clippy --locked --all-targets --all-features --workspace -- -D warnings
timeout-minutes: 10
Expand All @@ -48,10 +48,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions-rs/toolchain@v1.0.7
- uses: dtolnay/rust-toolchain@stable
with:
name: test-${{matrix.os}}
toolchain: 1.72.0
toolchain: 1.77.2

- name: Run unit tests
run: cargo test --locked --all-targets --workspace --all-features
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ target/

# IDE
.idea/

# System Files
.DS_Store
Loading
Loading