[package]
name = "boreal-cli"
version = "1.2.0"
description = "CLI utility to run boreal, a YARA rules engine"
repository = "https://github.com/vthib/boreal"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["boreal", "yara", "string-matching", "scan"]
categories = ["command-line-utilities", "text-processing"]
edition = "2024"
[[bin]]
name = "boreal"
path = "src/main.rs"
[features]
default = ["authenticode", "memmap", "profiling", "serialize"]
authenticode = ["boreal/authenticode"]
authenticode-verify = ["boreal/authenticode-verify"]
memmap = ["boreal/memmap"]
profiling = ["boreal/profiling"]
serialize = ["boreal/serialize"]
cuckoo = ["boreal/cuckoo"]
[dependencies]
boreal = { path = "../boreal", version = "1.2.0" }
clap = { version = "4.6", features = ["cargo"] }
codespan-reporting.workspace = true
crossbeam-channel = "0.5"
hex = "0.4"
walkdir = "2.5"
[dev-dependencies]
assert_cmd = "2.2"
tempfile.workspace = true
predicates = { version = "3.1", default-features = false, features = ["regex"] }
[lints]
workspace = true