[package]
edition = "2021"
rust-version = "1.75"
name = "fallow-cov-protocol"
version = "0.3.0"
description = "Versioned JSON envelope types shared between the fallow CLI and the fallow-cov production-coverage sidecar."
homepage = "https://fallow.tools"
readme = "README.md"
keywords = [
"fallow",
"coverage",
"protocol",
"dead-code",
"v8",
]
categories = [
"development-tools",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/fallow-rs/fallow-cov-protocol"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = "symbols"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[lints.clippy]
allow_attributes_without_reason = "warn"
clone_on_ref_ptr = "warn"
dbg_macro = "warn"
doc_markdown = "allow"
empty_drop = "warn"
empty_structs_with_brackets = "warn"
exit = "warn"
filetype_is_file = "warn"
get_unwrap = "warn"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
print_stderr = "warn"
print_stdout = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
rest_pat_in_fully_bound_structs = "warn"
self_named_module_files = "warn"
todo = "warn"
undocumented_unsafe_blocks = "warn"
unimplemented = "warn"
unnecessary_safety_comment = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
non_ascii_idents = "warn"
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "warn"
unused_unsafe = "warn"