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:
- stable
- beta
# cache: cargo
cache: cargo
before_script:
- rustup component add rustfmt clippy
script:

3
Cargo.toml

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

Loading…
Cancel
Save