mirror of
https://github.com/uutils/tar.git
synced 2026-06-10 16:14:35 -07:00
9161cb6e2d
Updated uucore and uufuzz to 0.9.0 in fuzz/Cargo.toml. Resolved the resulting dependency conflicts by updating uucore in the root Cargo.lock to a compatible revision and updating fuzz/Cargo.lock. Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
32 lines
535 B
TOML
32 lines
535 B
TOML
[package]
|
|
name = "uucore-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2024"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
console = "0.16.0"
|
|
libfuzzer-sys = "0.4.7"
|
|
libc = "0.2.153"
|
|
tempfile = "3.15.0"
|
|
rand = { version = "0.10.0" }
|
|
similar = "3.0.0"
|
|
uucore = { version = "0.9.0", features = ["libc"] }
|
|
uufuzz = "0.9.0"
|
|
|
|
uu_tar = { path = "../src/uu/tar/" }
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "fuzz_tar"
|
|
path = "fuzz_targets/fuzz_tar.rs"
|
|
test = false
|
|
doc = false
|