[package]
name = "boreal-cli"
version = "0.4.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"]
memmap = ["boreal/memmap"]
profiling = ["boreal/profiling"]
[dependencies]
boreal = { path = "../boreal", version = "0.4.0" }
clap = { version = "4.3", features = ["cargo"] }
codespan-reporting = "0.11"
crossbeam-channel = "0.5"
hex = "0.4"
walkdir = "2.4"
[dev-dependencies]
assert_cmd = "2.0"
tempfile = "3.8"
predicates = { version = "3.0", default-features = false, features = ["regex"] }