Skip to content

Commit

Permalink
Rename to Shield
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielleHuisman committed Dec 8, 2024
1 parent c2e1caf commit d743c9a
Show file tree
Hide file tree
Showing 54 changed files with 326 additions and 170 deletions.
152 changes: 76 additions & 76 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resolver = "2"
authors = ["Rust For Web <info@rustforweb.org>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/RustForWeb/auth"
repository = "https://github.com/RustForWeb/shield"
version = "0.0.1"

[workspace.dependencies]
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<h1 align="center">Auth</h1>
<h1 align="center">Shield</h1>

Web authentication for Rust.

## Documentation

TODO
See [the Shield book](https://shield.rustforweb.org/) for documentation.

## Credits

Expand All @@ -16,6 +16,6 @@ This project is available under the [MIT license](LICENSE.md).

## Rust For Web

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

[Rust For Web](https://github.com/RustForWeb) creates and ports web UI libraries for Rust. All projects are free and open source.
[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 book/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ authors = ["Daniëlle Huisman"]
language = "en"
multilingual = false
src = "src"
title = "Auth"
title = "Shield"

[preprocessor.tabs]

[output.html]
additional-css = ["theme/tabs.css", "theme/theme.css"]
additional-js = ["theme/tabs.js"]
edit-url-template = "https://github.com/RustForWeb/auth/edit/main/book/{path}"
git-repository-url = "https://github.com/RustForWeb/auth"
edit-url-template = "https://github.com/RustForWeb/shield/edit/main/book/{path}"
git-repository-url = "https://github.com/RustForWeb/shield"

[rust]
edition = "2021"
6 changes: 3 additions & 3 deletions book/src/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ Web authentication for Rust.

## License

This project is available under the [MIT license](https://github.com/RustForWeb/auth/blob/main/LICENSE.md).
This project is available under the [MIT license](https://github.com/RustForWeb/shield/blob/main/LICENSE.md).

## Rust For Web

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

[Rust For Web](https://github.com/RustForWeb) creates and ports web UI libraries for Rust. All projects are free and open source.
[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 examples/leptos-actix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "auth-examples-leptos-actix"
name = "shield-examples-leptos-actix"
description = "Example with Leptos and Actix."
publish = false

Expand Down
2 changes: 1 addition & 1 deletion examples/leptos-axum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "auth-examples-leptos-axum"
name = "shield-examples-leptos-axum"
description = "Example with Leptos and Axum."
publish = false

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "@rustforweb/auth",
"name": "@rustforweb/shield",
"description": "Web authentication for Rust.",
"author": "Rust For Web <info@rustforweb.org>",
"repository": "github:RustForWeb/auth",
"repository": "github:RustForWeb/shield",
"license": "MIT",
"private": true,
"scripts": {},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "auth"
name = "shield"
description = "Web authentication for Rust."

authors.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions packages/core/shield/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<h1 align="center">Shield</h1>

Web authentication for Rust.

## Documentation

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).

[Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions packages/integrations/shield-actix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "shield-actix"
description = "Actix integration for Shield."

authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true

[dependencies]
13 changes: 13 additions & 0 deletions packages/integrations/shield-actix/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<h1 align="center">Shield Actix</h1>

[Actix](https://actix.rs/) integration for Shield.

## Documentation

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).

[Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auth-leptos"
description = "Leptos integration for Auth."
name = "shield-axum"
description = "Axum integration for Shield."

authors.workspace = true
edition.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions packages/integrations/shield-axum/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<h1 align="center">Shield Axum</h1>

[Axum](https://github.com/tokio-rs/axum) integration for Shield.

## Documentation

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).

[Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source.
File renamed without changes.
11 changes: 11 additions & 0 deletions packages/integrations/shield-leptos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "shield-leptos"
description = "Leptos integration for Shield."

authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
version.workspace = true

[dependencies]
13 changes: 13 additions & 0 deletions packages/integrations/shield-leptos/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<h1 align="center">Shield Leptos</h1>

[Leptos](https://leptos.dev/) integration for Shield.

## Documentation

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).

[Rust For Web](https://github.com/RustForWeb) creates and ports web libraries for Rust. All projects are free and open source.
11 changes: 0 additions & 11 deletions packages/providers/auth-credentials/Cargo.toml

This file was deleted.

11 changes: 0 additions & 11 deletions packages/providers/auth-email/Cargo.toml

This file was deleted.

11 changes: 0 additions & 11 deletions packages/providers/auth-oauth/Cargo.toml

This file was deleted.

Loading

0 comments on commit d743c9a

Please sign in to comment.