Boa 0.5.1

Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language.
Documentation
[[bench]]
harness = false
name = "string"

[[bench]]
harness = false
name = "fib"

[[bench]]
harness = false
name = "exec"

[[bin]]
bench = false
name = "boa"
path = "src/bin/bin.rs"

[[bin]]
bench = false
name = "boashell"
path = "src/bin/shell.rs"
[dependencies.gc]
version = "^0.3.3"

[dependencies.gc_derive]
version = "^0.3.2"

[dependencies.rand]
version = "^0.7.0"

[dependencies.regex]
version = "^1.3.0"

[dependencies.serde_json]
version = "^1.0.40"

[dependencies.structopt]
version = "0.3.2"

[dependencies.wasm-bindgen]
optional = true
version = "^0.2.50"
[dev-dependencies.criterion]
version = "^0.3.0"

[features]
default = ["wasm-bindgen"]

[lib]
bench = false
crate-type = ["cdylib", "lib"]
name = "boa"
path = "src/lib/lib.rs"

[package]
authors = ["Jason Williams <jase.williams@gmail.com>"]
default-run = "boa"
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language."
edition = "2018"
exclude = [".vscode/*", "Dockerfile", "Makefile", ".editorConfig"]
homepage = "https://github.com/jasonwilliams/boa"
keywords = ["javascript", "compiler", "lexer", "parser", "js"]
license = "Unlicense/MIT"
name = "Boa"
repository = "https://github.com/jasonwilliams/boa"
version = "0.5.1"