From 0525f33129f11122e502ec5b39e5ff81e24d3566 Mon Sep 17 00:00:00 2001 From: jonaro00 <54029719+jonaro00@users.noreply.github.com> Date: Tue, 2 Apr 2024 22:52:10 +0200 Subject: [PATCH] chore: set package.repository for all crates (#1716) :nerd_face: --- Cargo.toml | 3 ++- proto/Cargo.toml | 1 + resources/aws-rds/Cargo.toml | 1 + resources/opendal/Cargo.toml | 1 + resources/persist/Cargo.toml | 1 + resources/qdrant/Cargo.toml | 1 + resources/shared-db/Cargo.toml | 1 + resources/turso/Cargo.toml | 1 + runtime/Cargo.toml | 1 + services/shuttle-actix-web/Cargo.toml | 1 + services/shuttle-axum/Cargo.toml | 1 + services/shuttle-poem/Cargo.toml | 1 + services/shuttle-rocket/Cargo.toml | 1 + services/shuttle-salvo/Cargo.toml | 1 + services/shuttle-serenity/Cargo.toml | 1 + services/shuttle-thruster/Cargo.toml | 1 + services/shuttle-tide/Cargo.toml | 1 + services/shuttle-tower/Cargo.toml | 1 + services/shuttle-warp/Cargo.toml | 1 + 19 files changed, 20 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3ba87344a..96dfc7f3b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,8 @@ resolver = "2" members = [ "admin", - "auth", "backends", + "auth", + "backends", "cargo-shuttle", "codegen", "common", diff --git a/proto/Cargo.toml b/proto/Cargo.toml index 4ecf84a63..bfc9ecd09 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -3,6 +3,7 @@ name = "shuttle-proto" version = "0.43.0" edition.workspace = true license.workspace = true +repository.workspace = true description = "Library for all the gRPC definitions used by shuttle" [dependencies] diff --git a/resources/aws-rds/Cargo.toml b/resources/aws-rds/Cargo.toml index 5f3c4a025..af56c3324 100644 --- a/resources/aws-rds/Cargo.toml +++ b/resources/aws-rds/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Plugin to provision AWS RDS resources" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "rds"] [dependencies] diff --git a/resources/opendal/Cargo.toml b/resources/opendal/Cargo.toml index 3960faa93..d230817b0 100644 --- a/resources/opendal/Cargo.toml +++ b/resources/opendal/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Plugin to obtain a client connected to Apache OpenDAL" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "opendal"] [dependencies] diff --git a/resources/persist/Cargo.toml b/resources/persist/Cargo.toml index d1aa33af1..4e308474e 100644 --- a/resources/persist/Cargo.toml +++ b/resources/persist/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Plugin for persist objects" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "persistence"] [dependencies] diff --git a/resources/qdrant/Cargo.toml b/resources/qdrant/Cargo.toml index 6c089f89b..647488ff5 100644 --- a/resources/qdrant/Cargo.toml +++ b/resources/qdrant/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Shuttle plugin for connecting to a Qdrant database" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "qdrant"] [dependencies] diff --git a/resources/shared-db/Cargo.toml b/resources/shared-db/Cargo.toml index 40bc16590..c50124483 100644 --- a/resources/shared-db/Cargo.toml +++ b/resources/shared-db/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Plugin for managing shared databases on shuttle" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "database"] [dependencies] diff --git a/resources/turso/Cargo.toml b/resources/turso/Cargo.toml index 2052c0624..73232e73d 100644 --- a/resources/turso/Cargo.toml +++ b/resources/turso/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Plugin to obtain a client connected to a Turso database" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "turso"] [dependencies] diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 761ad09af..4c428fad1 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -3,6 +3,7 @@ name = "shuttle-runtime" version = "0.43.0" edition.workspace = true license.workspace = true +repository.workspace = true description = "Runtime to start and manage any service that runs on shuttle" [lib] diff --git a/services/shuttle-actix-web/Cargo.toml b/services/shuttle-actix-web/Cargo.toml index 1b65ed1ea..4b3e1f42b 100644 --- a/services/shuttle-actix-web/Cargo.toml +++ b/services/shuttle-actix-web/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run an actix webserver on shuttle" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "actix"] [workspace] diff --git a/services/shuttle-axum/Cargo.toml b/services/shuttle-axum/Cargo.toml index b7a6dba59..033de2ffc 100644 --- a/services/shuttle-axum/Cargo.toml +++ b/services/shuttle-axum/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run an axum webserver on shuttle" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "axum"] [workspace] diff --git a/services/shuttle-poem/Cargo.toml b/services/shuttle-poem/Cargo.toml index 97adce584..8af97dd56 100644 --- a/services/shuttle-poem/Cargo.toml +++ b/services/shuttle-poem/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a poem webserver on shuttle" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "poem"] [workspace] diff --git a/services/shuttle-rocket/Cargo.toml b/services/shuttle-rocket/Cargo.toml index 72e32867d..ff0412d69 100644 --- a/services/shuttle-rocket/Cargo.toml +++ b/services/shuttle-rocket/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a rocket webserver on shuttle" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "rocket"] [workspace] diff --git a/services/shuttle-salvo/Cargo.toml b/services/shuttle-salvo/Cargo.toml index 4df00e34a..61abf72e4 100644 --- a/services/shuttle-salvo/Cargo.toml +++ b/services/shuttle-salvo/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a salvo webserver on shuttle" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "salvo"] [workspace] diff --git a/services/shuttle-serenity/Cargo.toml b/services/shuttle-serenity/Cargo.toml index 4c6852881..4883e913d 100644 --- a/services/shuttle-serenity/Cargo.toml +++ b/services/shuttle-serenity/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a serenity server on shuttle" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "serenity"] [workspace] diff --git a/services/shuttle-thruster/Cargo.toml b/services/shuttle-thruster/Cargo.toml index 985aebb9e..b1ee228d7 100644 --- a/services/shuttle-thruster/Cargo.toml +++ b/services/shuttle-thruster/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a thruster webserver on shuttle" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "thruster"] [workspace] diff --git a/services/shuttle-tide/Cargo.toml b/services/shuttle-tide/Cargo.toml index 7c823ede2..cdef9a0e1 100644 --- a/services/shuttle-tide/Cargo.toml +++ b/services/shuttle-tide/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a tide webserver on shuttle" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "tide"] [workspace] diff --git a/services/shuttle-tower/Cargo.toml b/services/shuttle-tower/Cargo.toml index 4540c542c..7aa8d4885 100644 --- a/services/shuttle-tower/Cargo.toml +++ b/services/shuttle-tower/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a tower webserver on shuttle" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "tower"] [workspace] diff --git a/services/shuttle-warp/Cargo.toml b/services/shuttle-warp/Cargo.toml index 4fee4cd7c..d2d73f6c4 100644 --- a/services/shuttle-warp/Cargo.toml +++ b/services/shuttle-warp/Cargo.toml @@ -4,6 +4,7 @@ version = "0.43.0" edition = "2021" license = "Apache-2.0" description = "Service implementation to run a warp webserver on shuttle" +repository = "https://github.com/shuttle-hq/shuttle" keywords = ["shuttle-service", "warp"] [workspace]