[package]
name = "kcode-intelligence-router"
version = "0.2.5"
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"
keywords = ["llm", "routing", "accounting", "gemini"]
categories = ["api-bindings"]
include = [
"src/**",
"Cargo.toml",
"Documentation.md",
]
[dependencies]
anyhow = "1"
chrono = { version = "0.4", features = ["serde"] }
kcode-codex-runtime = "=0.1.2"
kcode-codex-runtime-v2 = "=0.1.4"
kcode-gemini-api = "=0.4.4"
kcode-openai-api = "=0.2.2"
kcode-doc-extraction = "0.2.1"
kcode-web-fetch = "0.1.3"
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]