Skip to content

Commit

Permalink
feat(cargo): Bump cargo versions
Browse files Browse the repository at this point in the history
Signed-off-by: dark0dave <[email protected]>
  • Loading branch information
dark0dave committed Nov 10, 2023
1 parent 4acd287 commit 15516c0
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 55 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/safety.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
name: safety
jobs:
miri:
name: "Miri"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
rustup override set nightly
cargo miri setup
- name: Test with Miri
run: cargo miri test
env:
MIRIFLAGS: '-Zmiri-backtrace=full'
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-added-large-files
exclude: (?x)^(docs)
Expand All @@ -18,14 +18,14 @@ repos:
- id: git-dirty

- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.5.1
rev: v1.5.4
hooks:
- id: forbid-crlf
- id: remove-crlf
files: '*rs'

- repo: https://github.com/commitizen-tools/commitizen
rev: v2.42.1
rev: 3.12.0
hooks:
- id: commitizen
stages: [commit-msg]
Expand Down
84 changes: 32 additions & 52 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 15516c0

Please sign in to comment.