[package]
edition = "2021"
rust-version = "1.85"
name = "skiagram-core"
version = "0.1.1"
authors = ["Tanvir Anjum Apurbo"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Domain model, agent adapters, and token-accounting analysis for skiagram (no UI, no network)."
homepage = "https://github.com/TanvirAnjumApurbo/skiagram"
documentation = "https://docs.rs/skiagram-core"
readme = "README.md"
keywords = [
"tokens",
"llm",
"cli",
"tui",
"claude",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/TanvirAnjumApurbo/skiagram"
[lib]
name = "skiagram_core"
path = "src/lib.rs"
[[test]]
name = "claude_code_snapshot"
path = "tests/claude_code_snapshot.rs"
[[test]]
name = "codex_snapshot"
path = "tests/codex_snapshot.rs"
[[test]]
name = "copilot_snapshot"
path = "tests/copilot_snapshot.rs"
[[test]]
name = "gemini_snapshot"
path = "tests/gemini_snapshot.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.directories]
version = "6.0"
[dependencies.jiff]
version = "0.2"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.insta]
version = "1.41"
features = ["json"]