[package]
name = "chasm-cli"
version = "1.1.2"
edition = "2021"
default-run = "chasm"
rust-version = "1.75"
description = "Universal chat session manager - harvest, merge, and analyze AI chat history from VS Code, Cursor, and other editors"
authors = ["Nervosys LLC <hello@nervosys.com>"]
license = "Apache-2.0"
repository = "https://github.com/nervosys/chasm-cli"
homepage = "https://github.com/nervosys/chasm-cli"
documentation = "https://docs.rs/chasm-cli"
readme = "README.md"
keywords = ["chat", "ai", "copilot", "session", "history"]
categories = ["command-line-utilities", "development-tools", "database"]
exclude = ["target/", "tests/fixtures/", ".github/", "*.db", "*.log"]
[dependencies]
clap = { version = "4.4", features = ["derive", "env"] }
tokio = { version = "1.34", features = ["full"] }
rayon = "1.10"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rusqlite = { version = "0.30", features = ["bundled"] }
walkdir = "2.4"
dirs = "5.0"
glob = "0.3"
urlencoding = "2.1"
uuid = { version = "1.6", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
tabled = "0.20"
colored = "2.1"
anyhow = "1.0"
thiserror = "1.0"
async-trait = "0.1"
sysinfo = "0.30"
ratatui = "0.30"
crossterm = "0.28"
reqwest = { version = "0.12", default-features = false, features = [
"json",
"blocking",
"cookies",
"rustls-tls",
] }
actix-web = { version = "4", default-features = false, features = [
"rustls-0_23",
] }
actix-http = { version = "3", features = ["ws"] }
actix-cors = "0.7"
async-stream = "0.3"
futures-util = { version = "0.3", features = ["sink"] }
base64 = "0.21"
aes-gcm = "0.10"
jsonwebtoken = "9.3"
sha2 = "0.10"
once_cell = "1.21.3"
regex = "1.12.2"
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = [
"Win32_Security_Cryptography",
"Win32_System_Memory",
"Win32_Foundation",
] }
[dev-dependencies]
tempfile = "3.9"
assert_cmd = "2.0"
predicates = "3.0"
[[bin]]
name = "chasm"
path = "src/main.rs"
[[bin]]
name = "csm-mcp"
path = "src/mcp/main.rs"
[profile.release]
lto = true
codegen-units = 1
strip = true