[package]
edition = "2021"
rust-version = "1.87"
name = "dejavu-cli"
version = "0.5.0"
build = false
exclude = [
"demo/",
"docs/",
"packaging/",
"scripts/",
".github/",
"install.sh",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Stop showing coding agents the same command output twice."
readme = "README.md"
keywords = [
"agents",
"cli",
"dedupe",
"path",
"output",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/Salnika/dejavu"
[lib]
name = "dejavu"
path = "src/lib.rs"
[[bin]]
name = "dejavu"
path = "src/bin/dejavu.rs"
[[test]]
name = "bench_repro"
path = "tests/bench_repro.rs"
[[test]]
name = "capture_storage"
path = "tests/capture_storage.rs"
[[test]]
name = "git_policy"
path = "tests/git_policy.rs"
[[test]]
name = "intercept_extra"
path = "tests/intercept_extra.rs"
[[test]]
name = "reduction_states"
path = "tests/reduction_states.rs"
[[test]]
name = "repos"
path = "tests/repos.rs"
[[test]]
name = "shellenv"
path = "tests/shellenv.rs"
[[test]]
name = "stats_all"
path = "tests/stats_all.rs"
[[test]]
name = "walking_skeleton"
path = "tests/walking_skeleton.rs"
[dependencies.anyhow]
version = "1.0.103"
[dependencies.chrono]
version = "0.4.45"
[dependencies.clap]
version = "4.6.1"
features = ["derive"]
[dependencies.dirs]
version = "6.0.0"
[dependencies.humantime]
version = "2.4.0"
[dependencies.regex]
version = "1.12.4"
[dependencies.rusqlite]
version = "0.37"
features = ["bundled"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.sha2]
version = "0.11.0"
[dependencies.similar]
version = "3.1.1"
[dependencies.strip-ansi-escapes]
version = "0.2.1"
[dependencies.terminal_size]
version = "0.4"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.toml]
version = "1.1.2"
[dependencies.uuid]
version = "1.23.4"
features = ["v4"]
[dev-dependencies.assert_cmd]
version = "2.2.2"
[dev-dependencies.insta]
version = "1.48.0"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.tempfile]
version = "3.27.0"
[profile.release]
lto = "thin"
strip = true