We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f0724d commit ae31f18Copy full SHA for ae31f18
mozjs-sys/Cargo.toml
@@ -2,7 +2,7 @@
2
name = "mozjs_sys"
3
description = "System crate for the Mozilla SpiderMonkey JavaScript engine."
4
repository.workspace = true
5
-version = "0.128.0-8"
+version = "0.128.0-9"
6
authors = ["Mozilla"]
7
links = "mozjs"
8
build = "build.rs"
mozjs-sys/build.rs
@@ -123,6 +123,8 @@ fn should_build_from_source() -> bool {
123
"Environment variable MOZJS_CREATE_ARCHIVE is set. Building from source directly."
124
);
125
true
126
+ } else if env::var_os("MOZJS_ARCHIVE").is_some() {
127
+ false
128
} else if env::var_os("CARGO_FEATURE_DEBUGMOZJS").is_some() {
129
println!("debug-mozjs feature is enabled. Building from source directly.");
130
0 commit comments