diff --git a/.travis.yml b/.travis.yml index af83f396fd..698e969656 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: rust rust: - stable - beta -# cache: cargo +cache: cargo before_script: - rustup component add rustfmt clippy script: diff --git a/Cargo.toml b/Cargo.toml index 45e845f5f8..5cb98534c6 100644 --- a/Cargo.toml +++ b/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