2022-01-25 15:05:50 +01:00
|
|
|
[package]
|
|
|
|
categories = ["asynchronous", "network-programming", "web-programming"]
|
|
|
|
description = "Macros for axum"
|
2022-06-17 20:11:35 +02:00
|
|
|
edition = "2021"
|
2022-01-25 15:05:50 +01:00
|
|
|
homepage = "https://github.com/tokio-rs/axum"
|
|
|
|
keywords = ["axum"]
|
|
|
|
license = "MIT"
|
|
|
|
name = "axum-macros"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/tokio-rs/axum"
|
2022-07-04 11:10:52 +02:00
|
|
|
version = "0.2.3" # remember to also bump the version that axum and axum-extra depends on
|
2022-01-25 15:05:50 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
heck = "0.4"
|
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
|
|
|
syn = { version = "1.0", features = ["full"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-31 20:43:34 +02:00
|
|
|
axum = { path = "../axum", version = "0.5", features = ["headers"] }
|
2022-04-27 10:27:41 +02:00
|
|
|
axum-extra = { path = "../axum-extra", version = "0.3", features = ["typed-routing"] }
|
2022-01-25 15:05:50 +01:00
|
|
|
rustversion = "1.0"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2022-05-16 12:05:17 +02:00
|
|
|
syn = { version = "1.0", features = ["full", "extra-traits"] }
|
2022-01-26 23:27:22 +01:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
2022-06-27 20:44:20 +02:00
|
|
|
trybuild = "1.0.63"
|