[package]
edition = "2024"
name = "agentic-server"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Standalone axum server for agentic-api"
readme = false
license = "Apache-2.0"
repository = "https://github.com/vllm-project/agentic-api"
[lib]
name = "agentic_server"
path = "src/lib.rs"
[[bin]]
name = "agentic"
path = "src/bin/agentic.rs"
[[bin]]
name = "agentic-server"
path = "src/main.rs"
[[example]]
name = "stateful_gateway"
path = "examples/stateful_gateway.rs"
[[test]]
name = "cli_test"
path = "tests/cli_test.rs"
[[test]]
name = "compaction_test"
path = "tests/compaction_test.rs"
[[test]]
name = "conversations_test"
path = "tests/conversations_test.rs"
[[test]]
name = "cors_test"
path = "tests/cors_test.rs"
[[test]]
name = "health_test"
path = "tests/health_test.rs"
[[test]]
name = "kubernetes_manifests_test"
path = "tests/kubernetes_manifests_test.rs"
[[test]]
name = "messages_test"
path = "tests/messages_test.rs"
[[test]]
name = "oidc_auth_test"
path = "tests/oidc_auth_test.rs"
[[test]]
name = "responses_test"
path = "tests/responses_test.rs"
[[test]]
name = "responses_websocket_test"
path = "tests/responses_websocket_test.rs"
[[bench]]
name = "benches"
path = "benches/benches.rs"
harness = false
[[bench]]
name = "gateway_bench"
path = "benches/gateway_bench.rs"
[[bench]]
name = "proxy_bench"
path = "benches/proxy_bench.rs"
[dependencies.agentic-core]
version = "0.5.0"
package = "agentic-server-core"
[dependencies.axum]
version = "0.8"
features = ["ws"]
[dependencies.bytes]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.either]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.http]
version = "1"
[dependencies.jsonwebtoken]
version = "=10.3.0"
features = ["rust_crypto"]
default-features = false
[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
[dependencies.toml]
version = "0.8"
[dependencies.tower-http]
version = "0.6"
features = ["cors"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.url]
version = "2"
[dev-dependencies.bytes]
version = "1"
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]
default-features = false
[dev-dependencies.rsa]
version = "0.9"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.serde_yml]
version = "0.0.12"
[dev-dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio-rustls",
"any",
"sqlite",
]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.tokio-tungstenite]
version = "0.29"
[dev-dependencies.uuid]
version = "1"
features = ["v7"]
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"