diff --git a/actix-web/hello-world/Cargo.toml b/actix-web/hello-world/Cargo.toml index 6bcf785b..69f5d591 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.20.0" -shuttle-runtime = "0.20.0" +shuttle-actix-web = "0.21.0" +shuttle-runtime = "0.21.0" tokio = "1.26.0" diff --git a/actix-web/postgres/Cargo.toml b/actix-web/postgres/Cargo.toml index 72e3ae54..f664b4ab 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.20.0" -shuttle-runtime = "0.20.0" +shuttle-actix-web = "0.21.0" +shuttle-runtime = "0.21.0" serde = "1.0.148" -shuttle-shared-db = { version = "0.20.0", features = ["postgres"] } +shuttle-shared-db = { version = "0.21.0", features = ["postgres"] } sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] } tokio = "1.26.0" diff --git a/actix-web/websocket-actorless/Cargo.toml b/actix-web/websocket-actorless/Cargo.toml index eb4e5eff..4ba3482f 100644 --- a/actix-web/websocket-actorless/Cargo.toml +++ b/actix-web/websocket-actorless/Cargo.toml @@ -13,8 +13,8 @@ futures = "0.3" reqwest = "0.11" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -shuttle-actix-web = "0.20.0" -shuttle-runtime = "0.20.0" -shuttle-static-folder = "0.20.0" +shuttle-actix-web = "0.21.0" +shuttle-runtime = "0.21.0" +shuttle-static-folder = "0.21.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 3525f6b7..b9fc4dfd 100644 --- a/axum/hello-world/Cargo.toml +++ b/axum/hello-world/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] axum = "0.6.18" -shuttle-axum = "0.20.0" -shuttle-runtime = "0.20.0" +shuttle-axum = "0.21.0" +shuttle-runtime = "0.21.0" tokio = "1.28.2" diff --git a/axum/static-files/Cargo.toml b/axum/static-files/Cargo.toml index ae43b14a..17110cbb 100644 --- a/axum/static-files/Cargo.toml +++ b/axum/static-files/Cargo.toml @@ -6,8 +6,8 @@ publish = false [dependencies] axum = "0.6.18" -shuttle-axum = "0.20.0" -shuttle-runtime = "0.20.0" -shuttle-static-folder = "0.20.0" +shuttle-axum = "0.21.0" +shuttle-runtime = "0.21.0" +shuttle-static-folder = "0.21.0" tokio = "1.28.2" tower-http = { version = "0.4.0", features = ["fs"] } diff --git a/axum/static-next-server/Cargo.toml b/axum/static-next-server/Cargo.toml index 6febb8cc..02dac12b 100644 --- a/axum/static-next-server/Cargo.toml +++ b/axum/static-next-server/Cargo.toml @@ -7,7 +7,7 @@ publish = false [dependencies] axum = "0.6.10" axum-extra = { version = "0.4.2", features = ["spa"] } -shuttle-axum = "0.20.0" -shuttle-runtime = "0.20.0" -shuttle-static-folder = "0.20.0" +shuttle-axum = "0.21.0" +shuttle-runtime = "0.21.0" +shuttle-static-folder = "0.21.0" tokio = "1.26.0" diff --git a/axum/turso/Cargo.toml b/axum/turso/Cargo.toml index 736f6485..e4d11722 100644 --- a/axum/turso/Cargo.toml +++ b/axum/turso/Cargo.toml @@ -5,9 +5,9 @@ edition = "2021" [dependencies] axum = { version = "0.6.18" } -shuttle-axum = { version = "0.20.0" } -shuttle-runtime = { version = "0.20.0" } -shuttle-turso = { version = "0.20.0" } +shuttle-axum = { version = "0.21.0" } +shuttle-runtime = { version = "0.21.0" } +shuttle-turso = { version = "0.21.0" } libsql-client = "=0.30.1" tokio = { version = "1.26.0" } serde = { version = "1.0.164", features = ["derive"] } diff --git a/axum/websocket/Cargo.toml b/axum/websocket/Cargo.toml index d6d582d0..3596eccc 100644 --- a/axum/websocket/Cargo.toml +++ b/axum/websocket/Cargo.toml @@ -11,8 +11,8 @@ hyper = { version = "0.14.26", features = ["client", "http2"] } hyper-tls = "0.5.0" serde = { version = "1.0.163", features = ["derive"] } serde_json = "1.0.96" -shuttle-axum = "0.20.0" -shuttle-runtime = "0.20.0" -shuttle-static-folder = "0.20.0" +shuttle-axum = "0.21.0" +shuttle-runtime = "0.21.0" +shuttle-static-folder = "0.21.0" tokio = "1.28.2" tower-http = { version = "0.4.0", features = ["fs"] } diff --git a/axum/with-state/Cargo.toml b/axum/with-state/Cargo.toml index 6d156152..f7ee2047 100644 --- a/axum/with-state/Cargo.toml +++ b/axum/with-state/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] axum = "0.6.10" -shuttle-axum = "0.20.0" -shuttle-runtime = "0.20.0" +shuttle-axum = "0.21.0" +shuttle-runtime = "0.21.0" tokio = "1.26.0" diff --git a/custom/none/Cargo.toml b/custom/none/Cargo.toml index ca150084..d752e627 100644 --- a/custom/none/Cargo.toml +++ b/custom/none/Cargo.toml @@ -5,5 +5,5 @@ edition = "2021" publish = false [dependencies] -shuttle-runtime = "0.20.0" +shuttle-runtime = "0.21.0" tokio = "1" diff --git a/custom/request-scheduler/Cargo.toml b/custom/request-scheduler/Cargo.toml index 966dcb88..5eb7ff83 100644 --- a/custom/request-scheduler/Cargo.toml +++ b/custom/request-scheduler/Cargo.toml @@ -12,6 +12,6 @@ chrono = "0.4.24" cron = "0.12.0" reqwest = "0.11.17" serde = "1.0.163" -shuttle-persist = "0.20.0" -shuttle-runtime = "0.20.0" +shuttle-persist = "0.21.0" +shuttle-runtime = "0.21.0" tokio = "1.28.0" diff --git a/fullstack-templates/saas/backend/Cargo.toml b/fullstack-templates/saas/backend/Cargo.toml index cd6514c8..bf945d31 100644 --- a/fullstack-templates/saas/backend/Cargo.toml +++ b/fullstack-templates/saas/backend/Cargo.toml @@ -16,11 +16,11 @@ lettre = "0.10.4" rand = "0.8.5" reqwest = "0.11.16" serde = { version = "1.0.160", features = ["derive"] } -shuttle-axum = "0.20.0" -shuttle-runtime = "0.20.0" -shuttle-secrets = "0.20.0" -shuttle-shared-db = { version = "0.20.0", features = ["postgres"] } -shuttle-static-folder = "0.20.0" +shuttle-axum = "0.21.0" +shuttle-runtime = "0.21.0" +shuttle-secrets = "0.21.0" +shuttle-shared-db = { version = "0.21.0", features = ["postgres"] } +shuttle-static-folder = "0.21.0" sqlx = { version = "0.6.3", 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 bcffa96d..e529c55e 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.20.0" +shuttle-next = "0.21.0" tracing = "0.1.37" futures = "0.3.25" diff --git a/poem/hello-world/Cargo.toml b/poem/hello-world/Cargo.toml index 7fa50546..a47e06b4 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.20.0" -shuttle-runtime = "0.20.0" +shuttle-poem = "0.21.0" +shuttle-runtime = "0.21.0" tokio = "1.26.0" diff --git a/poem/mongodb/Cargo.toml b/poem/mongodb/Cargo.toml index 21998d9d..fadb5039 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.20.0" -shuttle-shared-db = { version = "0.20.0", features = ["mongodb"] } -shuttle-runtime = "0.20.0" +shuttle-poem = "0.21.0" +shuttle-shared-db = { version = "0.21.0", features = ["mongodb"] } +shuttle-runtime = "0.21.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 05c1ccd2..ed78e7be 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.20.0" -shuttle-runtime = "0.20.0" -shuttle-shared-db = { version = "0.20.0", features = ["postgres"] } +shuttle-poem = "0.21.0" +shuttle-runtime = "0.21.0" +shuttle-shared-db = { version = "0.21.0", features = ["postgres"] } sqlx = { version = "0.6.2", 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 b3abd1c7..f7c9c655 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.20.0" -shuttle-runtime = "0.20.0" -shuttle-secrets = "0.20.0" +shuttle-poise = "0.21.0" +shuttle-runtime = "0.21.0" +shuttle-secrets = "0.21.0" tracing = "0.1.37" tokio = "1.26.0" diff --git a/rocket/authentication/Cargo.toml b/rocket/authentication/Cargo.toml index 0f9134eb..3c3d9280 100644 --- a/rocket/authentication/Cargo.toml +++ b/rocket/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-rc.2", features = ["json"] } serde = { version = "1.0.148", features = ["derive"] } -shuttle-rocket = "0.20.0" -shuttle-runtime = "0.20.0" +shuttle-rocket = "0.21.0" +shuttle-runtime = "0.21.0" tokio = "1.26.0" diff --git a/rocket/dyn-templates/Cargo.toml b/rocket/dyn-templates/Cargo.toml index f6ced14d..b1fd4c8f 100644 --- a/rocket/dyn-templates/Cargo.toml +++ b/rocket/dyn-templates/Cargo.toml @@ -5,8 +5,8 @@ edition = "2021" [dependencies] rocket = "0.5.0-rc.2" -shuttle-rocket = "0.20.0" -shuttle-runtime = "0.20.0" -shuttle-static-folder = "0.20.0" +shuttle-rocket = "0.21.0" +shuttle-runtime = "0.21.0" +shuttle-static-folder = "0.21.0" rocket_dyn_templates = { version = "0.1.0-rc.3", features = ["handlebars"] } tokio = "1.26.0" diff --git a/rocket/hello-world/Cargo.toml b/rocket/hello-world/Cargo.toml index 4715f82e..962d5029 100644 --- a/rocket/hello-world/Cargo.toml +++ b/rocket/hello-world/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" [dependencies] rocket = "0.5.0-rc.2" -shuttle-rocket = "0.20.0" -shuttle-runtime = "0.20.0" +shuttle-rocket = "0.21.0" +shuttle-runtime = "0.21.0" tokio = "1.26.0" diff --git a/rocket/persist/Cargo.toml b/rocket/persist/Cargo.toml index a2da37c8..a7979e9f 100644 --- a/rocket/persist/Cargo.toml +++ b/rocket/persist/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] rocket = { version = "0.5.0-rc.2", features = ["json"] } serde = { version = "1.0.148", features = ["derive"] } -shuttle-persist = "0.20.0" -shuttle-rocket = "0.20.0" -shuttle-runtime = "0.20.0" +shuttle-persist = "0.21.0" +shuttle-rocket = "0.21.0" +shuttle-runtime = "0.21.0" tokio = "1.26.0" diff --git a/rocket/postgres/Cargo.toml b/rocket/postgres/Cargo.toml index 9d59e9f9..508a7133 100644 --- a/rocket/postgres/Cargo.toml +++ b/rocket/postgres/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" [dependencies] rocket = { version = "0.5.0-rc.2", features = ["json"] } serde = "1.0.148" -shuttle-shared-db = { version = "0.20.0", features = ["postgres"] } -shuttle-rocket = "0.20.0" -shuttle-runtime = "0.20.0" +shuttle-shared-db = { version = "0.21.0", features = ["postgres"] } +shuttle-rocket = "0.21.0" +shuttle-runtime = "0.21.0" sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] } tokio = "1.26.0" diff --git a/rocket/secrets/Cargo.toml b/rocket/secrets/Cargo.toml index 41bd1219..61fa315d 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-rc.2" -shuttle-rocket = "0.20.0" -shuttle-runtime = "0.20.0" -shuttle-secrets = "0.20.0" +shuttle-rocket = "0.21.0" +shuttle-runtime = "0.21.0" +shuttle-secrets = "0.21.0" tokio = "1.26.0" diff --git a/rocket/url-shortener/Cargo.toml b/rocket/url-shortener/Cargo.toml index fe67f84a..0b6fb979 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-rc.2", features = ["json"] } -shuttle-rocket = "0.20.0" -shuttle-runtime = "0.20.0" +shuttle-rocket = "0.21.0" +shuttle-runtime = "0.21.0" serde = "1.0.148" -shuttle-shared-db = { version = "0.20.0", features = ["postgres"] } +shuttle-shared-db = { version = "0.21.0", features = ["postgres"] } sqlx = { version = "0.6.2", 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 4b526675..2b16bd38 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-rc.2" shared = { path = "../shared", version = "0.1.0" } -shuttle-rocket = "0.20.0" -shuttle-runtime = "0.20.0" +shuttle-rocket = "0.21.0" +shuttle-runtime = "0.21.0" tokio = "1.26.0" diff --git a/salvo/hello-world/Cargo.toml b/salvo/hello-world/Cargo.toml index 70ca51fa..b12409ff 100644 --- a/salvo/hello-world/Cargo.toml +++ b/salvo/hello-world/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] salvo = "0.41.0" -shuttle-salvo = "0.20.0" -shuttle-runtime = "0.20.0" +shuttle-salvo = "0.21.0" +shuttle-runtime = "0.21.0" tokio = "1.26.0" diff --git a/serenity/hello-world/Cargo.toml b/serenity/hello-world/Cargo.toml index 9db0b77d..89d21afa 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.20.0" -shuttle-runtime = "0.20.0" +shuttle-serenity = "0.21.0" +shuttle-runtime = "0.21.0" serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] } -shuttle-secrets = "0.20.0" +shuttle-secrets = "0.21.0" tokio = "1.26.0" tracing = "0.1.37" diff --git a/serenity/postgres/Cargo.toml b/serenity/postgres/Cargo.toml index 1e98a11f..65f33ab4 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.20.0" -shuttle-serenity = "0.20.0" -shuttle-runtime = "0.20.0" -shuttle-shared-db = { version = "0.20.0", features = ["postgres"] } +shuttle-secrets = "0.21.0" +shuttle-serenity = "0.21.0" +shuttle-runtime = "0.21.0" +shuttle-shared-db = { version = "0.21.0", features = ["postgres"] } sqlx = { version = "0.6.2", 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 74741282..fac48d49 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.20.0" -shuttle-runtime = "0.20.0" +shuttle-thruster = "0.21.0" +shuttle-runtime = "0.21.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 ae64fe71..0aacfeb8 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.20.0", features = ["postgres"] } -shuttle-thruster = "0.20.0" -shuttle-runtime = "0.20.0" +shuttle-aws-rds = { version = "0.21.0", features = ["postgres"] } +shuttle-thruster = "0.21.0" +shuttle-runtime = "0.21.0" sqlx = { version = "0.6.2", 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 0e55e466..3cbb7e42 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.20.0" -shuttle-runtime = "0.20.0" +shuttle-tide = "0.21.0" +shuttle-runtime = "0.21.0" tokio = "1.26.0" tide = "0.16.0" diff --git a/tide/postgres/Cargo.toml b/tide/postgres/Cargo.toml index d0fd1993..4825003a 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.20.0", features = ["postgres"] } -shuttle-runtime = "0.20.0" -shuttle-tide = "0.20.0" +shuttle-aws-rds = { version = "0.21.0", features = ["postgres"] } +shuttle-runtime = "0.21.0" +shuttle-tide = "0.21.0" sqlx = { version = "0.6.2", 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 a7662aef..789b1320 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.20.0" -shuttle-tower = "0.20.0" +shuttle-runtime = "0.21.0" +shuttle-tower = "0.21.0" tower = { version = "0.4.13", features = ["full"] } tokio = "1.26.0" diff --git a/warp/hello-world/Cargo.toml b/warp/hello-world/Cargo.toml index 6fcca267..d169cedd 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.20.0" -shuttle-warp = "0.20.0" +shuttle-runtime = "0.21.0" +shuttle-warp = "0.21.0" tokio = "1.26.0" warp = "0.3.3"