Skip to content

Commit

Permalink
feat: use axum 0.7/0.8 feature flags
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaro00 committed Jan 9, 2025
1 parent 76a329c commit 917a24e
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion axum/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
axum = "0.7.4"
axum = "0.8.1"
shuttle-axum = "0.50.0"
shuttle-runtime = "0.50.0"
tokio = "1.28.2"
2 changes: 1 addition & 1 deletion axum/htmx-crud/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ askama_axum = "0.4.0"
axum = "0.7.4"
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
shuttle-shared-db = { version = "0.50.0", features = ["postgres", "sqlx"] }
sqlx = "0.8.2"
Expand Down
2 changes: 1 addition & 1 deletion axum/jwt-authentication/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jsonwebtoken = "8.3.0"
once_cell = "1.18.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
tokio = "1.28.2"
tracing-subscriber = "0.3.17"
2 changes: 1 addition & 1 deletion axum/metadata/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ edition = "2021"

[dependencies]
axum = "0.7.3"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
tokio = "1.28.2"
2 changes: 1 addition & 1 deletion axum/oauth2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ chrono = { version = "0.4.35", features = ["clock"] }
oauth2 = "4.4.1"
reqwest = { version = "0.11.18", features = ["json"] }
serde = { version = "1.0.183", features = ["derive"] }
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
shuttle-shared-db = { version = "0.50.0", features = ["postgres", "sqlx"] }
sqlx = { version = "0.8.2", features = ["macros", "chrono"] }
Expand Down
2 changes: 1 addition & 1 deletion axum/openai/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ sqlx = { version = "0.8.2", features = [
tokio = { version = "1.28.2", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.6.2", features = ["cors", "fs"] }
shuttle-runtime = "0.50.0"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-shared-db = { version = "0.50.0", features = ["postgres"] }
shuttle-openai = "0.50.0"
2 changes: 1 addition & 1 deletion axum/postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
axum = "0.7.3"
serde = { version = "1.0.188", features = ["derive"] }
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
shuttle-shared-db = { version = "0.50.0", features = ["postgres", "sqlx"] }
sqlx = "0.8.2"
Expand Down
2 changes: 1 addition & 1 deletion axum/qdrant/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
axum = "0.7.3"
qdrant-client = "1.10.1"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-qdrant = "0.50.0"
shuttle-runtime = "0.50.0"
tokio = "1.26.0"
2 changes: 1 addition & 1 deletion axum/static-files/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = false

[dependencies]
axum = "0.7.3"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
tokio = "1.28.2"
tower-http = { version = "0.5.0", features = ["fs"] }
2 changes: 1 addition & 1 deletion axum/turso/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
axum = "0.7.3"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
shuttle-turso = "0.50.0"
libsql = "0.6.0"
Expand Down
2 changes: 1 addition & 1 deletion axum/websocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ futures = "0.3.28"
reqwest = "0.11.23"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
tokio = "1.28.2"
tower-http = { version = "0.5.0", features = ["fs"] }
2 changes: 1 addition & 1 deletion bevy/hello-world/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
axum = "0.7.4"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
tokio = "1.28.2"
tower-http = { version = "0.5.0", features = ["fs"] }
2 changes: 1 addition & 1 deletion custom-resource/pdo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ async-trait = "0.1.56"
axum = "0.7.3"
serde = { version = "1", features = ["derive"] }
shuttle-service = "0.50.0"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
tokio = "1.28.2"
2 changes: 1 addition & 1 deletion fullstack-templates/saas/backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ lettre = "0.11.4"
rand = "0.8.5"
reqwest = "0.11.16"
serde = { version = "1.0.160", features = ["derive"] }
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
shuttle-shared-db = { version = "0.50.0", features = ["postgres", "sqlx"] }
sqlx = { version = "0.8.2", features = ["time"] }
Expand Down
2 changes: 1 addition & 1 deletion loco/hello-world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"
async-trait = "0.1.74"
axum = "0.7.1"
loco-rs = { version = "0.9.0", default-features = false, features = ["cli"] }
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = { version = "0.50.0", default-features = false }
serde = "*"
serde_json = "*"
Expand Down
2 changes: 1 addition & 1 deletion other/feature-flags/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = false

[dependencies]
axum = "0.7.3"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"

[features]
Expand Down
2 changes: 1 addition & 1 deletion other/standalone-binary/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ path = "src/bin/standalone.rs"
[dependencies]
axum = "0.7.3"
dotenvy = "0.15.7"
shuttle-axum = "0.50.0"
shuttle-axum = { version = "0.50.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.50.0"
tokio = "1.28.2"

0 comments on commit 917a24e

Please sign in to comment.