Skip to content

Releases: a11ywatch/accessibility-rs

v0.1.9

26 Jun 14:37
Compare
Choose a tag to compare

What's Changed

  • 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

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.

  • 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