captcha-rs 0.5.0

Generate verification images dynamically
Documentation
1
2
3
4
5
6
7
8
9
use captcha_rs::CaptchaBuilder;

#[test]
fn test_dos() {
    let _ = CaptchaBuilder::new()
        .length(100_000_000)
        .build();
    println!("Done");
}