diff --git a/axum-controller/Cargo.toml b/axum-controller/Cargo.toml index acf965c..8339d13 100644 --- a/axum-controller/Cargo.toml +++ b/axum-controller/Cargo.toml @@ -13,10 +13,11 @@ version.workspace = true [dependencies] axum-controller-macros = { path = "../axum-controller-macros", version = "0.2.1" } -axum-typed-routing = { path = "../vendor/axum-typed-routing", version = "0.2.0", features = [ "aide"] } +axum-typed-routing = { path = "../vendor/axum-typed-routing", version = "0.2.0"} [dev-dependencies] axum = "0.8" +axum-typed-routing = { path = "../vendor/axum-typed-routing", version = "0.2.0", features = ["aide"]} axum-test = { version = "17", features = [] } json = "0.12" serde = { version = "1", features = ["derive"] } diff --git a/vendor/axum-typed-routing/Cargo.toml b/vendor/axum-typed-routing/Cargo.toml index 0e77776..90db8cb 100644 --- a/vendor/axum-typed-routing/Cargo.toml +++ b/vendor/axum-typed-routing/Cargo.toml @@ -41,6 +41,7 @@ path = "src/lib.rs" [[example]] name = "aide" path = "examples/aide.rs" +features = ["aide"] [[example]] name = "basic"