[package]
edition = "2024"
name = "shellist"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shell history analysis. Parses .bash_history, counts commands, and ranks by frequency."
documentation = "https://docs.rs/shellist"
readme = "README.md"
keywords = [
"shell",
"history",
"bash",
"cli",
"analytics",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/ultraelectronica/shellist"
[lib]
name = "shellist"
path = "src/lib.rs"
[[bin]]
name = "shellist"
path = "src/main.rs"
[[test]]
name = "parser_integration_tests"
path = "tests/parser_integration_tests.rs"
[[bench]]
name = "pipeline"
path = "benches/pipeline.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]