[package]
name = "kcode-intelligence-router"
version = "0.2.0"
edition = "2024"
rust-version = "1.97"
license = "MIT"
description = "Typed routing for model calls with exact-model and per-user usage accounting"
documentation = "https://docs.rs/kcode-intelligence-router"
readme = "README.md"
keywords = ["llm", "routing", "accounting", "gemini"]
categories = ["api-bindings"]
include = [
"src/**",
"Cargo.toml",
"DependencyAudit.md",
"Documentation.md",
"LICENSE",
"README.md",
"Specification.md",
]
[dependencies]
anyhow = "1"
chrono = { version = "0.4", features = ["serde"] }
kcode-codex-runtime = "=0.1.0"
kcode-codex-runtime-v2 = "=0.1.2"
kcode-doc-extraction = "=0.2.0"
kcode-gemini-api = "=0.4.0"
kcode-openai-api = "=0.2.0"
kcode-web-fetch = "=0.1.1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt", "sync", "time"] }
tracing = "0.1"
uuid = { version = "1", features = ["serde", "v4"] }
[lints.rust]
unsafe_code = "forbid"
[workspace]