Compare commits
No commits in common. "53247242608fafb562c5372b4545616be28c5f3d" and "625da219419f61dd38995dc521a362bd9d47cd2f" have entirely different histories.
5324724260
...
625da21941
2 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "salvo-captcha"
|
||||
version = "0.3.1"
|
||||
version = "0.3.0"
|
||||
rust-version = "1.75.0"
|
||||
edition = "2021"
|
||||
authors = ["Awiteb <a@4rs.nl>"]
|
||||
|
|
|
@ -14,7 +14,7 @@ First, add the following to your `Cargo.toml`:
|
|||
|
||||
```toml
|
||||
[dependencies]
|
||||
salvo-captcha = "0.3"
|
||||
salvo-captcha = "0.2"
|
||||
```
|
||||
|
||||
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
|
||||
[dependencies]
|
||||
salvo-captcha = { version = "0.3", features = ["cacache-storage"] }
|
||||
salvo-captcha = { version = "0.2", features = ["cacache-storage"] }
|
||||
```
|
||||
|
||||
## Captcha Finder
|
||||
|
@ -50,7 +50,7 @@ We provide [`SimpleCaptchaGenerator`] which is a simple captcha generator based
|
|||
|
||||
```toml
|
||||
[dependencies]
|
||||
salvo-captcha = { version = "0.3", features = ["simple-generator"] }
|
||||
salvo-captcha = { version = "0.2", features = ["simple-generator"] }
|
||||
```
|
||||
|
||||
You can implement your own generator by implementing the [`CaptchaGenerator`] trait.
|
||||
|
|
Loading…
Reference in a new issue