mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-22 23:30:29 +01:00
568394a28e
* support setting body type for #[debug_handler] * Use lookahead1 to give better errors and detect duplicate arguments * fix docs link
35 lines
1,005 B
TOML
35 lines
1,005 B
TOML
[package]
|
|
categories = ["asynchronous", "network-programming", "web-programming"]
|
|
description = "Macros for axum"
|
|
edition = "2021"
|
|
rust-version = "1.60"
|
|
homepage = "https://github.com/tokio-rs/axum"
|
|
keywords = ["axum"]
|
|
license = "MIT"
|
|
name = "axum-macros"
|
|
readme = "README.md"
|
|
repository = "https://github.com/tokio-rs/axum"
|
|
version = "0.2.3" # remember to also bump the version that axum and axum-extra depends on
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
heck = "0.4"
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "1.0", features = [
|
|
"full",
|
|
# needed for `Hash` impls
|
|
"extra-traits",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
axum = { path = "../axum", version = "0.5", features = ["headers"] }
|
|
axum-extra = { path = "../axum-extra", version = "0.3", features = ["typed-routing"] }
|
|
rustversion = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
syn = { version = "1.0", features = ["full", "extra-traits"] }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
trybuild = "1.0.63"
|