Browse Source

updating cargo lock

pull/5/head
Jason Williams 6 years ago
parent
commit
ef91d02a72
  1. 14
      Cargo.lock
  2. 4
      Cargo.toml
  3. 2
      tests/js/test.js

14
Cargo.lock generated

@ -1,6 +1,11 @@
[[package]] [[package]]
name = "Boa" name = "bitflags"
version = "0.1.3" version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "boa"
version = "0.1.4"
dependencies = [ dependencies = [
"gc 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "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)", "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]] [[package]]
name = "cloudabi" name = "cloudabi"
version = "0.0.3" version = "0.0.3"

4
Cargo.toml

@ -1,6 +1,6 @@
[package] [package]
name = "Boa" name = "boa"
version = "0.1.3" version = "0.1.4"
authors = ["Jason Williams <jase.williams@gmail.com>"] authors = ["Jason Williams <jase.williams@gmail.com>"]
description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language." 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" homepage = "https://github.com/jasonwilliams/boa"

2
tests/js/test.js

@ -1,2 +1,2 @@
var a = new String("jason"); a = { a: 1 };
a; a;
Loading…
Cancel
Save