From 62a21c17d035fb62586ca2d0c786ccdca0d5d12c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oddbj=C3=B8rn=20Gr=C3=B8dem?= <29732646+oddgrd@users.noreply.github.com> Date: Mon, 8 May 2023 10:57:52 +0200 Subject: [PATCH] chore: v0.16.0 (#881) * chore: v0.16.0 * chore: bump examples --- Cargo.lock | 45 ++++++++++++++----- Cargo.toml | 12 ++--- admin/Cargo.toml | 2 +- cargo-shuttle/Cargo.toml | 2 +- cargo-shuttle/README.md | 4 +- codegen/Cargo.toml | 2 +- common/Cargo.toml | 2 +- deployer/Cargo.toml | 2 +- .../tests/deploy_layer/bind-panic/Cargo.toml | 2 +- .../tests/deploy_layer/main-panic/Cargo.toml | 2 +- .../tests/deploy_layer/self-stop/Cargo.toml | 2 +- .../tests/deploy_layer/sleep-async/Cargo.toml | 2 +- examples | 2 +- gateway/Cargo.toml | 2 +- resources/aws-rds/Cargo.toml | 4 +- resources/persist/Cargo.toml | 6 +-- resources/secrets/Cargo.toml | 4 +- resources/shared-db/Cargo.toml | 4 +- resources/static-folder/Cargo.toml | 4 +- runtime/Cargo.toml | 2 +- runtime/src/lib.rs | 6 +-- service/Cargo.toml | 2 +- services/shuttle-actix-web/Cargo.toml | 4 +- services/shuttle-axum/Cargo.toml | 4 +- services/shuttle-next/Cargo.toml | 6 +-- services/shuttle-poem/Cargo.toml | 4 +- services/shuttle-poise/Cargo.toml | 4 +- services/shuttle-rocket/Cargo.toml | 4 +- services/shuttle-salvo/Cargo.toml | 4 +- services/shuttle-serenity/Cargo.toml | 4 +- services/shuttle-thruster/Cargo.toml | 4 +- services/shuttle-tide/Cargo.toml | 4 +- services/shuttle-tower/Cargo.toml | 4 +- services/shuttle-warp/Cargo.toml | 4 +- 34 files changed, 93 insertions(+), 72 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c511c8d57..9bcb318d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1083,7 +1083,7 @@ dependencies = [ [[package]] name = "cargo-shuttle" -version = "0.15.0" +version = "0.16.0" dependencies = [ "anyhow", "assert_cmd", @@ -1128,7 +1128,7 @@ dependencies = [ "tokio-tungstenite", "tokiotest-httpserver", "toml 0.5.11", - "toml_edit 0.15.0", + "toml_edit 0.16.2", "tonic", "tracing", "tracing-subscriber", @@ -3571,6 +3571,15 @@ dependencies = [ "minimal-lexical", ] +[[package]] +name = "nom8" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae01545c9c7fc4486ab7debaf2aad7003ac19431791868fb2e8066df97fad2f8" +dependencies = [ + "memchr", +] + [[package]] name = "nu-ansi-term" version = "0.46.0" @@ -5131,7 +5140,7 @@ dependencies = [ [[package]] name = "shuttle-admin" -version = "0.15.0" +version = "0.16.0" dependencies = [ "anyhow", "clap", @@ -5148,7 +5157,7 @@ dependencies = [ [[package]] name = "shuttle-auth" -version = "0.15.0" +version = "0.16.0" dependencies = [ "anyhow", "async-trait", @@ -5177,7 +5186,7 @@ dependencies = [ [[package]] name = "shuttle-codegen" -version = "0.15.0" +version = "0.16.0" dependencies = [ "pretty_assertions", "proc-macro-error", @@ -5189,7 +5198,7 @@ dependencies = [ [[package]] name = "shuttle-common" -version = "0.15.0" +version = "0.16.0" dependencies = [ "anyhow", "async-trait", @@ -5238,7 +5247,7 @@ dependencies = [ [[package]] name = "shuttle-deployer" -version = "0.15.0" +version = "0.16.0" dependencies = [ "anyhow", "async-trait", @@ -5288,7 +5297,7 @@ dependencies = [ [[package]] name = "shuttle-gateway" -version = "0.15.0" +version = "0.16.0" dependencies = [ "anyhow", "async-trait", @@ -5341,7 +5350,7 @@ dependencies = [ [[package]] name = "shuttle-proto" -version = "0.15.0" +version = "0.16.0" dependencies = [ "anyhow", "chrono", @@ -5358,7 +5367,7 @@ dependencies = [ [[package]] name = "shuttle-provisioner" -version = "0.15.0" +version = "0.16.0" dependencies = [ "aws-config", "aws-sdk-rds", @@ -5384,7 +5393,7 @@ dependencies = [ [[package]] name = "shuttle-runtime" -version = "0.15.0" +version = "0.16.0" dependencies = [ "anyhow", "async-trait", @@ -5417,7 +5426,7 @@ dependencies = [ [[package]] name = "shuttle-service" -version = "0.15.0" +version = "0.16.0" dependencies = [ "anyhow", "async-trait", @@ -6182,6 +6191,18 @@ dependencies = [ "toml_datetime 0.5.1", ] +[[package]] +name = "toml_edit" +version = "0.16.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd30deba9a1cd7153c22aecf93e86df639e7b81c622b0af8d9255e989991a7b7" +dependencies = [ + "indexmap", + "itertools", + "nom8", + "toml_datetime 0.5.1", +] + [[package]] name = "toml_edit" version = "0.19.7" diff --git a/Cargo.toml b/Cargo.toml index b1ba4fd0d..e5e381149 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,17 +21,17 @@ exclude = [ ] [workspace.package] -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" repository = "https://github.com/shuttle-hq/shuttle" # https://doc.rust-lang.org/cargo/reference/workspaces.html#the-workspacedependencies-table [workspace.dependencies] -shuttle-codegen = { path = "codegen", version = "0.15.0" } -shuttle-common = { path = "common", version = "0.15.0" } -shuttle-proto = { path = "proto", version = "0.15.0" } -shuttle-service = { path = "service", version = "0.15.0" } +shuttle-codegen = { path = "codegen", version = "0.16.0" } +shuttle-common = { path = "common", version = "0.16.0" } +shuttle-proto = { path = "proto", version = "0.16.0" } +shuttle-service = { path = "service", version = "0.16.0" } anyhow = "1.0.66" async-trait = "0.1.58" @@ -77,7 +77,7 @@ thiserror = "1.0.37" tar = "0.4.38" tokio = { version = "1.22.0" } toml = "0.5.9" -toml_edit = "0.15.0" +toml_edit = "0.16.0" tonic = "0.8.3" tonic-build = "0.8.3" tower = "0.4.13" diff --git a/admin/Cargo.toml b/admin/Cargo.toml index 1bed5d7da..f9e6bd21f 100644 --- a/admin/Cargo.toml +++ b/admin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-admin" -version = "0.15.0" +version = "0.16.0" edition = "2021" [dependencies] diff --git a/cargo-shuttle/Cargo.toml b/cargo-shuttle/Cargo.toml index 24b4c9b46..beef5180a 100644 --- a/cargo-shuttle/Cargo.toml +++ b/cargo-shuttle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-shuttle" -version = "0.15.0" +version = "0.16.0" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/cargo-shuttle/README.md b/cargo-shuttle/README.md index fee027e70..c5101ddb7 100644 --- a/cargo-shuttle/README.md +++ b/cargo-shuttle/README.md @@ -106,8 +106,8 @@ This should generate the following dependency in `Cargo.toml`: ```toml rocket = "0.5.0-rc.2" -shuttle-rocket = { version = "0.15.0" } -shuttle-runtime = { version = "0.15.0" } +shuttle-rocket = { version = "0.16.0" } +shuttle-runtime = { version = "0.16.0" } tokio = { version = "1.26.0" } ``` diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index 9e12e8325..a7987f133 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-codegen" -version = "0.15.0" +version = "0.16.0" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/common/Cargo.toml b/common/Cargo.toml index 0d89c25d1..3988ca5a8 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-common" -version = "0.15.0" +version = "0.16.0" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/deployer/Cargo.toml b/deployer/Cargo.toml index 9a80149d1..f8b678b58 100644 --- a/deployer/Cargo.toml +++ b/deployer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-deployer" -version = "0.15.0" +version = "0.16.0" edition.workspace = true license.workspace = true description = "Service with instances created per project for handling the compilation, loading, and execution of Shuttle services" diff --git a/deployer/tests/deploy_layer/bind-panic/Cargo.toml b/deployer/tests/deploy_layer/bind-panic/Cargo.toml index 09af36c55..7bdbd10b3 100644 --- a/deployer/tests/deploy_layer/bind-panic/Cargo.toml +++ b/deployer/tests/deploy_layer/bind-panic/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [workspace] [dependencies] -shuttle-runtime = "0.15.0" +shuttle-runtime = "0.16.0" tokio = "1.22" diff --git a/deployer/tests/deploy_layer/main-panic/Cargo.toml b/deployer/tests/deploy_layer/main-panic/Cargo.toml index f5795b06e..5952cec48 100644 --- a/deployer/tests/deploy_layer/main-panic/Cargo.toml +++ b/deployer/tests/deploy_layer/main-panic/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [workspace] [dependencies] -shuttle-runtime = "0.15.0" +shuttle-runtime = "0.16.0" tokio = "1.22" diff --git a/deployer/tests/deploy_layer/self-stop/Cargo.toml b/deployer/tests/deploy_layer/self-stop/Cargo.toml index 6167a85c9..e22098b5e 100644 --- a/deployer/tests/deploy_layer/self-stop/Cargo.toml +++ b/deployer/tests/deploy_layer/self-stop/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [workspace] [dependencies] -shuttle-runtime = "0.15.0" +shuttle-runtime = "0.16.0" tokio = "1.22" diff --git a/deployer/tests/deploy_layer/sleep-async/Cargo.toml b/deployer/tests/deploy_layer/sleep-async/Cargo.toml index f5a7e3cce..e694884ec 100644 --- a/deployer/tests/deploy_layer/sleep-async/Cargo.toml +++ b/deployer/tests/deploy_layer/sleep-async/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [workspace] [dependencies] -shuttle-runtime = "0.15.0" +shuttle-runtime = "0.16.0" tokio = { version = "1.0", features = ["time"]} diff --git a/examples b/examples index 826210a17..619fed9ac 160000 --- a/examples +++ b/examples @@ -1 +1 @@ -Subproject commit 826210a1765a424e40fbfe87095e4d4211ce4be4 +Subproject commit 619fed9ac2b5409558dc8d621c1d9f9b9832293a diff --git a/gateway/Cargo.toml b/gateway/Cargo.toml index d0d12bc24..d7e9d1a16 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-gateway" -version = "0.15.0" +version = "0.16.0" edition.workspace = true license.workspace = true publish = false diff --git a/resources/aws-rds/Cargo.toml b/resources/aws-rds/Cargo.toml index f102cca72..1c94c4ad8 100644 --- a/resources/aws-rds/Cargo.toml +++ b/resources/aws-rds/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-aws-rds" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Plugin to provision AWS RDS resources" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "rds"] async-trait = "0.1.56" paste = "1.0.7" serde = { version = "1.0.148", features = ["derive"] } -shuttle-service = { path = "../../service", version = "0.15.0", default-features = false } +shuttle-service = { path = "../../service", version = "0.16.0", default-features = false } sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls"] } [features] diff --git a/resources/persist/Cargo.toml b/resources/persist/Cargo.toml index f8298e48a..9c68c9975 100644 --- a/resources/persist/Cargo.toml +++ b/resources/persist/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-persist" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Plugin for persist objects" @@ -10,6 +10,6 @@ keywords = ["shuttle-service", "persistence"] async-trait = "0.1.56" bincode = "1.2.1" serde = { version = "1.0.0", features = ["derive"] } -shuttle-common = { path = "../../common", version = "0.15.0", default-features = false } -shuttle-service = { path = "../../service", version = "0.15.0", default-features = false } +shuttle-common = { path = "../../common", version = "0.16.0", default-features = false } +shuttle-service = { path = "../../service", version = "0.16.0", default-features = false } thiserror = "1.0.32" diff --git a/resources/secrets/Cargo.toml b/resources/secrets/Cargo.toml index 94cfa8ec9..093d39408 100644 --- a/resources/secrets/Cargo.toml +++ b/resources/secrets/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-secrets" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Plugin to for managing secrets on shuttle" @@ -9,4 +9,4 @@ keywords = ["shuttle-service", "secrets"] [dependencies] async-trait = "0.1.56" serde = { version = "1.0.148", features = ["derive"] } -shuttle-service = { path = "../../service", version = "0.15.0", default-features = false } +shuttle-service = { path = "../../service", version = "0.16.0", default-features = false } diff --git a/resources/shared-db/Cargo.toml b/resources/shared-db/Cargo.toml index 45d19c87a..a72af591d 100644 --- a/resources/shared-db/Cargo.toml +++ b/resources/shared-db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-shared-db" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Plugin for managing shared databases on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "database"] async-trait = "0.1.56" mongodb = { version = "2.3.0", optional = true } serde = { version = "1.0.148", features = ["derive"] } -shuttle-service = { path = "../../service", version = "0.15.0", default-features = false } +shuttle-service = { path = "../../service", version = "0.16.0", default-features = false } sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls"], optional = true } [features] diff --git a/resources/static-folder/Cargo.toml b/resources/static-folder/Cargo.toml index 2fb82e5ae..2a3b65843 100644 --- a/resources/static-folder/Cargo.toml +++ b/resources/static-folder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-static-folder" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Plugin to get a static folder at runtime on shuttle" @@ -11,7 +11,7 @@ async-trait = "0.1.56" dunce = "1.0.3" fs_extra = "1.3.0" serde = { version = "1.0.148", features = ["derive"] } -shuttle-service = { path = "../../service", version = "0.15.0", default-features = false } +shuttle-service = { path = "../../service", version = "0.16.0", default-features = false } tracing = "0.1.37" [dev-dependencies] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 254be9c10..e68173aa3 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-runtime" -version = "0.15.0" +version = "0.16.0" edition.workspace = true license.workspace = true description = "Runtime to start and manage any service that runs on shuttle" diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index fb847e15d..d83081745 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -27,9 +27,9 @@ //! be a binary crate with a few dependencies including `shuttle-runtime` and `shuttle-axum`. //! //! ```toml -//! shuttle-runtime = "0.15.0" +//! shuttle-runtime = "0.16.0" //! axum = "0.6.10" -//! shuttle-axum = "0.15.0" +//! shuttle-axum = "0.16.0" //! tokio = "1.26" //! ``` //! @@ -113,7 +113,7 @@ //! `runtime-tokio-native-tls` and `postgres` features inside `Cargo.toml`: //! //! ```toml -//! shuttle-shared-db = { version = "0.15.0", features = ["postgres"] } +//! shuttle-shared-db = { version = "0.16.0", features = ["postgres"] } //! sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] } //! ``` //! diff --git a/service/Cargo.toml b/service/Cargo.toml index b6c9bb15a..91ffb125d 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-service" -version = "0.15.0" +version = "0.16.0" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/services/shuttle-actix-web/Cargo.toml b/services/shuttle-actix-web/Cargo.toml index 3aec6eeaa..cec7f973e 100644 --- a/services/shuttle-actix-web/Cargo.toml +++ b/services/shuttle-actix-web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-actix-web" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run an actix webserver on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "actix"] [dependencies] actix-web = { version = "4.3.1" } -shuttle-runtime = { path = "../../runtime", version = "0.15.0" } +shuttle-runtime = { path = "../../runtime", version = "0.16.0" } num_cpus = "1.15.0" [dev-dependencies] diff --git a/services/shuttle-axum/Cargo.toml b/services/shuttle-axum/Cargo.toml index ff1e1bbbf..2c6875137 100644 --- a/services/shuttle-axum/Cargo.toml +++ b/services/shuttle-axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-axum" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run an axum webserver on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "axum"] [dependencies] axum = { version = "0.6.10" } -shuttle-runtime = { path = "../../runtime", version = "0.15.0" } +shuttle-runtime = { path = "../../runtime", version = "0.16.0" } [dev-dependencies] tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] } diff --git a/services/shuttle-next/Cargo.toml b/services/shuttle-next/Cargo.toml index 7af072856..b5fed9917 100644 --- a/services/shuttle-next/Cargo.toml +++ b/services/shuttle-next/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-next" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Macros and aliases to deploy wasm on the shuttle platform (https://www.shuttle.rs/)" @@ -18,6 +18,6 @@ futures-executor = "0.3.21" http = "0.2.7" rmp-serde = "1.1.1" tower-service = "0.3.1" -shuttle-common = { path = "../../common", version = "0.15.0", features = ["wasm"] } -shuttle-codegen = { path = "../../codegen", version = "0.15.0", features = ["next"] } +shuttle-common = { path = "../../common", version = "0.16.0", features = ["wasm"] } +shuttle-codegen = { path = "../../codegen", version = "0.16.0", features = ["next"] } tracing-subscriber = { version = "0.3.16", default-features = false, features = ["registry", "std"] } diff --git a/services/shuttle-poem/Cargo.toml b/services/shuttle-poem/Cargo.toml index 003667a55..464e0cf22 100644 --- a/services/shuttle-poem/Cargo.toml +++ b/services/shuttle-poem/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-poem" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a poem webserver on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "poem"] [dependencies] poem = { version = "1.3.55" } -shuttle-runtime = { path = "../../runtime", version = "0.15.0" } +shuttle-runtime = { path = "../../runtime", version = "0.16.0" } [dev-dependencies] tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] } diff --git a/services/shuttle-poise/Cargo.toml b/services/shuttle-poise/Cargo.toml index ab6910c0e..49617c624 100644 --- a/services/shuttle-poise/Cargo.toml +++ b/services/shuttle-poise/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-poise" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a poise discord bot on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "poise", "discord-bot", "serenity"] [dependencies] poise = { version = "0.5.2" } -shuttle-runtime = { path = "../../runtime", version = "0.15.0" } +shuttle-runtime = { path = "../../runtime", version = "0.16.0" } [dev-dependencies] shuttle-secrets = { path = "../../resources/secrets" } diff --git a/services/shuttle-rocket/Cargo.toml b/services/shuttle-rocket/Cargo.toml index 43bedf6fa..cde227ea8 100644 --- a/services/shuttle-rocket/Cargo.toml +++ b/services/shuttle-rocket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-rocket" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a rocket webserver on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "rocket"] [dependencies] rocket = { version = "0.5.0-rc.2" } -shuttle-runtime = { path = "../../runtime", version = "0.15.0" } +shuttle-runtime = { path = "../../runtime", version = "0.16.0" } [dev-dependencies] tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] } diff --git a/services/shuttle-salvo/Cargo.toml b/services/shuttle-salvo/Cargo.toml index 592101973..36789648d 100644 --- a/services/shuttle-salvo/Cargo.toml +++ b/services/shuttle-salvo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-salvo" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a salvo webserver on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "salvo"] [dependencies] salvo = { version = "0.37.5" } -shuttle-runtime = { path = "../../runtime", version = "0.15.0" } +shuttle-runtime = { path = "../../runtime", version = "0.16.0" } [dev-dependencies] tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] } diff --git a/services/shuttle-serenity/Cargo.toml b/services/shuttle-serenity/Cargo.toml index 17fd754b0..3b65cad60 100644 --- a/services/shuttle-serenity/Cargo.toml +++ b/services/shuttle-serenity/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-serenity" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a serenity server on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "serenity"] [dependencies] serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] } -shuttle-runtime = { path = "../../runtime", version = "0.15.0" } +shuttle-runtime = { path = "../../runtime", version = "0.16.0" } [dev-dependencies] anyhow = "1.0.69" diff --git a/services/shuttle-thruster/Cargo.toml b/services/shuttle-thruster/Cargo.toml index cebe9a8ab..01c274957 100644 --- a/services/shuttle-thruster/Cargo.toml +++ b/services/shuttle-thruster/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-thruster" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a thruster webserver on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "thruster"] [dependencies] thruster = { version = "1.3.0" } -shuttle-runtime = { path = "../../runtime", version = "0.15.0" } +shuttle-runtime = { path = "../../runtime", version = "0.16.0" } [dev-dependencies] thruster = { version = "1.3.0", features = ["hyper_server"] } diff --git a/services/shuttle-tide/Cargo.toml b/services/shuttle-tide/Cargo.toml index 531d8eaab..98090f769 100644 --- a/services/shuttle-tide/Cargo.toml +++ b/services/shuttle-tide/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-tide" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a tide webserver on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "tide"] [dependencies] tide = { version = "0.16.0" } -shuttle-runtime = { path = "../../runtime", version = "0.15.0" } +shuttle-runtime = { path = "../../runtime", version = "0.16.0" } # Tide does not have tokio support. So make sure async-std is compatible with tokio # https://github.com/http-rs/tide/issues/791 diff --git a/services/shuttle-tower/Cargo.toml b/services/shuttle-tower/Cargo.toml index 9507525ca..4532c460f 100644 --- a/services/shuttle-tower/Cargo.toml +++ b/services/shuttle-tower/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-tower" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a tower webserver on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "tower"] [dependencies] hyper = { version = "0.14.23", features = ["server", "tcp", "http1"] } -shuttle-runtime = { path = "../../runtime", version = "0.15.0" } +shuttle-runtime = { path = "../../runtime", version = "0.16.0" } tower = { version = "0.4.13", features = ["make"] } [dev-dependencies] diff --git a/services/shuttle-warp/Cargo.toml b/services/shuttle-warp/Cargo.toml index 56e2c2454..67abd6b29 100644 --- a/services/shuttle-warp/Cargo.toml +++ b/services/shuttle-warp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shuttle-warp" -version = "0.15.0" +version = "0.16.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a warp webserver on shuttle" @@ -10,7 +10,7 @@ keywords = ["shuttle-service", "warp"] [dependencies] warp = { version = "0.3.3" } -shuttle-runtime = { path = "../../runtime", version = "0.15.0" } +shuttle-runtime = { path = "../../runtime", version = "0.16.0" } [dev-dependencies] tokio = { version = "1.26.0", features = ["macros", "rt-multi-thread"] }