[package]
edition = "2021"
name = "chub-core"
version = "0.1.21"
authors = ["Viet-Anh Nguyen <vietanh.dev@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Chub: agent-agnostic context, tracking, and cost analytics for AI-assisted development"
homepage = "https://github.com/nrl-ai/chub"
readme = "README.md"
keywords = [
"ai",
"documentation",
"mcp",
"context",
"coding-agent",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/nrl-ai/chub"
[lib]
name = "chub_core"
path = "src/lib.rs"
[[test]]
name = "context_e2e"
path = "tests/context_e2e.rs"
[[test]]
name = "search_parity"
path = "tests/search_parity.rs"
[[test]]
name = "team_features"
path = "tests/team_features.rs"
[[test]]
name = "tracking_e2e"
path = "tests/tracking_e2e.rs"
[[test]]
name = "tracking_security"
path = "tests/tracking_security.rs"
[dependencies.bincode]
version = "1"
[dependencies.dirs]
version = "6"
[dependencies.flate2]
version = "1"
[dependencies.globset]
version = "0.4"
[dependencies.rayon]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"json",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.tar]
version = "0.4"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"fs",
"net",
"signal",
]
[dependencies.toml]
version = "0.8"
[dependencies.walkdir]
version = "2"
[dev-dependencies.axum]
version = "0.7"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"fs",
"net",
"signal",
]