boreal-cli 1.0.0

CLI utility to run boreal, a YARA rules engine
[[bin]]
name = "boreal"
path = "src/main.rs"

[dependencies.boreal]
version = "1.0.0"

[dependencies.clap]
features = ["cargo"]
version = "4.5"

[dependencies.codespan-reporting]
version = "0.12"

[dependencies.crossbeam-channel]
version = "0.5"

[dependencies.hex]
version = "0.4"

[dependencies.walkdir]
version = "2.5"

[dev-dependencies.assert_cmd]
version = "2.0"

[dev-dependencies.predicates]
default-features = false
features = ["regex"]
version = "3.1"

[dev-dependencies.tempfile]
version = "3.10"

[features]
authenticode = ["boreal/authenticode"]
authenticode-verify = ["boreal/authenticode-verify"]
cuckoo = ["boreal/cuckoo"]
default = ["authenticode", "memmap", "profiling", "serialize"]
memmap = ["boreal/memmap"]
profiling = ["boreal/profiling"]
serialize = ["boreal/serialize"]

[lints.clippy]
inline_always = "allow"
match_same_arms = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
single_match_else = "allow"
struct_excessive_bools = "allow"
struct_field_names = "allow"
too_many_lines = "allow"
undocumented_unsafe_blocks = "deny"
unnested_or_patterns = "allow"

[lints.clippy.all]
level = "deny"
priority = -1

[lints.clippy.cargo]
level = "deny"
priority = -1

[lints.clippy.pedantic]
level = "deny"
priority = -1

[lints.rust]
ambiguous_negative_literals = "deny"
deprecated_safe_2024 = "deny"
explicit_outlives_requirements = "deny"
impl_trait_overcaptures = "deny"
keyword_idents_2024 = "deny"
let_underscore_drop = "deny"
macro_use_extern_crate = "deny"
missing_abi = "deny"
missing_docs = "deny"
missing_unsafe_on_extern = "deny"
non_ascii_idents = "deny"
redundant_lifetimes = "deny"
rust_2024_guarded_string_incompatible_syntax = "deny"
rust_2024_incompatible_pat = "deny"
rust_2024_prelude_collisions = "deny"
single_use_lifetimes = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
unit_bindings = "deny"
unsafe_attr_outside_unsafe = "deny"
unsafe_code = "deny"
unsafe_op_in_unsafe_fn = "deny"
unused_crate_dependencies = "deny"
unused_extern_crates = "deny"
unused_import_braces = "deny"
unused_lifetimes = "deny"
unused_macro_rules = "deny"
unused_qualifications = "deny"
unused_results = "deny"
variant_size_differences = "deny"

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(coverage_nightly)"]
level = "warn"
priority = 0

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "text-processing"]
description = "CLI utility to run boreal, a YARA rules engine"
edition = "2021"
keywords = ["boreal", "yara", "string-matching", "scan"]
license = "MIT OR Apache-2.0"
name = "boreal-cli"
readme = "README.md"
repository = "https://github.com/vthib/boreal"
version = "1.0.0"

[[test]]
name = "cli"
path = "tests/cli.rs"