Skip to content

Commit

Permalink
Merge pull request #93 from blandger/add_cargo_audit_command
Browse files Browse the repository at this point in the history
Add cargo audit command
  • Loading branch information
blandger authored Mar 14, 2024
2 parents 608d362 + 70feeae commit 14aa2eb
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 60 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- name: Install epub checker
run: sudo apt-get update -y && sudo apt-get upgrade -y && sudo apt-get install -y epubcheck
# - name: Install cargo audit
# run: cargo install cargo-audit
- name: Install cargo audit
run: cargo install cargo-audit
- name: Show rust version
run: cargo --version
- name: Build
Expand All @@ -29,7 +29,7 @@ jobs:
run: cargo test --verbose
- name: Run Clippy
run: cargo clippy -- --no-deps -Dwarnings
# - name: Audit
# run: cargo audit
- name: Audit
run: cargo audit
# - name: Rust format
# run: cargo fmt --check
112 changes: 57 additions & 55 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ handlebars = "4.3.7"
toml = "0.5.11" # downgraded due to parent 'mdbook' dependency and error there
html_parser = "0.7.0"
url = "2.3"
ureq = "2.5"
ureq = "2.9"
const_format = "0.2.31"

[dev-dependencies]
Expand Down

0 comments on commit 14aa2eb

Please sign in to comment.