Skip to content

Commit

Permalink
Fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielleHuisman committed Dec 28, 2024
1 parent d7f521f commit 47c3d23
Show file tree
Hide file tree
Showing 31 changed files with 46 additions and 46 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion book/src/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion packages/core/shield/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion packages/core/shield/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion packages/integrations/shield-actix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion packages/integrations/shield-actix/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions packages/integrations/shield-axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion packages/integrations/shield-axum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
6 changes: 3 additions & 3 deletions packages/integrations/shield-leptos-actix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
6 changes: 3 additions & 3 deletions packages/integrations/shield-leptos-axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion packages/integrations/shield-leptos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion packages/integrations/shield-leptos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion packages/integrations/shield-tower/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/shield-tower/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion packages/providers/shield-credentials/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ repository.workspace = true
version.workspace = true

[dependencies]
shield = { path = "../../core/shield"}
shield = { path = "../../core/shield", version = "0.0.2" }
2 changes: 1 addition & 1 deletion packages/providers/shield-credentials/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion packages/providers/shield-email/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ repository.workspace = true
version.workspace = true

[dependencies]
shield = { path = "../../core/shield"}
shield = { path = "../../core/shield", version = "0.0.2" }
2 changes: 1 addition & 1 deletion packages/providers/shield-email/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion packages/providers/shield-oauth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion packages/providers/shield-oauth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion packages/providers/shield-oidc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion packages/providers/shield-oidc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion packages/providers/shield-webauthn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ repository.workspace = true
version.workspace = true

[dependencies]
shield = { path = "../../core/shield"}
shield = { path = "../../core/shield", version = "0.0.2" }
2 changes: 1 addition & 1 deletion packages/providers/shield-webauthn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion packages/storage/shield-diesel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ repository.workspace = true
version.workspace = true

[dependencies]
shield = { path = "../../core/shield"}
shield = { path = "../../core/shield", version = "0.0.2" }
2 changes: 1 addition & 1 deletion packages/storage/shield-diesel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
12 changes: 6 additions & 6 deletions packages/storage/shield-memory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
12 changes: 6 additions & 6 deletions packages/storage/shield-sea-orm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down
2 changes: 1 addition & 1 deletion packages/storage/shield-sea-orm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion packages/storage/shield-sqlx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ repository.workspace = true
version.workspace = true

[dependencies]
shield = { path = "../../core/shield"}
shield = { path = "../../core/shield", version = "0.0.2" }
2 changes: 1 addition & 1 deletion packages/storage/shield-sqlx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit 47c3d23

Please sign in to comment.