Skip to content

v0.0.61

Latest
Compare
Choose a tag to compare
@j-mendez j-mendez released this 29 Mar 17:03
· 2 commits to main since this release

What's Changed

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

  • chore(css): update cssparser@0.27.0 by @j-mendez in #3
  • add validation for missing alt attribute on <map> and <area> tags. by @emonidi in #5
  • feat(rayon): add rayon audit iterations by @j-mendez in #6
  • feat(spider): add sitewide auditing
#[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