mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-12-24 08:09:16 -05:00
v0.0.12
This commit is contained in:
parent
e0753e557f
commit
df691b6f38
3 changed files with 4 additions and 4 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -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)",
|
||||
|
|
|
@ -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"]
|
||||
|
|
4
build.rs
4
build.rs
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue