Skip to content

Commit

Permalink
fix cargo deny check
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekleog-NEAR committed Aug 14, 2023
1 parent e2eda46 commit 743e3d3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
version: ">= 416.0.0"
- run: rustup default nightly
- run: opam install ocamlbuild
# See Cargo.toml for reasons
- run: cargo install --git https://github.com/Ekleog-NEAR/bolero --rev 362328af9f0539f9d6ee62bb4334afaa0a71b572
- run: opam exec -- cargo +nightly bolero build-clusterfuzz --all-features
- run: |
Expand Down
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@ wast = { version = "52", optional = true }

[dev-dependencies]
arbitrary = { version = "1.3", features = ["derive"] }
bolero = { git = "https://github.com/Ekleog-NEAR/bolero", rev = "362328af9f0539f9d6ee62bb4334afaa0a71b572", features = ["arbitrary"] }
criterion = "0.4.0"
# Need a fork of bolero for camshaft/bolero#161, #162 and #163. Also update fuzz.yml when they land.
bolero = { git = "https://github.com/Ekleog-NEAR/bolero", rev = "362328af9f0539f9d6ee62bb4334afaa0a71b572", version = "0.9.0", features = ["arbitrary"] }
criterion = "0.5.0"
rayon = "1.6.1"
tempfile = "3.5"
tempfile = "3.7"
walkdir = "2.3.0"
wasm-instrument = "0.4"
wasm-smith = "0.12"
Expand Down
11 changes: 9 additions & 2 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,17 @@ skip = [
{ name = "windows-sys" },
{ name = "windows-targets" },
{ name = "windows_x86_64_msvc" },
# wasmparser 0.105 requires:
{ name = "wasmparser", version = "0.105" },
{ name = "hashbrown", version = "0.12" },
{ name = "indexmap", version = "1.9" },
# bolero-generator-derive v0.9.2 requires:
{ name = "syn", version = "1.0" },
]

# our bolero fork requires:
[sources]
allow-git = ["https://github.com/Ekleog-NEAR/bolero?rev=362328af9f0539f9d6ee62bb4334afaa0a71b572#362328af9f0539f9d6ee62bb4334afaa0a71b572"]

[licenses]
allow = [
Expand All @@ -29,6 +38,4 @@ allow = [
ignore = [
# parity-wasm is only ever used for dev-dependencies
"RUSTSEC-2022-0061",
# atty is only ever used for dev-dependencies
"RUSTSEC-2021-0145",
]

0 comments on commit 743e3d3

Please sign in to comment.