mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-26 09:08:05 +01:00
7a228a584b
* wip
* wip
* make macro implement trait
* checkpoint
* checkpoint
* Simplify things quite a bit
* re-export `axum_macros::TypedPath` from `axum_extra`
* docs
* add missing feature
* fix docs link
* fix features
* fix missing imports
* make serde an optional dep again
* ui tests
* Break things up a bit
* Update span for `FromRequest` impls to point to callsite
* make docs feature labels show up automatically
* Apply suggestions from code review
Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com>
* add note about Display/Serialize being compatible
* Update axum-extra/src/routing/typed.rs
Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com>
* fix missing docs link
* what about typed methods?
* Revert "what about typed methods?"
This reverts commit cc1f989467
.
* don't allow wildcards for now
* percent encode params
* Update axum-extra/src/routing/typed.rs
Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com>
* rephrase args
* changelog
Co-authored-by: Jonas Platte <jplatte@users.noreply.github.com>
43 lines
1.3 KiB
TOML
43 lines
1.3 KiB
TOML
[package]
|
|
categories = ["asynchronous", "network-programming", "web-programming"]
|
|
description = "Extra utilities for axum"
|
|
edition = "2018"
|
|
homepage = "https://github.com/tokio-rs/axum"
|
|
keywords = ["http", "web", "framework"]
|
|
license = "MIT"
|
|
name = "axum-extra"
|
|
readme = "README.md"
|
|
repository = "https://github.com/tokio-rs/axum"
|
|
version = "0.1.2"
|
|
|
|
[features]
|
|
default = []
|
|
erased-json = ["serde_json", "serde"]
|
|
typed-routing = ["axum-macros", "serde", "percent-encoding"]
|
|
|
|
[dependencies]
|
|
axum = { path = "../axum", version = "0.4" }
|
|
bytes = "1.1.0"
|
|
http = "0.2"
|
|
mime = "0.3"
|
|
pin-project-lite = "0.2"
|
|
tower = { version = "0.4", default_features = false, features = ["util"] }
|
|
tower-http = { version = "0.2", features = ["map-response-body"] }
|
|
tower-layer = "0.3"
|
|
tower-service = "0.3"
|
|
|
|
# optional dependencies
|
|
axum-macros = { path = "../axum-macros", version = "0.1", optional = true }
|
|
serde = { version = "1.0", optional = true }
|
|
serde_json = { version = "1.0.71", optional = true }
|
|
percent-encoding = { version = "2.1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
hyper = "0.14"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.14", features = ["full"] }
|
|
tower = { version = "0.4", features = ["util"] }
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdocflags = ["--cfg", "docsrs"]
|