Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mozjs-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "mozjs_sys"
description = "System crate for the Mozilla SpiderMonkey JavaScript engine."
repository.workspace = true
version = "0.140.8-2"
version = "0.140.8-3"
authors = ["Mozilla", "The Servo Project Developers"]
links = "mozjs"
license.workspace = true
Expand Down
3 changes: 3 additions & 0 deletions mozjs-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,9 @@ fn should_build_from_source() -> bool {
} else if !env::var_os("CARGO_FEATURE_JIT").is_some() {
println!("jit feature is NOT enabled. Building from source directly.");
true
} else if env::var_os("CARGO_FEATURE_JITSPEW").is_some() {
println!("jitspew feature is enabled. Building from source directly.");
true
} else {
false
}
Expand Down
4 changes: 2 additions & 2 deletions mozjs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "mozjs"
description = "Rust bindings to the Mozilla SpiderMonkey JavaScript engine."
repository.workspace = true
version = "0.15.7"
version = "0.15.8"
authors = ["The Servo Project Developers"]
license.workspace = true
edition.workspace = true
Expand All @@ -27,7 +27,7 @@ encoding_rs = "0.8.35"
libc.workspace = true
log = "0.4"
# When doing non-version changes also update ../mozjs-sys/etc/sm-security-bump.py
mozjs_sys = { version = "=0.140.8-2", path = "../mozjs-sys" }
mozjs_sys = { version = "=0.140.8-3", path = "../mozjs-sys" }
num-traits = "0.2"

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
Expand Down
Loading