warpdrive 0.1.0

A compatibility library for running Warp filters within Axum servers.
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"
name = "warpdrive"
version = "0.1.0"
authors = ["Mac Ladson <mjladson@pm.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A compatibility library for running Warp filters within Axum servers."
homepage = "https://github.com/macladson/warpdrive"
documentation = "https://docs.rs/warpdrive"
readme = "README.md"
keywords = [
    "axum",
    "warp",
    "migration",
    "compatibility",
    "web",
]
categories = [
    "web-programming",
    "web-programming::http-server",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/macladson/warpdrive"

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

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

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

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

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

[dependencies.axum]
version = "0.8"

[dependencies.futures]
version = "0.3"

[dependencies.tower]
version = "0.5"

[dependencies.warp]
version = "0.3"

[dev-dependencies.axum]
version = "0.8"
features = ["ws"]

[dev-dependencies.chrono]
version = "0.4"

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

[dev-dependencies.serde_json]
version = "1.0"

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

[dev-dependencies.tokio-stream]
version = "0.1"

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