Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
- name: Set up Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy, rustfmt
components: clippy, rustfmt, rust-src
target: wasm32-unknown-unknown

- name: Test
run: cargo test --locked --release
run: cargo test --all-features --locked --release
157 changes: 153 additions & 4 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ email_address = { version = "0.2.9", default-features = false }
fortifier = { path = "./packages/fortifier", version = "0.0.1" }
fortifier-macros = { path = "./packages/fortifier-macros", version = "0.0.1" }
indexmap = "2.12.0"
phonenumber = "0.3.7"
regex = "1.12.2"
serde = "1.0.228"
serde_json = "1.0.145"
Expand Down
1 change: 1 addition & 0 deletions book/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- [Validations](./validations/README.md)
- [Email](./validations/email.md)
- [Length](./validations/length.md)
- [Phone Number](./validations/phone-number.md)
- [Regex]()
- [URL](./validations/url.md)
- [Integrations]()
Expand Down
13 changes: 9 additions & 4 deletions book/src/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@

Schema validation.

- Synchronous and asynchronous validation
- Enums and structs
- Synchronous & asynchronous validation
- Enums & structs
- Typed errors
- Email, regex, URL and more
- Support for Serde and Utoipa
- Built-in validations
- Email
- Length
- Phone number
- Regex
- URL
- Support for Serde & Utoipa

## Credits

Expand Down
1 change: 1 addition & 0 deletions book/src/validations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

- [Email](./email.md)
- [Length](./length.md)
- [Phone Number](./phone-number.md)
- [URL](./url.md)
Loading