Skip to content

Commit

Permalink
Remove unused dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jplatte authored Dec 24, 2024
1 parent f10cb9f commit 4b1b325
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 15 deletions.
1 change: 0 additions & 1 deletion crates/aide-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,5 @@ proc-macro = true

[dependencies]
darling = "0.20.0"
proc-macro2 = "1.0.43"
quote = "1.0.21"
syn = "2.0.15"
5 changes: 1 addition & 4 deletions crates/axum-jsonschema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,10 @@ description = "Request JSON schema validation for axum"
readme = "README.md"

[dependencies]
aide = { version = "0.13", path = "../aide", optional = true, features = [
"axum",
] }
aide = { version = "0.13", path = "../aide", optional = true, features = ["axum"] }
async-trait = "0.1.57"
axum = { version = "0.7.1", default-features = false, features = ["json"] }
http = "1.0.0"
http-body = "1.0.0"
itertools = "0.12.0"
jsonschema = { version = "0.17.0", default-features = false }
schemars = { version = "0.8.10", default-features = false }
Expand Down
6 changes: 1 addition & 5 deletions examples/example-axum-worker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,10 @@ aide = { path = "../../crates/aide", features = [
"axum-wasm"
] }
tower-service = "0.3.2"
async-trait = "0.1.57"
worker = { version = "0.5.0", features = ["http", "axum"] }
console_error_panic_hook = "0.1.7"
axum = { version = "0.7.1", default-features = false, features = ["macros", "form", "matched-path", "query", "original-uri"] }
axum-extra = "0.9.0"
axum-jsonschema = { path = "../../crates/axum-jsonschema", features = [
"aide",
] }
axum-jsonschema = { path = "../../crates/axum-jsonschema", features = ["aide"] }
axum-macros = "0.4.0"
schemars = { version = "0.8.10", features = ["uuid1"] }
serde = { version = "1.0.144", features = ["derive", "rc"] }
Expand Down
6 changes: 1 addition & 5 deletions examples/example-axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,8 @@ aide = { path = "../../crates/aide", features = [
"axum-extra",
"macros",
] }
async-trait = "0.1.57"
axum = { version = "0.7.1", features = ["macros"] }
axum-extra = "0.9.0"
axum-jsonschema = { path = "../../crates/axum-jsonschema", features = [
"aide",
] }
axum-jsonschema = { path = "../../crates/axum-jsonschema", features = ["aide"] }
axum-macros = "0.4.0"
schemars = { version = "0.8.10", features = ["uuid1"] }
serde = { version = "1.0.144", features = ["derive", "rc"] }
Expand Down

0 comments on commit 4b1b325

Please sign in to comment.