execheck 0.2.0

Multi-platform executable security checker for Linux (ELF), Windows (PE), and macOS (Mach-O)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "execheck"
version = "0.2.0"
authors = ["Vlatko Kosturjak"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Multi-platform executable security checker for Linux (ELF), Windows (PE), and macOS (Mach-O)"
readme = "README.md"
keywords = [
    "security",
    "elf",
    "pe",
    "macho",
    "binary-analysis",
]
categories = [
    "command-line-utilities",
    "development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kost/execheck"

[lib]
name = "execheck"
path = "src/lib.rs"

[[bin]]
name = "execheck"
path = "src/main.rs"

[[example]]
name = "advanced_filtering"
path = "examples/advanced_filtering.rs"

[[example]]
name = "custom_filter"
path = "examples/custom_filter.rs"

[[example]]
name = "directory_scan"
path = "examples/directory_scan.rs"

[[example]]
name = "fat_binary_analysis"
path = "examples/fat_binary_analysis.rs"

[[example]]
name = "json_output"
path = "examples/json_output.rs"

[[example]]
name = "simple_analysis"
path = "examples/simple_analysis.rs"

[dependencies.anyhow]
version = "1.0"

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

[dependencies.colored]
version = "2.0"

[dependencies.csv]
version = "1.3"

[dependencies.goblin]
version = "0.8"

[dependencies.quick-xml]
version = "0.36"
features = ["serialize"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.walkdir]
version = "2.5"