[package]
edition = "2024"
name = "zeph-gateway"
version = "0.21.4"
authors = ["bug-ops"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP gateway for webhook ingestion with bearer auth for Zeph"
homepage = "https://github.com/bug-ops/zeph"
readme = "README.md"
keywords = [
"ai",
"agent",
"llm",
"inference",
"skills",
]
categories = [
"command-line-utilities",
"science",
]
license = "MIT"
repository = "https://github.com/bug-ops/zeph"
[features]
prometheus = ["dep:prometheus-client"]
[lib]
name = "zeph_gateway"
path = "src/lib.rs"
[dependencies.axum]
version = "0.8.9"
[dependencies.prometheus-client]
version = "0.24.1"
optional = true
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = [
"net",
"sync",
"time",
]
[dependencies.tower]
version = "0.5.3"
[dependencies.tower-http]
version = "0.6.11"
features = [
"limit",
"trace",
]
default-features = false
[dependencies.tracing]
version = "0.1.44"
[dependencies.zeph-common]
version = "0.21.4"
features = ["http-middleware"]
[dev-dependencies.http-body-util]
version = "0.1.3"
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"macros",
"rt-multi-thread",
]
[dev-dependencies.tower]
version = "0.5.3"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "deny"