[package]
edition = "2021"
rust-version = "1.74"
name = "token-budget-pool"
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 = "Shared token + dollar budget across concurrent LLM tasks. Thread-safe, returns BudgetExceeded when a record would push past a cap. Zero deps."
homepage = "https://github.com/MukundaKatta/token-budget-pool"
documentation = "https://docs.rs/token-budget-pool"
readme = "README.md"
keywords = [
"llm",
"budget",
"tokens",
"cost",
"agent",
]
categories = [
"concurrency",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MukundaKatta/token-budget-pool"
[lib]
name = "token_budget_pool"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"