[package]
edition = "2024"
rust-version = "1.97.1"
name = "tarseer-cli"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Walks a directory tree and prints it as JSON Lines, or writes the lines and an index as a zstd file"
readme = "README.md"
keywords = [
"filesystem",
"directory",
"walk",
"index",
"zstd",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "Apache-2.0"
repository = "https://github.com/borink-org/tarseer"
[[bin]]
name = "tarseer"
path = "src/main.rs"
doc = false
[dependencies.clap]
version = "4"
features = [
"std",
"help",
"usage",
"error-context",
]
default-features = false
[dependencies.cyo-mimalloc]
version = "0.0.1"
[dependencies.error-stack]
version = "0.8"
[dependencies.tarseer]
version = "0.0.1"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(tarseer_portable_reader)"]