kcode-intelligence-router 0.2.3

Typed routing for model calls with exact-model and per-user usage accounting
Documentation
[package]
name = "kcode-intelligence-router"
version = "0.2.3"
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"] }
# Exact because these provider clients directly handle reusable API credentials.
kcode-codex-runtime = "=0.1.1"
kcode-codex-runtime-v2 = "=0.1.3"
kcode-gemini-api = "=0.4.3"
kcode-openai-api = "=0.2.1"
kcode-doc-extraction = "0.2.0"
kcode-web-fetch = "0.1.2"
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]