Clean up axum-debug crate (#498)

* 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
This commit is contained in:
David Pedersen
2021-11-11 17:33:33 +01:00
committed by GitHub
parent f6b47478da
commit 5da3f34b3e
14 changed files with 354 additions and 438 deletions
+7 -2
View File
@@ -11,6 +11,11 @@ readme = "README.md"
repository = "https://github.com/tokio-rs/axum"
version = "0.1.0"
[lib]
proc-macro = true
[dependencies]
axum = { path = "../axum" }
axum-debug-macros = { path = "../axum-debug-macros" }
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full"] }
axum = { path = "../axum", version = "0.3" }