Browse Source

setting the cache back on (#105)

* setting the cache back on

* fixing bench not working
pull/106/head
Jason Williams 5 years ago committed by GitHub
parent
commit
dd62849b5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .travis.yml
  2. 3
      Cargo.toml

2
.travis.yml

@ -2,7 +2,7 @@ language: rust
rust: rust:
- stable - stable
- beta - beta
# cache: cargo cache: cargo
before_script: before_script:
- rustup component add rustfmt clippy - rustup component add rustfmt clippy
script: script:

3
Cargo.toml

@ -31,6 +31,7 @@ criterion = "^0.3.0"
crate-type = ["cdylib", "lib"] crate-type = ["cdylib", "lib"]
name = "boa" name = "boa"
path = "src/lib/lib.rs" path = "src/lib/lib.rs"
bench = false
[[bench]] [[bench]]
name = "string" name = "string"
@ -43,7 +44,9 @@ harness = false
[[bin]] [[bin]]
name = "boa" name = "boa"
path = "src/bin/bin.rs" path = "src/bin/bin.rs"
bench = false
[[bin]] [[bin]]
name = "boashell" name = "boashell"
path = "src/bin/shell.rs" path = "src/bin/shell.rs"
bench = false

Loading…
Cancel
Save