Compare commits

..

5 commits

Author SHA1 Message Date
4ce55e73f0
chore: Bump the version to 0.3.0
Some checks failed
Rust CI / Rust CI (push) Failing after 48s
Signed-off-by: Awiteb <a@4rs.nl>
2024-08-12 21:08:14 +00:00
3b957ccfc5
chore: Update README.md
Signed-off-by: Awiteb <a@4rs.nl>
2024-08-12 21:07:55 +00:00
c1e6a76a79
chore!: Rename simple_generator feature to simple-generator
Signed-off-by: Awiteb <a@4rs.nl>
2024-08-12 21:06:32 +00:00
ae832194e7
chore: Bump the version to 0.2.0
Some checks failed
Rust CI / Rust CI (push) Failing after 49s
Signed-off-by: Awiteb <a@4rs.nl>
2024-08-12 20:44:21 +00:00
dab2db43cf
docs: Improve the docs
Some checks failed
Rust CI / Rust CI (push) Failing after 50s
Signed-off-by: Awiteb <a@4rs.nl>
2024-08-12 20:43:14 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@ either = { version = "1.13.0", default-features = false }
[features]
cacache-storage = ["dep:cacache"]
simple-generator = ["dep:captcha"]
simple_generator = ["dep:captcha"]
[dev-dependencies]
tempfile = "3.9"

View file

@ -42,7 +42,7 @@ pub const CAPTCHA_STATE_KEY: &str = "::salvo_captcha::captcha_state";
/// [`CaptchaState`] into the depot, you can get the captcha state from the
/// depot using the [`CaptchaDepotExt::get_captcha_state`] trait, which is
/// implemented for the [`Depot`].
///
///
/// Check the [`examples`](https://git.4rs.nl/awiteb/salvo-captcha/src/branch/master/examples) for more information.
#[non_exhaustive]
pub struct Captcha<S, F>