Skip to content

Commit 47c3d23

Browse files
Fix versions
1 parent d7f521f commit 47c3d23

31 files changed

Lines changed: 46 additions & 46 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ This project is available under the [MIT license](LICENSE.md).
1616

1717
## Rust For Web
1818

19-
The Shield project is part of the [Rust For Web](https://github.com/RustForWeb).
19+
The Shield project is part of [Rust For Web](https://github.com/RustForWeb).
2020

2121
[Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source.

book/src/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ This project is available under the [MIT license](https://github.com/RustForWeb/
88

99
## Rust For Web
1010

11-
The Shield project is part of the [Rust For Web](https://github.com/RustForWeb).
11+
The Shield project is part of [Rust For Web](https://github.com/RustForWeb).
1212

1313
[Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source.

packages/core/shield/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ version.workspace = true
1212
async-trait.workspace = true
1313
chrono = { workspace = true, features = ["serde"] }
1414
futures.workspace = true
15-
serde.workspace = true
15+
serde = { workspace = true, features = ["derive"] }
1616
serde_json.workspace = true
1717
thiserror.workspace = true
1818
tracing.workspace = true

packages/core/shield/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation.
88

99
## Rust For Web
1010

11-
The Shield project is part of the [Rust For Web](https://github.com/RustForWeb).
11+
The Shield project is part of [Rust For Web](https://github.com/RustForWeb).
1212

1313
[Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source.

packages/integrations/shield-actix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ version.workspace = true
1212
actix-session.workspace = true
1313
actix-utils.workspace = true
1414
actix-web.workspace = true
15-
shield = { path = "../../core/shield" }
15+
shield = { path = "../../core/shield", version = "0.0.2" }

packages/integrations/shield-actix/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation.
88

99
## Rust For Web
1010

11-
The Shield project is part of the [Rust For Web](https://github.com/RustForWeb).
11+
The Shield project is part of [Rust For Web](https://github.com/RustForWeb).
1212

1313
[Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source.

packages/integrations/shield-axum/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ async-trait.workspace = true
1313
axum.workspace = true
1414
serde.workspace = true
1515
serde_json.workspace = true
16-
shield = { path = "../../core/shield" }
17-
shield-tower = { path = "../shield-tower" }
16+
shield = { path = "../../core/shield", version = "0.0.2" }
17+
shield-tower = { path = "../shield-tower", version = "0.0.2" }

packages/integrations/shield-axum/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ See [the Shield book](https://shield.rustforweb.org/) for documentation.
88

99
## Rust For Web
1010

11-
The Shield project is part of the [Rust For Web](https://github.com/RustForWeb).
11+
The Shield project is part of [Rust For Web](https://github.com/RustForWeb).
1212

1313
[Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source.

packages/integrations/shield-leptos-actix/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ version.workspace = true
1212
async-trait.workspace = true
1313
leptos.workspace = true
1414
leptos_actix.workspace = true
15-
shield = { path = "../../core/shield" }
16-
shield-actix = { path = "../../integrations/shield-actix" }
17-
shield-leptos = { path = "../../integrations/shield-leptos" }
15+
shield = { path = "../../core/shield", version = "0.0.2" }
16+
shield-actix = { path = "../../integrations/shield-actix", version = "0.0.2" }
17+
shield-leptos = { path = "../../integrations/shield-leptos", version = "0.0.2" }

packages/integrations/shield-leptos-axum/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ version.workspace = true
1212
async-trait.workspace = true
1313
leptos.workspace = true
1414
leptos_axum.workspace = true
15-
shield = { path = "../../core/shield" }
16-
shield-axum = { path = "../../integrations/shield-axum" }
17-
shield-leptos = { path = "../../integrations/shield-leptos" }
15+
shield = { path = "../../core/shield", version = "0.0.2" }
16+
shield-axum = { path = "../../integrations/shield-axum", version = "0.0.2" }
17+
shield-leptos = { path = "../../integrations/shield-leptos", version = "0.0.2" }

0 commit comments

Comments
 (0)