diff --git a/Cargo.lock b/Cargo.lock index 85618c7..75269e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -392,7 +392,7 @@ name = "axum-controller" version = "0.2.2" dependencies = [ "axum-controller-macros", - "axum-typed-routing 0.2.0", + "axum-typed-routing", ] [[package]] @@ -474,17 +474,7 @@ version = "0.2.0" dependencies = [ "axum 0.8.1", "axum-macros 0.5.0", - "axum-typed-routing-macros 0.2.0", -] - -[[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)", + "axum-typed-routing-macros", ] [[package]] @@ -496,16 +486,6 @@ dependencies = [ "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]] name = "backtrace" version = "0.3.74" @@ -1258,7 +1238,7 @@ dependencies = [ "axum 0.8.1", "axum-controller", "axum-controller-macros", - "axum-typed-routing 0.2.0 (git+https://github.com/jvdwrf/axum-typed-routing)", + "axum-typed-routing", "datastar", "futures", "hypertext", diff --git a/darm_test/Cargo.toml b/darm_test/Cargo.toml index 33de3e9..08d5ed7 100644 --- a/darm_test/Cargo.toml +++ b/darm_test/Cargo.toml @@ -14,7 +14,7 @@ async-stream = "0.3.6" axum = { version = "0.8", features = ["http2"] } 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-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"] } futures = "0.3.31" hypertext = { version = "0.6.0", features = ["axum"] }