Remove unneeded feature dependency
This commit is contained in:
parent
09a73d3ee5
commit
560aa3d2af
2 changed files with 3 additions and 1 deletions
|
@ -13,10 +13,11 @@ 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.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]
|
[dev-dependencies]
|
||||||
axum = "0.8"
|
axum = "0.8"
|
||||||
|
axum-typed-routing = { path = "../vendor/axum-typed-routing", version = "0.2.0", features = ["aide"]}
|
||||||
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"] }
|
||||||
|
|
1
vendor/axum-typed-routing/Cargo.toml
vendored
1
vendor/axum-typed-routing/Cargo.toml
vendored
|
@ -41,6 +41,7 @@ path = "src/lib.rs"
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "aide"
|
name = "aide"
|
||||||
path = "examples/aide.rs"
|
path = "examples/aide.rs"
|
||||||
|
features = ["aide"]
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "basic"
|
name = "basic"
|
||||||
|
|
Reference in a new issue