Compare commits

...

2 commits

Author SHA1 Message Date
5324724260
chore: Bump the version to 0.3.1
All checks were successful
Rust CI / Rust CI (push) Successful in 1m45s
Signed-off-by: Awiteb <a@4rs.nl>
2024-08-12 21:37:03 +00:00
8fec483fa2
chore: Update README.md
Signed-off-by: Awiteb <a@4rs.nl>
2024-08-12 21:36:32 +00:00
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "salvo-captcha" name = "salvo-captcha"
version = "0.3.0" version = "0.3.1"
rust-version = "1.75.0" rust-version = "1.75.0"
edition = "2021" edition = "2021"
authors = ["Awiteb <a@4rs.nl>"] authors = ["Awiteb <a@4rs.nl>"]

View file

@ -14,7 +14,7 @@ First, add the following to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
salvo-captcha = "0.2" salvo-captcha = "0.3"
``` ```
Or use [`cargo add`] to add the dependency to your `Cargo.toml`: Or use [`cargo add`] to add the dependency to your `Cargo.toml`:
@ -37,7 +37,7 @@ A high-performance, concurrent, content-addressable disk cache. The storage is b
```toml ```toml
[dependencies] [dependencies]
salvo-captcha = { version = "0.2", features = ["cacache-storage"] } salvo-captcha = { version = "0.3", features = ["cacache-storage"] }
``` ```
## Captcha Finder ## Captcha Finder
@ -50,7 +50,7 @@ We provide [`SimpleCaptchaGenerator`] which is a simple captcha generator based
```toml ```toml
[dependencies] [dependencies]
salvo-captcha = { version = "0.2", features = ["simple-generator"] } salvo-captcha = { version = "0.3", features = ["simple-generator"] }
``` ```
You can implement your own generator by implementing the [`CaptchaGenerator`] trait. You can implement your own generator by implementing the [`CaptchaGenerator`] trait.