diff --git a/Cargo.toml b/Cargo.toml index ccb1212..85ec684 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "ara_parser" description = "A fault-tolerant, recursive-descent parser for Ara Programming Language 🌲" repository = "https://github.com/ara-lang/ara" -version = "0.6.3" +version = "0.6.4" edition = "2021" license = "MIT OR Apache-2.0" authors = ["Saif Eddin Gmati "] @@ -19,7 +19,7 @@ path = "bin/snapshot.rs" [dependencies] ara_source = { version = "0.2.0" } -ara_reporting = { version = "0.6.0" } +ara_reporting = { version = "0.6.1" } schemars = { version = "0.8.11" } serde = { version = "1.0.149", features = ["derive"] } serde_json = { version = "1.0.89" } diff --git a/README.md b/README.md index b8589a3..38f61fa 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Add `ara_parser` to your `Cargo.toml`, and you're good to go! ```toml [dependencies] -ara_parser = "0.6.3" +ara_parser = "0.6.4" ``` ## Example