diff --git a/Cargo.lock b/Cargo.lock index ef95211f66..a7d3c09d72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,4 +1,4 @@ [[package]] -name = "boa" -version = "0.1.1" +name = "Boa" +version = "0.1.2" diff --git a/Cargo.toml b/Cargo.toml index f4d339f4e1..053bb5579e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "boa" -version = "0.1.1" +name = "Boa" +version = "0.1.2" authors = ["Jason Williams "] description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language." homepage = "https://github.com/jasonwilliams/boa" diff --git a/README.md b/README.md index 6d771c8ae0..737049209b 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,7 @@ This is an experimental Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language. [![Build Status](https://travis-ci.com/jasonwilliams/boa.svg?branch=master)](https://travis-ci.com/jasonwilliams/boa) [![](http://meritbadge.herokuapp.com/boa)](https://crates.io/crates/boa) +[![](https://docs.rs/Boa/badge.svg)](https://docs.rs/Boa/) This project is an attempted rewrite of Bebbington's js.rs and will look very, very similar to it for a while. As that repo has not been touched in a long time a lot of the Rust is out-of-date so a lot of things are probably in error by today's standards