diff --git a/Cargo.lock b/Cargo.lock index 68093bddb7..1cc18ab244 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,11 @@ [[package]] -name = "Boa" -version = "0.1.3" +name = "bitflags" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "boa" +version = "0.1.4" dependencies = [ "gc 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "gc_derive 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -9,11 +14,6 @@ dependencies = [ "time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "bitflags" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "cloudabi" version = "0.0.3" diff --git a/Cargo.toml b/Cargo.toml index a2d85fdccf..8c4a3ac2bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "Boa" -version = "0.1.3" +name = "boa" +version = "0.1.4" 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/tests/js/test.js b/tests/js/test.js index f50dde2714..4de96f523a 100644 --- a/tests/js/test.js +++ b/tests/js/test.js @@ -1,2 +1,2 @@ -var a = new String("jason"); +a = { a: 1 }; a; \ No newline at end of file