mirror of
https://github.com/tokio-rs/axum.git
synced 2024-11-26 17:17:22 +01:00
a16ea65031
* Add `axum-extra` crate Empty for now but now we have a place to put stuff. I'll make a PR for moving over https://github.com/davidpdrsn/axum-resource. * remove `authors` field from `Cargo.toml`s
23 lines
546 B
TOML
23 lines
546 B
TOML
[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"
|
|
version = "0.2.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "1.0", features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
axum = { path = "../axum", version = "0.3" }
|
|
trybuild = "1.0"
|