[package]
edition = "2024"
rust-version = "1.85"
name = "seshat-cli"
version = "0.4.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI commands and TUI for Seshat"
readme = false
license = "MIT"
resolver = "2"
[lib]
name = "seshat_cli"
path = "src/lib.rs"
[[test]]
name = "cross_branch_decisions"
path = "tests/cross_branch_decisions.rs"
[[test]]
name = "cross_branch_workspace_crates"
path = "tests/cross_branch_workspace_crates.rs"
[[test]]
name = "decisions_export_import"
path = "tests/decisions_export_import.rs"
[[test]]
name = "decisions_forget"
path = "tests/decisions_forget.rs"
[[test]]
name = "git_unavailable_fallback"
path = "tests/git_unavailable_fallback.rs"
[[test]]
name = "init_instructions"
path = "tests/init_instructions.rs"
[[test]]
name = "review_freshness"
path = "tests/review_freshness.rs"
[[test]]
name = "scan_records_head"
path = "tests/scan_records_head.rs"
[[test]]
name = "serve_freshness"
path = "tests/serve_freshness.rs"
[[test]]
name = "serve_head_change"
path = "tests/serve_head_change.rs"
[[test]]
name = "tui_review_integration"
path = "tests/tui_review_integration.rs"
[[test]]
name = "uninstall"
path = "tests/uninstall.rs"
[[test]]
name = "worktree_integration"
path = "tests/worktree_integration.rs"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.crossterm]
version = "0.29.0"
[dependencies.dirs]
version = "6"
[dependencies.flate2]
version = "1"
[dependencies.gix]
version = "0.83"
features = [
"max-performance-safe",
"blob-diff",
"sha1",
]
default-features = false
[dependencies.globset]
version = "0.4"
[dependencies.indicatif]
version = "0.18"
[dependencies.owo-colors]
version = "4"
[dependencies.ratatui]
version = "0.30"
[dependencies.rusqlite]
version = "0.38"
features = [
"bundled",
"modern_sqlite",
"trace",
]
[dependencies.self-replace]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.seshat-core]
version = "0.4.0"
[dependencies.seshat-detectors]
version = "0.4.0"
[dependencies.seshat-embedding]
version = "0.4.0"
[dependencies.seshat-graph]
version = "0.4.0"
[dependencies.seshat-mcp]
version = "0.4.0"
[dependencies.seshat-scanner]
version = "0.4.0"
[dependencies.seshat-storage]
version = "0.4.0"
[dependencies.seshat-watcher]
version = "0.4.0"
[dependencies.sha2]
version = "0.11"
[dependencies.tar]
version = "0.4"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"signal",
"time",
]
[dependencies.toml]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.unicode-width]
version = "0.2"
[dependencies.ureq]
version = "3"
features = ["json"]
[dependencies.which]
version = "8"
[dependencies.zip]
version = "8"
features = ["deflate"]
default-features = false
[dev-dependencies.gix]
version = "0.83"
features = [
"max-performance-safe",
"blob-diff",
"sha1",
]
default-features = false
[dev-dependencies.seshat-core]
version = "0.4.0"
features = ["test-helpers"]
[dev-dependencies.tempfile]
version = "3"