diff --git a/Cargo.toml b/Cargo.toml index 5f6de5f..f389029 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ ] [workspace.package] -version = "0.4.2" +version = "0.5.0" authors = ["Kailan Blanks "] license = "MIT" edition = "2018" diff --git a/README.md b/README.md index c31f241..6c57d5a 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ This crate provides a streaming Edge Side Includes parser and executor designed The implementation is a subset of the [ESI Language Specification 1.0](https://www.w3.org/TR/esi-lang/) supporting the following tags: - `` (+ `alt`, `onerror="continue"`) +- `` | `` | `` - `` - `` @@ -82,6 +83,7 @@ In order to run the test suite for the packages in this repository, [`viceroy`]( ```sh cargo install viceroy ``` + ## License The source and documentation for this project are released under the [MIT License](./LICENSE). diff --git a/esi/src/lib.rs b/esi/src/lib.rs index 76446c0..13b176a 100644 --- a/esi/src/lib.rs +++ b/esi/src/lib.rs @@ -1,4 +1,4 @@ -#![doc = include_str!("../../README.md")] +#![doc = include_str!("../README.md")] mod config; mod document;