[package]
edition = "2024"
rust-version = "1.95"
name = "claudex"
version = "0.12.0"
authors = ["James Brink <brink.james@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable library for indexing and querying Claude Code, Codex, Copilot, Pi, and OpenClaw coding sessions"
homepage = "https://utensils.io/claudex/"
documentation = "https://utensils.io/claudex/"
readme = "README.md"
keywords = [
"claude",
"claude-code",
"sessions",
"codex",
"copilot",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/utensils/claudex"
[lib]
name = "claudex"
path = "src/lib.rs"
[[test]]
name = "api_tests"
path = "tests/api_tests.rs"
[[test]]
name = "index_store_tests"
path = "tests/index_store_tests.rs"
[[test]]
name = "index_tests"
path = "tests/index_tests.rs"
[[test]]
name = "providers_tests"
path = "tests/providers_tests.rs"
[[test]]
name = "retention_tests"
path = "tests/retention_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.dirs]
version = "6"
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"