Add deprecation notice
This commit is contained in:
parent
322179ea13
commit
51508c818a
3 changed files with 9 additions and 3 deletions
|
@ -12,4 +12,4 @@ keywords = ["axum", "controller", "macro", "routing"]
|
||||||
license = "AGPL-3.0-or-later"
|
license = "AGPL-3.0-or-later"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://git.vlt81.de/vault81/axum-controller"
|
repository = "https://git.vlt81.de/vault81/axum-controller"
|
||||||
version = "0.2.2"
|
version = "0.3.0"
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
[](https://crates.io/crates/axum-controller)
|
[](https://crates.io/crates/axum-controller)
|
||||||
[](https://docs.rs/axum-controller)
|
[](https://docs.rs/axum-controller)
|
||||||
|

|
||||||
|
|
||||||
|
# DEPRECATED
|
||||||
|
|
||||||
|
This crate does not receive further development, it *might* work for your use case.
|
||||||
|
I've changed how I do routing & recommend checking out [axum-folder-router](https://crates.io/crates/axum-folder-router).
|
||||||
|
|
||||||
# Axum-Controller
|
# Axum-Controller
|
||||||
|
|
||||||
|
|
|
@ -12,12 +12,12 @@ repository.workspace = true
|
||||||
version.workspace = true
|
version.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
axum-controller-macros = { path = "../axum-controller-macros", version = "0.2.1" }
|
axum-controller-macros = { path = "../axum-controller-macros", version = "0.3" }
|
||||||
axum-typed-routing = { path = "../vendor/axum-typed-routing", version = "0.2.0"}
|
axum-typed-routing = { path = "../vendor/axum-typed-routing", version = "0.2.0"}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
axum = "0.8"
|
axum = "0.8"
|
||||||
axum-typed-routing = { path = "../vendor/axum-typed-routing", version = "0.2.0", features = []}
|
axum-typed-routing = { path = "../vendor/axum-typed-routing", version = "0.2", features = []}
|
||||||
axum-test = { version = "17", features = [] }
|
axum-test = { version = "17", features = [] }
|
||||||
json = "0.12"
|
json = "0.12"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
|
|
Reference in a new issue