[[bin]]
name = "chasm-cli"
path = "src/main.rs"
[[bin]]
name = "csm-mcp"
path = "src/mcp/main.rs"
[dependencies.actix-cors]
version = "0.7"
[dependencies.actix-http]
features = ["ws"]
version = "3"
[dependencies.actix-web]
default-features = false
features = ["rustls-0_23"]
version = "4"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.21"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.clap]
features = ["derive", "env"]
version = "4.4"
[dependencies.colored]
version = "2.1"
[dependencies.crossterm]
version = "0.28"
[dependencies.dirs]
version = "5.0"
[dependencies.futures-util]
features = ["sink"]
version = "0.3"
[dependencies.glob]
version = "0.3"
[dependencies.jsonwebtoken]
version = "9.3"
[dependencies.ratatui]
version = "0.29"
[dependencies.reqwest]
default-features = false
features = ["json", "blocking", "cookies", "rustls-tls"]
version = "0.11"
[dependencies.rusqlite]
features = ["bundled"]
version = "0.30"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.sysinfo]
version = "0.30"
[dependencies.tabled]
version = "0.15"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["full"]
version = "1.34"
[dependencies.urlencoding]
version = "2.1"
[dependencies.uuid]
features = ["v4"]
version = "1.6"
[dependencies.walkdir]
version = "2.4"
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.predicates]
version = "3.0"
[dev-dependencies.tempfile]
version = "3.9"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "cloud_providers"
path = "examples/cloud_providers.rs"
[[example]]
name = "history_management"
path = "examples/history_management.rs"
[[example]]
name = "local_providers"
path = "examples/local_providers.rs"
[[example]]
name = "session_operations"
path = "examples/session_operations.rs"
[[example]]
name = "storage_operations"
path = "examples/storage_operations.rs"
[lib]
name = "chasm_cli"
path = "src/lib.rs"
[package]
authors = ["Nervosys LLC <hello@nervosys.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools", "database"]
description = "Universal chat session manager - harvest, merge, and analyze AI chat history from VS Code, Cursor, and other editors"
documentation = "https://docs.rs/chasm"
edition = "2021"
exclude = ["target/", "tests/fixtures/", ".github/", "*.db", "*.log"]
homepage = "https://github.com/nervosys/chasm"
keywords = ["chat", "ai", "copilot", "session", "history"]
license = "Apache-2.0"
name = "chasm-cli"
readme = "README.md"
repository = "https://github.com/nervosys/chasm"
rust-version = "1.75"
version = "1.0.0"
[profile.release]
codegen-units = 1
lto = true
strip = true
[target."cfg(windows)".dependencies.windows]
features = ["Win32_Security_Cryptography", "Win32_System_Memory", "Win32_Foundation"]
version = "0.58"
[[test]]
name = "browser_tests"
path = "tests/browser_tests.rs"
[[test]]
name = "cli_integration_tests"
path = "tests/cli_integration_tests.rs"
[[test]]
name = "cloud_provider_tests"
path = "tests/cloud_provider_tests.rs"
[[test]]
name = "detect_tests"
path = "tests/detect_tests.rs"
[[test]]
name = "error_tests"
path = "tests/error_tests.rs"
[[test]]
name = "git_tracking_tests"
path = "tests/git_tracking_tests.rs"
[[test]]
name = "harvest_tests"
path = "tests/harvest_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "merge_tests"
path = "tests/merge_tests.rs"
[[test]]
name = "models_tests"
path = "tests/models_tests.rs"
[[test]]
name = "provider_tests"
path = "tests/provider_tests.rs"
[[test]]
name = "session_format_tests"
path = "tests/session_format_tests.rs"
[[test]]
name = "storage_tests"
path = "tests/storage_tests.rs"
[[test]]
name = "workspace_tests"
path = "tests/workspace_tests.rs"