2021-11-11 15:18:40 +01:00
|
|
|
[package]
|
|
|
|
categories = ["development-tools::debugging"]
|
|
|
|
description = "Better error messages for axum framework."
|
|
|
|
edition = "2018"
|
|
|
|
homepage = "https://github.com/tokio-rs/axum"
|
|
|
|
keywords = ["axum", "debugging", "debug"]
|
|
|
|
license = "MIT"
|
|
|
|
name = "axum-debug"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/tokio-rs/axum"
|
2021-11-13 20:44:13 +01:00
|
|
|
version = "0.2.0"
|
2021-11-11 15:18:40 +01:00
|
|
|
|
2021-11-11 17:33:33 +01:00
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2021-11-11 15:18:40 +01:00
|
|
|
[dependencies]
|
2021-11-11 17:33:33 +01:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
|
|
|
syn = { version = "1.0", features = ["full"] }
|
2021-11-11 21:26:08 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-11-13 17:38:09 +01:00
|
|
|
axum = { path = "../axum", version = "0.3" }
|
2021-11-11 21:26:08 +01:00
|
|
|
trybuild = "1.0"
|