mirror of
https://gitee.com/openharmony/third_party_rust_rust-base64
synced 2024-12-02 10:16:37 +00:00
39 lines
685 B
TOML
39 lines
685 B
TOML
|
|
[package]
|
|
name = "base64-fuzz"
|
|
version = "0.0.1"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
rand = "0.6.1"
|
|
rand_pcg = "0.1.1"
|
|
ring = "0.13.5"
|
|
[dependencies.base64]
|
|
path = ".."
|
|
[dependencies.libfuzzer-sys]
|
|
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "roundtrip"
|
|
path = "fuzzers/roundtrip.rs"
|
|
|
|
[[bin]]
|
|
name = "roundtrip_no_pad"
|
|
path = "fuzzers/roundtrip_no_pad.rs"
|
|
|
|
[[bin]]
|
|
name = "roundtrip_random_config"
|
|
path = "fuzzers/roundtrip_random_config.rs"
|
|
|
|
[[bin]]
|
|
name = "decode_random"
|
|
path = "fuzzers/decode_random.rs"
|