[package]
edition = "2021"
name = "chik-fuzzing"
version = "0.28.1"
authors = ["Jack Nelson <j.nelson@chiknetwork.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fuzzing tools for Chik Projects on Rust"
homepage = "https://github.com/Chik-Network/chik_rs"
readme = false
license = "Apache-2.0"
repository = "https://github.com/Chik-Network/chik_rs"
[package.metadata]
cargo-fuzz = true
[lib]
name = "chik_fuzzing"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.97"
[dependencies.arbitrary]
version = "1.4.1"
features = ["derive"]
[dependencies.chik-sha2]
version = "0.28.1"
[dependencies.klvmr]
version = "0.16.0"
features = ["counters"]
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
implicit_hasher = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
too_many_lines = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
dead_code = "deny"
deprecated = "deny"
deprecated_in_future = "deny"
non_ascii_idents = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
unreachable_code = "deny"
unreachable_patterns = "deny"
unsafe_code = "deny"
unused_import_braces = "deny"
unused_imports = "warn"
[lints.rust.future_incompatible]
level = "deny"
priority = -1
[lints.rust.nonstandard_style]
level = "deny"
priority = -1
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1
[lints.rust.rust_2021_compatibility]
level = "deny"
priority = -1