[package]
edition = "2024"
name = "json-carver"
version = "0.1.0"
authors = ["Hunter Domson <hunterdomson@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Digital forensics tool that reads (carves) JSON strings from a dump. Think of it
as a more accurate and faster replacement for the strings(1) utility.
"""
homepage = "https://github.com/hunterdomson/json-carver"
documentation = "https://docs.rs/json-carver"
readme = "README.md"
keywords = [
"json",
"digital-forensics",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hunterdomson/json-carver"
[lib]
name = "json_carver"
path = "src/lib.rs"
[[bin]]
name = "json-carver"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.40"
features = ["derive"]
[dependencies.memchr]
version = "2.7.5"
[dependencies.thiserror]
version = "2.0.12"
[dev-dependencies.rstest]
version = "0.25.0"