Compare commits

..

No commits in common. "4ce55e73f06a758d5ee31fb15b1bb8d39077f45e" and "ae832194e7f736577e4758ea985123fbb8a26311" have entirely different histories.

5 changed files with 7 additions and 14 deletions

View file

@ -18,7 +18,7 @@ jobs:
- name: Build the source code
run: cargo build
- name: Build examples
run: cargo build -F 'simple-generator' --example simple_login
run: cargo build -F 'cacache-storage' --example simple_login
- name: Run tests
run: cargo test --tests --all-features
- name: Check the code format

View file

@ -1,6 +1,6 @@
[package]
name = "salvo-captcha"
version = "0.3.0"
version = "0.2.0"
rust-version = "1.75.0"
edition = "2021"
authors = ["Awiteb <a@4rs.nl>"]
@ -35,4 +35,4 @@ rstest = "0.22.0"
[[example]]
name = "simple_login"
required-features = ["simple-generator"]
required-features = ["simple_generator"]

View file

@ -19,7 +19,7 @@ _default:
# Run the CI (Local use only)
@ci:
cargo fmt --all --check
cargo build -F 'simple-generator' --example simple_login
cargo build -F 'simple_generator' --example simple_login
cargo clippy --workspace --all-targets --examples --tests --all-features -- -D warnings
cargo nextest run --workspace --all-targets --all-features
@{{JUST_EXECUTABLE}} msrv

View file

@ -46,14 +46,7 @@ We provide fully customizable query parameters, form fields, and headers to find
## Captcha Generator
We provide [`SimpleCaptchaGenerator`] which is a simple captcha generator based on the [`captcha`] crate, you can enable it by enabling the `simple-generator` feature.
```toml
[dependencies]
salvo-captcha = { version = "0.2", features = ["simple-generator"] }
```
You can implement your own generator by implementing the [`CaptchaGenerator`] trait.
We provide [`SimpleCaptchaGenerator`] which is a simple captcha generator based on the [`captcha`] crate. You can implement your own captcha generator by implementing the [`CaptchaGenerator`] trait.
### Captcha name and difficulty

View file

@ -9,10 +9,10 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#[cfg(feature = "simple-generator")]
#[cfg(feature = "simple_generator")]
mod simple_generator;
#[cfg(feature = "simple-generator")]
#[cfg(feature = "simple_generator")]
pub use simple_generator::*;
/// Captcha generator, used to generate a new captcha image and answer.