diff --git a/.github/workflows/tests.yml b/.github/workflows/CI.yml similarity index 98% rename from .github/workflows/tests.yml rename to .github/workflows/CI.yml index 5d5e5d8..ea85c4f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/CI.yml @@ -1,4 +1,4 @@ -name: Build and test +name: CI on: push: diff --git a/README.md b/README.md index b3d8b02..8491d48 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,16 @@ -# ✨ kayle +# kayle -The blazing fast and accurate web accessibility engine. +[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE) +[![CI](https://github.com/a11ywatch/kayle/actions/workflows/CI.yml/badge.svg)](https://github.com/a11ywatch/kayle/actions?query=workflow%3ABuild) +[![Discord chat][discord-badge]][discord-url] + +A **fast** and **accurate** web accessibility engine. + +- Leading in performance +- Asynchronous design +- Tested and **correct** +- Extensive production use +- Works with headless browsers like ([playwright](https://github.com/microsoft/playwright) and [puppeteer](https://github.com/puppeteer/puppeteer)) or raw markup ## Getting Started @@ -252,3 +262,6 @@ One of the main goals was to have the audit run quickly since we noticed some of ## LICENSE Check the license file in the root of each project. + +[discord-badge]: https://img.shields.io/discord/860982761137111040.svg?logo=discord +[discord-url]: https://discord.gg/ukmJcjQ5 \ No newline at end of file diff --git a/kayle_innate/Cargo.lock b/kayle_innate/Cargo.lock index 23eb3fb..79c8ff4 100644 --- a/kayle_innate/Cargo.lock +++ b/kayle_innate/Cargo.lock @@ -4,9 +4,9 @@ version = 3 [[package]] name = "accessibility-rs" -version = "0.0.12" +version = "0.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8f563f45742a3b0e366ed5c3915136695fbd8de8e0769b518cebc9661bcbe52" +checksum = "8445979c51da3e678f649fe6506ea1b9246c4d4a83ec2894909e9883e39290a5" dependencies = [ "accessibility-scraper", "accessibility-tree", diff --git a/kayle_innate/kayle_innate/Cargo.toml b/kayle_innate/kayle_innate/Cargo.toml index 382e034..3b57064 100644 --- a/kayle_innate/kayle_innate/Cargo.toml +++ b/kayle_innate/kayle_innate/Cargo.toml @@ -34,7 +34,7 @@ ego-tree = { workspace = true } markup5ever = "0.11.0" cssparser = { workspace = true } slotmap = "1.0.6" -accessibility-rs = "0.0.12" +accessibility-rs = "^0.0.16" [dev-dependencies] wasm-bindgen-test = "0.3.37"