Fix duplicate axum-typed-routing

This commit is contained in:
Tristan D. 2025-03-20 19:31:20 +01:00
parent cf071f61ad
commit f17ec858c9
Signed by: tristan
SSH key fingerprint: SHA256:9oFM1J63hYWJjCnLG6C0fxBS15rwNcWwdQNMOHYKJ/4
2 changed files with 4 additions and 24 deletions

26
Cargo.lock generated
View file

@ -392,7 +392,7 @@ name = "axum-controller"
version = "0.2.2" version = "0.2.2"
dependencies = [ dependencies = [
"axum-controller-macros", "axum-controller-macros",
"axum-typed-routing 0.2.0", "axum-typed-routing",
] ]
[[package]] [[package]]
@ -474,17 +474,7 @@ version = "0.2.0"
dependencies = [ dependencies = [
"axum 0.8.1", "axum 0.8.1",
"axum-macros 0.5.0", "axum-macros 0.5.0",
"axum-typed-routing-macros 0.2.0", "axum-typed-routing-macros",
]
[[package]]
name = "axum-typed-routing"
version = "0.2.0"
source = "git+https://github.com/jvdwrf/axum-typed-routing#160684a406d616974d851bbfc6d0d9ffa65367e5"
dependencies = [
"axum 0.8.1",
"axum-macros 0.5.0",
"axum-typed-routing-macros 0.2.0 (git+https://github.com/jvdwrf/axum-typed-routing)",
] ]
[[package]] [[package]]
@ -496,16 +486,6 @@ dependencies = [
"syn 2.0.100", "syn 2.0.100",
] ]
[[package]]
name = "axum-typed-routing-macros"
version = "0.2.0"
source = "git+https://github.com/jvdwrf/axum-typed-routing#160684a406d616974d851bbfc6d0d9ffa65367e5"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.100",
]
[[package]] [[package]]
name = "backtrace" name = "backtrace"
version = "0.3.74" version = "0.3.74"
@ -1258,7 +1238,7 @@ dependencies = [
"axum 0.8.1", "axum 0.8.1",
"axum-controller", "axum-controller",
"axum-controller-macros", "axum-controller-macros",
"axum-typed-routing 0.2.0 (git+https://github.com/jvdwrf/axum-typed-routing)", "axum-typed-routing",
"datastar", "datastar",
"futures", "futures",
"hypertext", "hypertext",

View file

@ -14,7 +14,7 @@ async-stream = "0.3.6"
axum = { version = "0.8", features = ["http2"] } axum = { version = "0.8", features = ["http2"] }
axum-controller = { version = "0.2.0", path = "../../axum-controller/axum-controller" } axum-controller = { version = "0.2.0", path = "../../axum-controller/axum-controller" }
axum-controller-macros = { version = "0.2.0", path = "../../axum-controller/axum-controller-macros" } axum-controller-macros = { version = "0.2.0", path = "../../axum-controller/axum-controller-macros" }
axum-typed-routing = { git = "https://github.com/jvdwrf/axum-typed-routing", version = "0.2.0" } axum-typed-routing = { path = "../../axum-controller/vendor/axum-typed-routing", version = "0.2.0" }
datastar = { git = "https://github.com/starfederation/datastar.git", version = "0.1.0", features = ["axum"] } datastar = { git = "https://github.com/starfederation/datastar.git", version = "0.1.0", features = ["axum"] }
futures = "0.3.31" futures = "0.3.31"
hypertext = { version = "0.6.0", features = ["axum"] } hypertext = { version = "0.6.0", features = ["axum"] }