From f61d9f61a6808e512ac59480776fe3cb2c5727b9 Mon Sep 17 00:00:00 2001 From: Jason Williams Date: Thu, 20 Sep 2018 11:14:18 +0100 Subject: [PATCH 1/2] documentation added --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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" From 4c5b380283e6209ee4b32994e7175837764e388a Mon Sep 17 00:00:00 2001 From: Jason Williams Date: Thu, 20 Sep 2018 11:16:37 +0100 Subject: [PATCH 2/2] link to docs --- README.md | 1 + 1 file changed, 1 insertion(+) 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