Skip to content

Commit e7f0bc6

Browse files
authored
chore: switch to cargo-deny and fix some lints (#2111)
- Update url dependency. We don't use it directly, but wasmtime does. - Update the builtin actors (dev) dependency to remove some crufty dependencies. - Add licenses everywhere.
1 parent ac25034 commit e7f0bc6

File tree

33 files changed

+259
-368
lines changed

33 files changed

+259
-368
lines changed

.github/workflows/audit.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/deny.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# This workflow will run `cargo-deny`, checking for dependency issues related to licensing, known vulnerabilities, and more.
2+
# The configuration file is in [deny.toml](../../deny.toml).
3+
name: Cargo Deny
4+
on:
5+
push:
6+
branches:
7+
- master
8+
pull_request:
9+
merge_group:
10+
11+
jobs:
12+
cargo-deny:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: EmbarkStudios/cargo-deny-action@v2
17+
with:
18+
rust-version: "1.81.0"

0 commit comments

Comments
 (0)