diff options
-rw-r--r-- | Cargo.lock | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 6435d7fad3b..4eb629a97b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -329,7 +329,7 @@ dependencies = [ "bitflags 2.5.0", "cexpr", "clang-sys", - "itertools 0.10.5", + "itertools 0.12.1", "lazy_static", "lazycell", "log", @@ -3305,7 +3305,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19" dependencies = [ "cfg-if", - "windows-targets 0.48.5", + "windows-targets 0.52.0", ] [[package]] @@ -3709,7 +3709,7 @@ dependencies = [ [[package]] name = "mozjs" version = "0.14.1" -source = "git+https://github.com/servo/mozjs#d1f1519b8a9a57d97e3f623ea119e86c5dcbf524" +source = "git+https://github.com/servo/mozjs#b695c63b6d832eff191f6785dd56539376ae4332" dependencies = [ "bindgen", "cc", @@ -3722,15 +3722,17 @@ dependencies = [ [[package]] name = "mozjs_sys" -version = "0.68.2" -source = "git+https://github.com/servo/mozjs#d1f1519b8a9a57d97e3f623ea119e86c5dcbf524" +version = "0.115.9-0" +source = "git+https://github.com/servo/mozjs#b695c63b6d832eff191f6785dd56539376ae4332" dependencies = [ "bindgen", "cc", "encoding_c", "encoding_c_mem", + "flate2", "libc", "libz-sys", + "tar", "walkdir", ] @@ -5980,6 +5982,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" [[package]] +name = "tar" +version = "0.4.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb" +dependencies = [ + "filetime", + "libc", + "xattr", +] + +[[package]] name = "target-lexicon" version = "0.12.14" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -7461,6 +7474,17 @@ dependencies = [ ] [[package]] +name = "xattr" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" +dependencies = [ + "libc", + "linux-raw-sys", + "rustix", +] + +[[package]] name = "xcursor" version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" |