diff --git a/actix-web/cookie-authentication/Cargo.toml b/actix-web/cookie-authentication/Cargo.toml index aa557360..c5dd81c0 100644 --- a/actix-web/cookie-authentication/Cargo.toml +++ b/actix-web/cookie-authentication/Cargo.toml @@ -7,6 +7,6 @@ edition = "2021" actix-identity = "0.6.0" actix-session = { version = "0.8.0", features = ["cookie-session"] } actix-web = "4.3.1" -shuttle-actix-web = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-actix-web = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" diff --git a/actix-web/hello-world/Cargo.toml b/actix-web/hello-world/Cargo.toml index bfdf9184..be9a0388 100644 --- a/actix-web/hello-world/Cargo.toml +++ b/actix-web/hello-world/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] actix-web = "4.3.1" -shuttle-actix-web = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-actix-web = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" diff --git a/actix-web/postgres/Cargo.toml b/actix-web/postgres/Cargo.toml index db2b0e17..8b5b5d21 100644 --- a/actix-web/postgres/Cargo.toml +++ b/actix-web/postgres/Cargo.toml @@ -5,9 +5,9 @@ edition = "2021" [dependencies] actix-web = "4.3.1" -shuttle-actix-web = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-actix-web = "0.36.0" +shuttle-runtime = "0.36.0" serde = "1.0.148" -shuttle-shared-db = { version = "0.35.0", features = ["postgres"] } +shuttle-shared-db = { version = "0.36.0", features = ["postgres"] } sqlx = { version = "0.7.1", features = ["runtime-tokio-native-tls", "postgres"] } tokio = "1.26.0" diff --git a/actix-web/static-files/Cargo.toml b/actix-web/static-files/Cargo.toml index ebc1922b..8b81b824 100644 --- a/actix-web/static-files/Cargo.toml +++ b/actix-web/static-files/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" [dependencies] actix-files = "0.6.2" actix-web = "4.3.1" -shuttle-actix-web = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-actix-web = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" diff --git a/actix-web/websocket-actorless/Cargo.toml b/actix-web/websocket-actorless/Cargo.toml index 21f3d01f..4c8188b5 100644 --- a/actix-web/websocket-actorless/Cargo.toml +++ b/actix-web/websocket-actorless/Cargo.toml @@ -13,7 +13,7 @@ futures = "0.3" reqwest = "0.11" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -shuttle-actix-web = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-actix-web = "0.36.0" +shuttle-runtime = "0.36.0" tokio = { version = "1", features = ["rt-multi-thread", "sync"] } tracing = "0.1" diff --git a/axum/hello-world/Cargo.toml b/axum/hello-world/Cargo.toml index 7cca9695..f4ddd1b8 100644 --- a/axum/hello-world/Cargo.toml +++ b/axum/hello-world/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] axum = "0.7.3" -shuttle-axum = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.28.2" tracing = "0.1.40" diff --git a/axum/jwt-authentication/Cargo.toml b/axum/jwt-authentication/Cargo.toml index 364f8baf..f12fdc05 100644 --- a/axum/jwt-authentication/Cargo.toml +++ b/axum/jwt-authentication/Cargo.toml @@ -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.35.0" -shuttle-runtime = "0.35.0" +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.28.2" tracing-subscriber = "0.3.17" diff --git a/axum/metadata/Cargo.toml b/axum/metadata/Cargo.toml index b47ec123..6e474faa 100644 --- a/axum/metadata/Cargo.toml +++ b/axum/metadata/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] axum = "0.7.3" -shuttle-axum = "0.35.0" -shuttle-runtime = "0.35.0" -shuttle-metadata = "0.35.0" +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" +shuttle-metadata = "0.36.0" tokio = "1.28.2" diff --git a/axum/postgres/Cargo.toml b/axum/postgres/Cargo.toml index d1d2fcff..37b42056 100644 --- a/axum/postgres/Cargo.toml +++ b/axum/postgres/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" [dependencies] axum = "0.7.3" serde = { version = "1.0.188", features = ["derive"] } -shuttle-axum = "0.35.0" -shuttle-runtime = "0.35.0" -shuttle-shared-db = { version = "0.35.0", features = ["postgres"] } +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" +shuttle-shared-db = { version = "0.36.0", features = ["postgres"] } sqlx = { version = "0.7.1", features = ["runtime-tokio-native-tls", "postgres"] } tokio = "1.28.2" diff --git a/axum/static-files/Cargo.toml b/axum/static-files/Cargo.toml index 0f2e1190..daeab82c 100644 --- a/axum/static-files/Cargo.toml +++ b/axum/static-files/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] axum = "0.7.3" -shuttle-axum = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.28.2" tower-http = { version = "0.5.0", features = ["fs"] } diff --git a/axum/static-next-server/Cargo.toml b/axum/static-next-server/Cargo.toml index 3deba2d9..d3d830f7 100644 --- a/axum/static-next-server/Cargo.toml +++ b/axum/static-next-server/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] axum = "0.7.3" -shuttle-axum = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" tower-http = { version = "0.5.0", features = ["fs"] } diff --git a/axum/turso/Cargo.toml b/axum/turso/Cargo.toml index 4ef03e6b..0d4a3546 100644 --- a/axum/turso/Cargo.toml +++ b/axum/turso/Cargo.toml @@ -5,9 +5,9 @@ edition = "2021" [dependencies] axum = "0.7.3" -shuttle-axum = "0.35.0" -shuttle-runtime = "0.35.0" -shuttle-turso = "0.35.0" +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" +shuttle-turso = "0.36.0" libsql-client = "0.31.0" tokio = "1.26.0" serde = { version = "1.0.164", features = ["derive"] } diff --git a/axum/websocket/Cargo.toml b/axum/websocket/Cargo.toml index 779d75e2..95a5a313 100644 --- a/axum/websocket/Cargo.toml +++ b/axum/websocket/Cargo.toml @@ -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.35.0" -shuttle-runtime = "0.35.0" +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.28.2" tower-http = { version = "0.5.0", features = ["fs"] } diff --git a/axum/with-state/Cargo.toml b/axum/with-state/Cargo.toml index 7480f90a..1509649a 100644 --- a/axum/with-state/Cargo.toml +++ b/axum/with-state/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] axum = "0.7.3" -shuttle-axum = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" diff --git a/custom-resource/pdo/Cargo.toml b/custom-resource/pdo/Cargo.toml index 5b85f730..84135d31 100644 --- a/custom-resource/pdo/Cargo.toml +++ b/custom-resource/pdo/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" async-trait = "0.1.56" axum = "0.7.3" serde = { version = "1.0.148", default-features = false, features = ["derive"] } -shuttle-service = "0.35.0" -shuttle-axum = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-service = "0.36.0" +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.28.2" diff --git a/custom-service/none/Cargo.toml b/custom-service/none/Cargo.toml index dd534180..a62cb2c4 100644 --- a/custom-service/none/Cargo.toml +++ b/custom-service/none/Cargo.toml @@ -5,5 +5,5 @@ edition = "2021" publish = false [dependencies] -shuttle-runtime = "0.35.0" +shuttle-runtime = "0.36.0" tokio = "1" diff --git a/custom-service/request-scheduler/Cargo.toml b/custom-service/request-scheduler/Cargo.toml index 82a9fdce..3df5ca96 100644 --- a/custom-service/request-scheduler/Cargo.toml +++ b/custom-service/request-scheduler/Cargo.toml @@ -10,7 +10,7 @@ chrono = "0.4.24" cron = "0.12.0" reqwest = "0.11.17" serde = "1.0.163" -shuttle-persist = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-persist = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.28.0" tracing = "0.1.37" diff --git a/fullstack-templates/saas/backend/Cargo.toml b/fullstack-templates/saas/backend/Cargo.toml index a273e7df..490cf9a9 100644 --- a/fullstack-templates/saas/backend/Cargo.toml +++ b/fullstack-templates/saas/backend/Cargo.toml @@ -16,10 +16,10 @@ lettre = "0.10.4" rand = "0.8.5" reqwest = "0.11.16" serde = { version = "1.0.160", features = ["derive"] } -shuttle-axum = "0.35.0" -shuttle-runtime = "0.35.0" -shuttle-secrets = "0.35.0" -shuttle-shared-db = { version = "0.35.0", features = ["postgres"] } +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" +shuttle-secrets = "0.36.0" +shuttle-shared-db = { version = "0.36.0", features = ["postgres"] } sqlx = { version = "0.7.1", features = ["runtime-tokio-native-tls", "postgres", "time"] } time = { version = "0.3.20", features = ["serde"] } tokio = "1.27.0" diff --git a/next/hello-world/Cargo.toml b/next/hello-world/Cargo.toml index 48f78c1f..dd9587fd 100644 --- a/next/hello-world/Cargo.toml +++ b/next/hello-world/Cargo.toml @@ -7,6 +7,6 @@ edition = "2021" crate-type = [ "cdylib" ] [dependencies] -shuttle-next = "0.35.0" +shuttle-next = "0.36.0" tracing = "0.1.37" futures = "0.3.25" diff --git a/other/standalone-binary/Cargo.toml b/other/standalone-binary/Cargo.toml index 786e605f..c7107010 100644 --- a/other/standalone-binary/Cargo.toml +++ b/other/standalone-binary/Cargo.toml @@ -15,7 +15,7 @@ path = "src/bin/standalone.rs" [dependencies] axum = "0.7.3" dotenvy = "0.15.7" -shuttle-axum = "0.35.0" -shuttle-runtime = "0.35.0" -shuttle-secrets = "0.35.0" +shuttle-axum = "0.36.0" +shuttle-runtime = "0.36.0" +shuttle-secrets = "0.36.0" tokio = "1.28.2" diff --git a/poem/hello-world/Cargo.toml b/poem/hello-world/Cargo.toml index 11bd11f7..85756ec7 100644 --- a/poem/hello-world/Cargo.toml +++ b/poem/hello-world/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] poem = "1.3.55" -shuttle-poem = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-poem = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" diff --git a/poem/mongodb/Cargo.toml b/poem/mongodb/Cargo.toml index 86a9775d..462f585f 100644 --- a/poem/mongodb/Cargo.toml +++ b/poem/mongodb/Cargo.toml @@ -6,9 +6,9 @@ edition = "2021" [dependencies] mongodb = "2.4.0" poem = "1.3.55" -shuttle-poem = "0.35.0" -shuttle-shared-db = { version = "0.35.0", features = ["mongodb"] } -shuttle-runtime = "0.35.0" +shuttle-poem = "0.36.0" +shuttle-shared-db = { version = "0.36.0", features = ["mongodb"] } +shuttle-runtime = "0.36.0" serde = { version = "1.0.148", features = ["derive"] } serde_json = "1.0.89" tokio = "1.26.0" diff --git a/poem/postgres/Cargo.toml b/poem/postgres/Cargo.toml index 7c86dd69..080da2b6 100644 --- a/poem/postgres/Cargo.toml +++ b/poem/postgres/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" [dependencies] poem = "1.3.55" serde = "1.0.148" -shuttle-poem = "0.35.0" -shuttle-runtime = "0.35.0" -shuttle-shared-db = { version = "0.35.0", features = ["postgres"] } +shuttle-poem = "0.36.0" +shuttle-runtime = "0.36.0" +shuttle-shared-db = { version = "0.36.0", features = ["postgres"] } sqlx = { version = "0.7.1", features = ["runtime-tokio-native-tls", "postgres"] } tokio = "1.26.0" diff --git a/poise/hello-world/Cargo.toml b/poise/hello-world/Cargo.toml index 4bca9c21..e7b54cc1 100644 --- a/poise/hello-world/Cargo.toml +++ b/poise/hello-world/Cargo.toml @@ -7,8 +7,8 @@ publish = false [dependencies] anyhow = "1.0.68" poise = "0.5.2" -shuttle-poise = "0.35.0" -shuttle-runtime = "0.35.0" -shuttle-secrets = "0.35.0" +shuttle-poise = "0.36.0" +shuttle-runtime = "0.36.0" +shuttle-secrets = "0.36.0" tracing = "0.1.37" tokio = "1.26.0" diff --git a/rocket/dyn-templates/Cargo.toml b/rocket/dyn-templates/Cargo.toml index 4ca74c78..ffb880f6 100644 --- a/rocket/dyn-templates/Cargo.toml +++ b/rocket/dyn-templates/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] rocket = "0.5.0" -shuttle-rocket = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-rocket = "0.36.0" +shuttle-runtime = "0.36.0" rocket_dyn_templates = { version = "0.1.0-rc.4", features = ["handlebars"] } tokio = "1.26.0" diff --git a/rocket/hello-world/Cargo.toml b/rocket/hello-world/Cargo.toml index 76cb8f97..d334b4ab 100644 --- a/rocket/hello-world/Cargo.toml +++ b/rocket/hello-world/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] rocket = "0.5.0" -shuttle-rocket = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-rocket = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" diff --git a/rocket/jwt-authentication/Cargo.toml b/rocket/jwt-authentication/Cargo.toml index bf99b6a1..d478c63a 100644 --- a/rocket/jwt-authentication/Cargo.toml +++ b/rocket/jwt-authentication/Cargo.toml @@ -9,6 +9,6 @@ jsonwebtoken = { version = "8.1.1", default-features = false } lazy_static = "1.4.0" rocket = { version = "0.5.0", features = ["json"] } serde = { version = "1.0.148", features = ["derive"] } -shuttle-rocket = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-rocket = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" diff --git a/rocket/persist/Cargo.toml b/rocket/persist/Cargo.toml index 25fc4b86..b3757d59 100644 --- a/rocket/persist/Cargo.toml +++ b/rocket/persist/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] rocket = { version = "0.5.0", features = ["json"] } serde = { version = "1.0.148", features = ["derive"] } -shuttle-persist = "0.35.0" -shuttle-rocket = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-persist = "0.36.0" +shuttle-rocket = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" diff --git a/rocket/postgres/Cargo.toml b/rocket/postgres/Cargo.toml index 40d8cd24..e596717e 100644 --- a/rocket/postgres/Cargo.toml +++ b/rocket/postgres/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" [dependencies] rocket = { version = "0.5.0", features = ["json"] } serde = "1.0.148" -shuttle-shared-db = { version = "0.35.0", features = ["postgres"] } -shuttle-rocket = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-shared-db = { version = "0.36.0", features = ["postgres"] } +shuttle-rocket = "0.36.0" +shuttle-runtime = "0.36.0" sqlx = { version = "0.7.1", features = ["runtime-tokio-native-tls", "postgres"] } tokio = "1.26.0" diff --git a/rocket/secrets/Cargo.toml b/rocket/secrets/Cargo.toml index 532db26b..cf494bfb 100644 --- a/rocket/secrets/Cargo.toml +++ b/rocket/secrets/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] anyhow = "1.0.66" rocket = "0.5.0" -shuttle-rocket = "0.35.0" -shuttle-runtime = "0.35.0" -shuttle-secrets = "0.35.0" +shuttle-rocket = "0.36.0" +shuttle-runtime = "0.36.0" +shuttle-secrets = "0.36.0" tokio = "1.26.0" diff --git a/rocket/static-files/Cargo.toml b/rocket/static-files/Cargo.toml index 6a012b5f..a3bd473a 100644 --- a/rocket/static-files/Cargo.toml +++ b/rocket/static-files/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] rocket = "0.5.0" -shuttle-rocket = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-rocket = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" diff --git a/rocket/url-shortener/Cargo.toml b/rocket/url-shortener/Cargo.toml index af2e8868..9b420c3d 100644 --- a/rocket/url-shortener/Cargo.toml +++ b/rocket/url-shortener/Cargo.toml @@ -6,10 +6,10 @@ edition = "2021" [dependencies] nanoid = "0.4.0" rocket = { version = "0.5.0", features = ["json"] } -shuttle-rocket = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-rocket = "0.36.0" +shuttle-runtime = "0.36.0" serde = "1.0.148" -shuttle-shared-db = { version = "0.35.0", features = ["postgres"] } +shuttle-shared-db = { version = "0.36.0", features = ["postgres"] } sqlx = { version = "0.7.1", features = ["runtime-tokio-native-tls", "postgres"] } tokio = "1.26.0" url = "2.3.1" diff --git a/rocket/workspace/hello-world/Cargo.toml b/rocket/workspace/hello-world/Cargo.toml index c8c50ab2..c07c33ff 100644 --- a/rocket/workspace/hello-world/Cargo.toml +++ b/rocket/workspace/hello-world/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" [dependencies] rocket = "0.5.0" shared = { path = "../shared", version = "0.1.0" } -shuttle-rocket = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-rocket = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" diff --git a/salvo/hello-world/Cargo.toml b/salvo/hello-world/Cargo.toml index acfee30d..a4eef6e2 100644 --- a/salvo/hello-world/Cargo.toml +++ b/salvo/hello-world/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] salvo = "0.63.0" -shuttle-salvo = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-salvo = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" diff --git a/serenity/hello-world/Cargo.toml b/serenity/hello-world/Cargo.toml index 7cace558..6878dd9f 100644 --- a/serenity/hello-world/Cargo.toml +++ b/serenity/hello-world/Cargo.toml @@ -5,9 +5,9 @@ edition = "2021" [dependencies] anyhow = "1.0.66" -shuttle-serenity = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-serenity = "0.36.0" +shuttle-runtime = "0.36.0" serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] } -shuttle-secrets = "0.35.0" +shuttle-secrets = "0.36.0" tokio = "1.26.0" tracing = "0.1.37" diff --git a/serenity/postgres/Cargo.toml b/serenity/postgres/Cargo.toml index f9da30aa..7826e730 100644 --- a/serenity/postgres/Cargo.toml +++ b/serenity/postgres/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" anyhow = "1.0.66" serde = "1.0.148" serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] } -shuttle-secrets = "0.35.0" -shuttle-serenity = "0.35.0" -shuttle-runtime = "0.35.0" -shuttle-shared-db = { version = "0.35.0", features = ["postgres"] } +shuttle-secrets = "0.36.0" +shuttle-serenity = "0.36.0" +shuttle-runtime = "0.36.0" +shuttle-shared-db = { version = "0.36.0", features = ["postgres"] } sqlx = { version = "0.7.1", features = ["runtime-tokio-native-tls", "postgres"] } tokio = "1.26.0" tracing = "0.1.37" diff --git a/thruster/hello-world/Cargo.toml b/thruster/hello-world/Cargo.toml index c3f795a9..f7003cde 100644 --- a/thruster/hello-world/Cargo.toml +++ b/thruster/hello-world/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -shuttle-thruster = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-thruster = "0.36.0" +shuttle-runtime = "0.36.0" thruster = { version = "1.3.0", features = ["hyper_server"] } tokio = "1.26.0" diff --git a/thruster/postgres/Cargo.toml b/thruster/postgres/Cargo.toml index e8d86691..e10eae8c 100644 --- a/thruster/postgres/Cargo.toml +++ b/thruster/postgres/Cargo.toml @@ -7,9 +7,9 @@ edition = "2021" hyper = "0.14.23" serde = { version = "1.0.148", features = ["derive"] } serde_json = "1.0.89" -shuttle-aws-rds = { version = "0.35.0", features = ["postgres"] } -shuttle-thruster = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-aws-rds = { version = "0.36.0", features = ["postgres"] } +shuttle-thruster = "0.36.0" +shuttle-runtime = "0.36.0" sqlx = { version = "0.7.1", features = ["runtime-tokio-native-tls", "postgres"] } thruster = { version = "1.3.0", features = ["hyper_server"] } tokio = "1.26.0" diff --git a/tide/hello-world/Cargo.toml b/tide/hello-world/Cargo.toml index 61b65308..7f3874ea 100644 --- a/tide/hello-world/Cargo.toml +++ b/tide/hello-world/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -shuttle-tide = "0.35.0" -shuttle-runtime = "0.35.0" +shuttle-tide = "0.36.0" +shuttle-runtime = "0.36.0" tokio = "1.26.0" tide = "0.16.0" diff --git a/tide/postgres/Cargo.toml b/tide/postgres/Cargo.toml index 3bbaebb5..15e55ce9 100644 --- a/tide/postgres/Cargo.toml +++ b/tide/postgres/Cargo.toml @@ -5,9 +5,9 @@ edition = "2021" [dependencies] serde = { version = "1.0.148", features = ["derive"] } -shuttle-aws-rds = { version = "0.35.0", features = ["postgres"] } -shuttle-runtime = "0.35.0" -shuttle-tide = "0.35.0" +shuttle-aws-rds = { version = "0.36.0", features = ["postgres"] } +shuttle-runtime = "0.36.0" +shuttle-tide = "0.36.0" sqlx = { version = "0.7.1", features = ["runtime-tokio-native-tls", "postgres"] } tokio = "1.26.0" tide = "0.16.0" diff --git a/tower/hello-world/Cargo.toml b/tower/hello-world/Cargo.toml index 210f5962..3edaa3cf 100644 --- a/tower/hello-world/Cargo.toml +++ b/tower/hello-world/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] hyper = { version = "0.14.23", features = ["full"] } -shuttle-runtime = "0.35.0" -shuttle-tower = "0.35.0" +shuttle-runtime = "0.36.0" +shuttle-tower = "0.36.0" tower = { version = "0.4.13", features = ["full"] } tokio = "1.26.0" diff --git a/tracing/custom-tracing-subscriber/Cargo.toml b/tracing/custom-tracing-subscriber/Cargo.toml index 966518af..b2519fb5 100644 --- a/tracing/custom-tracing-subscriber/Cargo.toml +++ b/tracing/custom-tracing-subscriber/Cargo.toml @@ -5,9 +5,9 @@ edition = "2021" [dependencies] actix-web = "4.3.1" -shuttle-actix-web = "0.35.0" +shuttle-actix-web = "0.36.0" # disable default features to disable the Shuttle default tracing subscriber -shuttle-runtime = { version = "0.35.0", default-features = false } +shuttle-runtime = { version = "0.36.0", default-features = false } tokio = "1.26.0" tracing = "0.1.37" tracing-subscriber = "0.3.17" diff --git a/warp/hello-world/Cargo.toml b/warp/hello-world/Cargo.toml index 3c1aba0a..23e08250 100644 --- a/warp/hello-world/Cargo.toml +++ b/warp/hello-world/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -shuttle-runtime = "0.35.0" -shuttle-warp = "0.35.0" +shuttle-runtime = "0.36.0" +shuttle-warp = "0.36.0" tokio = "1.26.0" warp = "0.3.3"