[package]
edition = "2021"
rust-version = "1.74"
name = "cost-meter"
version = "0.1.0"
authors = ["Mukunda Rao Katta <mukunda.vjcs6@gmail.com>"]
build = false
exclude = [
".github/*",
"target/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Aggregate LLM API cost across providers, models, and time windows. Provider-agnostic — pairs with claude-cost, openai-cost, gemini-cost, bedrock-cost. No SDK dependency."
homepage = "https://github.com/MukundaKatta/cost-meter"
documentation = "https://docs.rs/cost-meter"
readme = "README.md"
keywords = [
"llm",
"cost",
"meter",
"aggregate",
"billing",
]
categories = ["data-structures"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MukundaKatta/cost-meter"
[features]
default = []
serde = ["dep:serde"]
[lib]
name = "cost_meter"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
optional = true