0
0
Fork 0
mirror of https://github.com/denoland/rusty_v8.git synced 2024-12-24 08:09:16 -05:00
This commit is contained in:
Ryan Dahl 2019-12-18 09:42:54 -05:00 committed by Ry Dahl
parent e0753e557f
commit df691b6f38
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View file

@ -65,7 +65,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "rusty_v8"
version = "0.0.11"
version = "0.0.12"
dependencies = [
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"cargo_gn 0.0.13 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -1,6 +1,6 @@
[package]
name = "rusty_v8"
version = "0.0.11"
version = "0.0.12"
description = "Rust bindings to V8"
readme = "README.md"
authors = ["the Deno authors"]

View file

@ -22,9 +22,9 @@ fn main() {
exit(1);
}
// Don't build if "cargo doc" is being run.
// Don't build if "cargo doc" is being run. This is to support docs.rs.
if env::var_os("RUSTDOCFLAGS").is_some() {
exit(1);
exit(0);
}
if need_gn_ninja_download() {