From 47c3d23235684d0e106c6fd3ab0f4d38b88a94a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABlle=20Huisman?= Date: Sat, 28 Dec 2024 16:19:16 +0100 Subject: [PATCH] Fix versions --- README.md | 2 +- book/src/introduction.md | 2 +- packages/core/shield/Cargo.toml | 2 +- packages/core/shield/README.md | 2 +- packages/integrations/shield-actix/Cargo.toml | 2 +- packages/integrations/shield-actix/README.md | 2 +- packages/integrations/shield-axum/Cargo.toml | 4 ++-- packages/integrations/shield-axum/README.md | 2 +- packages/integrations/shield-leptos-actix/Cargo.toml | 6 +++--- packages/integrations/shield-leptos-axum/Cargo.toml | 6 +++--- packages/integrations/shield-leptos/Cargo.toml | 2 +- packages/integrations/shield-leptos/README.md | 2 +- packages/integrations/shield-tower/Cargo.toml | 2 +- packages/integrations/shield-tower/README.md | 2 +- packages/providers/shield-credentials/Cargo.toml | 2 +- packages/providers/shield-credentials/README.md | 2 +- packages/providers/shield-email/Cargo.toml | 2 +- packages/providers/shield-email/README.md | 2 +- packages/providers/shield-oauth/Cargo.toml | 2 +- packages/providers/shield-oauth/README.md | 2 +- packages/providers/shield-oidc/Cargo.toml | 2 +- packages/providers/shield-oidc/README.md | 2 +- packages/providers/shield-webauthn/Cargo.toml | 2 +- packages/providers/shield-webauthn/README.md | 2 +- packages/storage/shield-diesel/Cargo.toml | 2 +- packages/storage/shield-diesel/README.md | 2 +- packages/storage/shield-memory/Cargo.toml | 12 ++++++------ packages/storage/shield-sea-orm/Cargo.toml | 12 ++++++------ packages/storage/shield-sea-orm/README.md | 2 +- packages/storage/shield-sqlx/Cargo.toml | 2 +- packages/storage/shield-sqlx/README.md | 2 +- 31 files changed, 46 insertions(+), 46 deletions(-) diff --git a/README.md b/README.md index b382010..367aeb2 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,6 @@ This project is available under the [MIT license](LICENSE.md). ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/book/src/introduction.md b/book/src/introduction.md index 9ec4ae8..ba11275 100644 --- a/book/src/introduction.md +++ b/book/src/introduction.md @@ -8,6 +8,6 @@ This project is available under the [MIT license](https://github.com/RustForWeb/ ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/core/shield/Cargo.toml b/packages/core/shield/Cargo.toml index 44db72c..a04493c 100644 --- a/packages/core/shield/Cargo.toml +++ b/packages/core/shield/Cargo.toml @@ -12,7 +12,7 @@ version.workspace = true async-trait.workspace = true chrono = { workspace = true, features = ["serde"] } futures.workspace = true -serde.workspace = true +serde = { workspace = true, features = ["derive"] } serde_json.workspace = true thiserror.workspace = true tracing.workspace = true diff --git a/packages/core/shield/README.md b/packages/core/shield/README.md index ca419ad..cb60058 100644 --- a/packages/core/shield/README.md +++ b/packages/core/shield/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/integrations/shield-actix/Cargo.toml b/packages/integrations/shield-actix/Cargo.toml index 82c0c3e..b2cd288 100644 --- a/packages/integrations/shield-actix/Cargo.toml +++ b/packages/integrations/shield-actix/Cargo.toml @@ -12,4 +12,4 @@ version.workspace = true actix-session.workspace = true actix-utils.workspace = true actix-web.workspace = true -shield = { path = "../../core/shield" } +shield = { path = "../../core/shield", version = "0.0.2" } diff --git a/packages/integrations/shield-actix/README.md b/packages/integrations/shield-actix/README.md index 0a883b4..c3b8eda 100644 --- a/packages/integrations/shield-actix/README.md +++ b/packages/integrations/shield-actix/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/integrations/shield-axum/Cargo.toml b/packages/integrations/shield-axum/Cargo.toml index 7db8848..9d0613b 100644 --- a/packages/integrations/shield-axum/Cargo.toml +++ b/packages/integrations/shield-axum/Cargo.toml @@ -13,5 +13,5 @@ async-trait.workspace = true axum.workspace = true serde.workspace = true serde_json.workspace = true -shield = { path = "../../core/shield" } -shield-tower = { path = "../shield-tower" } +shield = { path = "../../core/shield", version = "0.0.2" } +shield-tower = { path = "../shield-tower", version = "0.0.2" } diff --git a/packages/integrations/shield-axum/README.md b/packages/integrations/shield-axum/README.md index adff602..ceaa6de 100644 --- a/packages/integrations/shield-axum/README.md +++ b/packages/integrations/shield-axum/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/integrations/shield-leptos-actix/Cargo.toml b/packages/integrations/shield-leptos-actix/Cargo.toml index b935a11..bfa85bf 100644 --- a/packages/integrations/shield-leptos-actix/Cargo.toml +++ b/packages/integrations/shield-leptos-actix/Cargo.toml @@ -12,6 +12,6 @@ version.workspace = true async-trait.workspace = true leptos.workspace = true leptos_actix.workspace = true -shield = { path = "../../core/shield" } -shield-actix = { path = "../../integrations/shield-actix" } -shield-leptos = { path = "../../integrations/shield-leptos" } +shield = { path = "../../core/shield", version = "0.0.2" } +shield-actix = { path = "../../integrations/shield-actix", version = "0.0.2" } +shield-leptos = { path = "../../integrations/shield-leptos", version = "0.0.2" } diff --git a/packages/integrations/shield-leptos-axum/Cargo.toml b/packages/integrations/shield-leptos-axum/Cargo.toml index 677d849..fd7dc8e 100644 --- a/packages/integrations/shield-leptos-axum/Cargo.toml +++ b/packages/integrations/shield-leptos-axum/Cargo.toml @@ -12,6 +12,6 @@ version.workspace = true async-trait.workspace = true leptos.workspace = true leptos_axum.workspace = true -shield = { path = "../../core/shield" } -shield-axum = { path = "../../integrations/shield-axum" } -shield-leptos = { path = "../../integrations/shield-leptos" } +shield = { path = "../../core/shield", version = "0.0.2" } +shield-axum = { path = "../../integrations/shield-axum", version = "0.0.2" } +shield-leptos = { path = "../../integrations/shield-leptos", version = "0.0.2" } diff --git a/packages/integrations/shield-leptos/Cargo.toml b/packages/integrations/shield-leptos/Cargo.toml index 9250c2f..7b97893 100644 --- a/packages/integrations/shield-leptos/Cargo.toml +++ b/packages/integrations/shield-leptos/Cargo.toml @@ -12,4 +12,4 @@ version.workspace = true async-trait.workspace = true leptos.workspace = true serde.workspace = true -shield = { path = "../../core/shield" } +shield = { path = "../../core/shield", version = "0.0.2" } diff --git a/packages/integrations/shield-leptos/README.md b/packages/integrations/shield-leptos/README.md index dca7bfd..2dadea6 100644 --- a/packages/integrations/shield-leptos/README.md +++ b/packages/integrations/shield-leptos/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/integrations/shield-tower/Cargo.toml b/packages/integrations/shield-tower/Cargo.toml index fff7b9b..e9827f2 100644 --- a/packages/integrations/shield-tower/Cargo.toml +++ b/packages/integrations/shield-tower/Cargo.toml @@ -11,7 +11,7 @@ version.workspace = true [dependencies] async-trait.workspace = true http.workspace = true -shield = { path = "../../core/shield" } +shield = { path = "../../core/shield", version = "0.0.2" } tower-layer.workspace = true tower-service.workspace = true tower-sessions.workspace = true diff --git a/packages/integrations/shield-tower/README.md b/packages/integrations/shield-tower/README.md index 719a3f6..0a75a7b 100644 --- a/packages/integrations/shield-tower/README.md +++ b/packages/integrations/shield-tower/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/providers/shield-credentials/Cargo.toml b/packages/providers/shield-credentials/Cargo.toml index 68ed9b7..568c1e1 100644 --- a/packages/providers/shield-credentials/Cargo.toml +++ b/packages/providers/shield-credentials/Cargo.toml @@ -9,4 +9,4 @@ repository.workspace = true version.workspace = true [dependencies] -shield = { path = "../../core/shield"} +shield = { path = "../../core/shield", version = "0.0.2" } diff --git a/packages/providers/shield-credentials/README.md b/packages/providers/shield-credentials/README.md index 62b36d6..5877162 100644 --- a/packages/providers/shield-credentials/README.md +++ b/packages/providers/shield-credentials/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/providers/shield-email/Cargo.toml b/packages/providers/shield-email/Cargo.toml index cdf8d87..a5c38e0 100644 --- a/packages/providers/shield-email/Cargo.toml +++ b/packages/providers/shield-email/Cargo.toml @@ -9,4 +9,4 @@ repository.workspace = true version.workspace = true [dependencies] -shield = { path = "../../core/shield"} +shield = { path = "../../core/shield", version = "0.0.2" } diff --git a/packages/providers/shield-email/README.md b/packages/providers/shield-email/README.md index b7665b3..6e3f9d6 100644 --- a/packages/providers/shield-email/README.md +++ b/packages/providers/shield-email/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/providers/shield-oauth/Cargo.toml b/packages/providers/shield-oauth/Cargo.toml index f8b09a9..bd5ceb2 100644 --- a/packages/providers/shield-oauth/Cargo.toml +++ b/packages/providers/shield-oauth/Cargo.toml @@ -11,4 +11,4 @@ version.workspace = true [dependencies] async-trait.workspace = true oauth2 = "4.4.2" -shield = { path = "../../core/shield"} +shield = { path = "../../core/shield", version = "0.0.2" } diff --git a/packages/providers/shield-oauth/README.md b/packages/providers/shield-oauth/README.md index e660a76..fcab3e4 100644 --- a/packages/providers/shield-oauth/README.md +++ b/packages/providers/shield-oauth/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/providers/shield-oidc/Cargo.toml b/packages/providers/shield-oidc/Cargo.toml index 3e9ca03..48a3b5d 100644 --- a/packages/providers/shield-oidc/Cargo.toml +++ b/packages/providers/shield-oidc/Cargo.toml @@ -13,5 +13,5 @@ async-trait.workspace = true chrono.workspace = true oauth2 = { version = "4.4.2", features = ["pkce-plain"] } openidconnect = "3.5.0" -shield = { path = "../../core/shield" } +shield = { path = "../../core/shield", version = "0.0.2" } tracing.workspace = true diff --git a/packages/providers/shield-oidc/README.md b/packages/providers/shield-oidc/README.md index 4f7dda3..06418dd 100644 --- a/packages/providers/shield-oidc/README.md +++ b/packages/providers/shield-oidc/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/providers/shield-webauthn/Cargo.toml b/packages/providers/shield-webauthn/Cargo.toml index fb911ff..2778d7c 100644 --- a/packages/providers/shield-webauthn/Cargo.toml +++ b/packages/providers/shield-webauthn/Cargo.toml @@ -9,4 +9,4 @@ repository.workspace = true version.workspace = true [dependencies] -shield = { path = "../../core/shield"} +shield = { path = "../../core/shield", version = "0.0.2" } diff --git a/packages/providers/shield-webauthn/README.md b/packages/providers/shield-webauthn/README.md index 0058b6b..200635c 100644 --- a/packages/providers/shield-webauthn/README.md +++ b/packages/providers/shield-webauthn/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/storage/shield-diesel/Cargo.toml b/packages/storage/shield-diesel/Cargo.toml index c51304b..58aae4f 100644 --- a/packages/storage/shield-diesel/Cargo.toml +++ b/packages/storage/shield-diesel/Cargo.toml @@ -9,4 +9,4 @@ repository.workspace = true version.workspace = true [dependencies] -shield = { path = "../../core/shield"} +shield = { path = "../../core/shield", version = "0.0.2" } diff --git a/packages/storage/shield-diesel/README.md b/packages/storage/shield-diesel/README.md index 1deedf6..23c5da1 100644 --- a/packages/storage/shield-diesel/README.md +++ b/packages/storage/shield-diesel/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/storage/shield-memory/Cargo.toml b/packages/storage/shield-memory/Cargo.toml index 4ff265b..badfc7d 100644 --- a/packages/storage/shield-memory/Cargo.toml +++ b/packages/storage/shield-memory/Cargo.toml @@ -11,12 +11,12 @@ version.workspace = true [dependencies] async-trait.workspace = true serde.workspace = true -shield = { path = "../../core/shield" } -shield-credentials = { path = "../../providers/shield-credentials", optional = true } -shield-email = { path = "../../providers/shield-email", optional = true } -shield-oauth = { path = "../../providers/shield-oauth", optional = true } -shield-oidc = { path = "../../providers/shield-oidc", optional = true } -shield-webauthn = { path = "../../providers/shield-webauthn", optional = true } +shield = { path = "../../core/shield", version = "0.0.2" } +shield-credentials = { path = "../../providers/shield-credentials", version = "0.0.2", optional = true } +shield-email = { path = "../../providers/shield-email", version = "0.0.2", optional = true } +shield-oauth = { path = "../../providers/shield-oauth", version = "0.0.2", optional = true } +shield-oidc = { path = "../../providers/shield-oidc", version = "0.0.2", optional = true } +shield-webauthn = { path = "../../providers/shield-webauthn", version = "0.0.2", optional = true } uuid = { workspace = true, features = ["v4"] } [features] diff --git a/packages/storage/shield-sea-orm/Cargo.toml b/packages/storage/shield-sea-orm/Cargo.toml index 78ce54e..d644fee 100644 --- a/packages/storage/shield-sea-orm/Cargo.toml +++ b/packages/storage/shield-sea-orm/Cargo.toml @@ -14,12 +14,12 @@ sea-orm.workspace = true sea-orm-migration.workspace = true serde = { workspace = true, features = ["derive"] } serde_json.workspace = true -shield = { path = "../../core/shield" } -shield-credentials = { path = "../../providers/shield-credentials", optional = true } -shield-email = { path = "../../providers/shield-email", optional = true } -shield-oauth = { path = "../../providers/shield-oauth", optional = true } -shield-oidc = { path = "../../providers/shield-oidc", optional = true } -shield-webauthn = { path = "../../providers/shield-webauthn", optional = true } +shield = { path = "../../core/shield", version = "0.0.2" } +shield-credentials = { path = "../../providers/shield-credentials", version = "0.0.2", optional = true } +shield-email = { path = "../../providers/shield-email", version = "0.0.2", optional = true } +shield-oauth = { path = "../../providers/shield-oauth", version = "0.0.2", optional = true } +shield-oidc = { path = "../../providers/shield-oidc", version = "0.0.2", optional = true } +shield-webauthn = { path = "../../providers/shield-webauthn", version = "0.0.2", optional = true } [features] default = [] diff --git a/packages/storage/shield-sea-orm/README.md b/packages/storage/shield-sea-orm/README.md index d49b54a..9429577 100644 --- a/packages/storage/shield-sea-orm/README.md +++ b/packages/storage/shield-sea-orm/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source. diff --git a/packages/storage/shield-sqlx/Cargo.toml b/packages/storage/shield-sqlx/Cargo.toml index 63de130..5e3c071 100644 --- a/packages/storage/shield-sqlx/Cargo.toml +++ b/packages/storage/shield-sqlx/Cargo.toml @@ -9,4 +9,4 @@ repository.workspace = true version.workspace = true [dependencies] -shield = { path = "../../core/shield"} +shield = { path = "../../core/shield", version = "0.0.2" } diff --git a/packages/storage/shield-sqlx/README.md b/packages/storage/shield-sqlx/README.md index 2a20326..8f6758f 100644 --- a/packages/storage/shield-sqlx/README.md +++ b/packages/storage/shield-sqlx/README.md @@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation. ## Rust For Web -The Shield project is part of the [Rust For Web](https://github.com/RustForWeb). +The Shield project is part of [Rust For Web](https://github.com/RustForWeb). [Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source.