[package]
name = "boreal-cli"
version = "0.9.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 = "2021"
[[bin]]
name = "boreal"
path = "src/main.rs"
[features]
default = ["authenticode", "memmap", "profiling"]
authenticode = ["boreal/authenticode"]
authenticode-verify = ["boreal/authenticode-verify"]
memmap = ["boreal/memmap"]
profiling = ["boreal/profiling"]
[dependencies]
boreal = { path = "../boreal", version = "0.9.0" }
clap = { version = "4.5", features = ["cargo"] }
codespan-reporting = "0.11"
crossbeam-channel = "0.5"
hex = "0.4"
walkdir = "2.5"
[dev-dependencies]
assert_cmd = "2.0"
tempfile = "3.10"
predicates = { version = "3.1", default-features = false, features = ["regex"] }