mirror of
https://github.com/tokio-rs/axum.git
synced 2025-01-05 18:27:07 +01:00
5da3f34b3e
* Clean up axum-debug crate Mostly just brings the crate more in line with the rest of the crates in the workspace. I've also removed the axum-debug-macros crate since axum-debug only contained one re-export from axum-debug-macros. So we didn't need two crates. Can always bring the "backend" crate back if we need things in axum-debug that aren't proc-macros. * Just testing: This should make CI fail * Misc CI clean up * fix intentional breakage * fix changelog * Remove rustfmt config for now as it gives warnings on stable * Fix paths
21 lines
561 B
TOML
21 lines
561 B
TOML
[package]
|
|
authors = ["Programatik <programatik29@gmail.com>"]
|
|
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.1.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "1.0", features = ["full"] }
|
|
axum = { path = "../axum", version = "0.3" }
|