Remove unneeded feature dependency

This commit is contained in:
Tristan D. 2025-03-09 23:09:30 +01:00
parent 09a73d3ee5
commit 560aa3d2af
Signed by: tristan
SSH key fingerprint: SHA256:9oFM1J63hYWJjCnLG6C0fxBS15rwNcWwdQNMOHYKJ/4
2 changed files with 3 additions and 1 deletions

View file

@ -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"] }

View file

@ -41,6 +41,7 @@ path = "src/lib.rs"
[[example]]
name = "aide"
path = "examples/aide.rs"
features = ["aide"]
[[example]]
name = "basic"