captcha-rs 0.5.0

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

#[test]
fn test_large_text() {
    let large_text = "A".repeat(10_000_000);
    let _ = CaptchaBuilder::new()
        .text(large_text)
        .build();
    println!("Done large text");
}