Skip to content

Releases: a11ywatch/accessibility-rs

v0.1.9

26 Jun 14:37
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: https://github.com/a11ywatch/accessibility-rs/commits/v0.1.9

v0.0.61

29 Mar 17:03
Compare
Choose a tag to compare

What's Changed

You can now crawl entire websites and audit them within nanoseconds-milliseconds using the spider crate.

#[spider::tokio]
async fn audit_website() {
    let mut audit_config = accessibility_rs::AuditConfig::default();
    audit_config.url = "https://choosealicense.com".into();
    let report = accessibility_rs::audit(audit_config).await;
    println!("{:?}", report)
}

New Contributors

Full Changelog: https://github.com/a11ywatch/accessibility-rs/commits/v0.0.61