Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 9 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,15 @@ futures = "0.3"
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-webpki-roots"] }
async-trait = "0.1"

# HTTP server
axum = { version = "0.7", features = ["macros", "ws", "tracing", "multipart"] }
# HTTP server. axum's `tracing` feature has no API surface — it gates
# axum's internal logging of extractor rejections, so a zero-hit grep is
# its normal appearance. It is also an axum default feature (defaults
# stay on here), so the explicit entry documents intent rather than
# being what enables it.
axum = { version = "0.7", features = ["ws", "tracing", "multipart"] }
axum-server = { version = "0.7", features = ["tls-rustls"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["trace", "cors", "limit", "compression-gzip", "set-header"] }
tower-http = { version = "0.6", features = ["set-header"] }
http = "1.2"
http-body-util = "0.1"
# Trusted-proxy CIDR matching for real-ip resolution (#492)
Expand Down Expand Up @@ -113,12 +117,12 @@ yaml-rust2 = "0.8"
# Time / IDs
chrono = { version = "0.4", features = ["serde"] }
chrono-tz = "0.10"
uuid = { version = "1.11", features = ["v4", "v5", "serde"] }
uuid = { version = "1.11", features = ["v4", "v5"] }
hostname = "0.4"

# Observability
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "fmt", "registry"] }
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "registry"] }
metrics = "0.24"
metrics-exporter-prometheus = "0.16"

Expand Down
1 change: 0 additions & 1 deletion crates/aisix-a2a/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
tracing.workspace = true
http.workspace = true
# A2A has no official Rust SDK (the reference SDKs are Python/JS/Java/Go/.NET),
# so the JSON-RPC 2.0 + agent-card plumbing is hand-rolled directly on the
# workspace HTTP client rather than pulled from an SDK.
Expand Down