snapcat 0.2.5

High-performance directory tree traversal and file content extraction library with configurable filtering, binary detection, and streaming support.
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 = "2024"
name = "snapcat"
version = "0.2.5"
authors = ["neuxdotdev <neuxdev1@gmail.com>"]
build = false
exclude = [
    ".github/*",
    "tests/*",
    "target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance directory tree traversal and file content extraction library with configurable filtering, binary detection, and streaming support."
homepage = "https://github.com/neuxdotdev/snapcat"
documentation = "https://docs.rs/snapcat"
readme = "README.md"
keywords = [
    "filesystem",
    "tree",
    "cli",
    "code-analysis",
    "file-reader",
]
categories = [
    "filesystem",
    "command-line-utilities",
    "development-tools",
]
license = "AGPL-3.0-only"
license-file = "LICENSE"
repository = "https://github.com/neuxdotdev/snapcat"

[features]
default = ["parallel"]
logging = ["dep:tracing"]
parallel = ["dep:rayon"]
streaming = []

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

[[bin]]
name = "snapcat"
path = "app/snapcat.rs"

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

[dependencies.content_inspector]
version = "0.2"

[dependencies.globset]
version = "0.4"

[dependencies.ignore]
version = "0.4.25"

[dependencies.rayon]
version = "1.11"
optional = true

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tracing]
version = "0.1"
optional = true

[dev-dependencies.tempfile]
version = "3.25.0"