Skip to content

Commit 82fc405

Browse files
committed
Support cargo-fuzz
1 parent 41e81ec commit 82fc405

File tree

4 files changed

+81
-0
lines changed

4 files changed

+81
-0
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
1212

1313
- Support `sccache`. ([#390](https://github.com/taiki-e/install-action/pull/390))
1414

15+
- Support `cargo-fuzz`. ([#352](https://github.com/taiki-e/install-action/pull/352))
16+
1517
## [2.27.15] - 2024-03-02
1618

1719
- Support `biome` on x86_64/aarch64 Linux (musl).

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ https://spdx.org/licenses
8888
| [**cargo-deny**](https://github.com/EmbarkStudios/cargo-deny) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/EmbarkStudios/cargo-deny/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/EmbarkStudios/cargo-deny/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/EmbarkStudios/cargo-deny/blob/HEAD/LICENSE-MIT) |
8989
| [**cargo-dinghy**](https://github.com/sonos/dinghy) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/sonos/dinghy/releases) | Linux, macOS | [Apache-2.0](https://github.com/sonos/dinghy/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/sonos/dinghy/blob/HEAD/LICENSE-MIT) |
9090
| [**cargo-export**](https://github.com/bazhenov/cargo-export) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/bazhenov/cargo-export/releases) | Linux, macOS, Windows | [MIT](https://github.com/bazhenov/cargo-export/blob/HEAD/LICENSE) |
91+
| [**cargo-fuzz**](https://github.com/rust-fuzz/cargo-fuzz) | `$CARGO_HOME/bin` | [GitHub Release](https://github.com/rust-fuzz/cargo-fuzz/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/rust-fuzz/cargo-fuzz/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/rust-fuzz/cargo-fuzz/blob/HEAD/LICENSE-MIT) |
9192
| [**cargo-hack**](https://github.com/taiki-e/cargo-hack) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/cargo-hack/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/taiki-e/cargo-hack/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-hack/blob/HEAD/LICENSE-MIT) |
9293
| [**cargo-llvm-cov**](https://github.com/taiki-e/cargo-llvm-cov) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/taiki-e/cargo-llvm-cov/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/taiki-e/cargo-llvm-cov/blob/HEAD/LICENSE-APACHE) OR [MIT](https://github.com/taiki-e/cargo-llvm-cov/blob/HEAD/LICENSE-MIT) |
9394
| [**cargo-machete**](https://github.com/bnjbvr/cargo-machete) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/bnjbvr/cargo-machete/releases) | Linux, macOS, Windows | [MIT](https://github.com/bnjbvr/cargo-machete/blob/HEAD/LICENSE.md) |

manifests/cargo-fuzz.json

+64
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/codegen/base/cargo-fuzz.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"repository": "https://github.com/rust-fuzz/cargo-fuzz",
3+
"tag_prefix": "",
4+
"rust_crate": "${package}",
5+
"broken": ["0.11.3", "0.11.4", "0.12.0"],
6+
"asset_name": "${package}-${version}-${rust_target}.tar.gz",
7+
"platform": {
8+
"x86_64_linux_musl": {},
9+
"x86_64_macos": {},
10+
"x86_64_windows": {
11+
"asset_name": "${package}-${version}-${rust_target}.zip"
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)