apigate 0.2.6

Macro-driven API gateway for Rust: declarative routing, request transformation, and reverse proxying built on axum
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88"
name = "apigate"
version = "0.2.6"
authors = ["Oleg Dokuchaev"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macro-driven API gateway for Rust: declarative routing, request transformation, and reverse proxying built on axum"
readme = "README.md"
keywords = [
    "api-gateway",
    "proxy",
    "reverse-proxy",
    "axum",
    "macros",
]
categories = [
    "web-programming::http-server",
    "network-programming",
]
license = "MIT"
repository = "https://github.com/OlegDokuchaev/apigate"
resolver = "2"

[lib]
name = "apigate"
path = "src/lib.rs"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "errors"
path = "examples/errors.rs"

[[example]]
name = "hooks"
path = "examples/hooks.rs"

[[example]]
name = "logging"
path = "examples/logging.rs"

[[example]]
name = "map"
path = "examples/map.rs"

[[example]]
name = "multipart"
path = "examples/multipart.rs"

[[example]]
name = "path"
path = "examples/path.rs"

[[example]]
name = "policy"
path = "examples/policy.rs"

[[example]]
name = "runtime_tuning"
path = "examples/runtime_tuning.rs"

[[example]]
name = "tower_logging"
path = "examples/tower_logging.rs"

[[test]]
name = "e2e_errors"
path = "tests/e2e_errors.rs"

[[test]]
name = "e2e_observability"
path = "tests/e2e_observability.rs"

[[test]]
name = "e2e_pipeline"
path = "tests/e2e_pipeline.rs"

[[test]]
name = "e2e_policy"
path = "tests/e2e_policy.rs"

[[test]]
name = "e2e_proxy"
path = "tests/e2e_proxy.rs"

[[test]]
name = "e2e_runtime_tuning"
path = "tests/e2e_runtime_tuning.rs"

[[test]]
name = "macro_params"
path = "tests/macro_params.rs"

[dependencies.apigate-core]
version = "0.2.6"

[dependencies.apigate-macros]
version = "0.2.6"

[dependencies.axum]
version = "0.8.8"

[dependencies.http]
version = "1.4.0"

[dependencies.serde_json]
version = "1.0.149"

[dependencies.serde_urlencoded]
version = "0.7.1"

[dev-dependencies.anyhow]
version = "1"

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
]

[dev-dependencies.tower]
version = "0.5"
features = ["util"]

[dev-dependencies.tower-http]
version = "0.6"
features = ["trace"]

[dev-dependencies.tracing]
version = "0.1"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = [
    "env-filter",
    "fmt",
]

[dev-dependencies.trybuild]
version = "1"

[dev-dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]