[package]
edition = "2024"
name = "test-fuzz-runtime"
version = "7.3.0"
authors = ["Samuel E. Moelius III <sam@moeli.us>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "test-fuzz-runtime"
readme = "README.md"
license = "AGPL-3.0 WITH mif-exception"
repository = "https://github.com/trailofbits/test-fuzz"
resolver = "2"
[lib]
name = "test_fuzz_runtime"
path = "src/lib.rs"
[dependencies.hex]
version = "0.4"
[dependencies.internal]
version = "=7.3.0"
package = "test-fuzz-internal"
[dependencies.num-traits]
version = "0.2"
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.sha1]
version = "0.10"
[lints.clippy]
cognitive-complexity = "allow"
missing-errors-doc = "allow"
missing-panics-doc = "allow"
multiple-bound-locations = "allow"
option-if-let-else = "allow"
redundant-pub-crate = "allow"
result-large-err = "allow"
struct-field-names = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "deny"
priority = 0
check-cfg = [
"cfg(dylint_lib, values(any()))",
"cfg(fuzzing)",
"cfg(serde_default)",
]