File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
name = " mozjs_sys"
3
3
description = " System crate for the Mozilla SpiderMonkey JavaScript engine."
4
4
repository = " https://github.com/servo/mozjs/"
5
- version = " 0.51.3 "
5
+ version = " 0.51.4 "
6
6
authors = [" Mozilla" ]
7
7
links = " mozjs"
8
8
build = " build.rs"
@@ -27,5 +27,5 @@ libc = "0.2"
27
27
libz-sys = " 1.0"
28
28
29
29
[build-dependencies ]
30
- bindgen = " 0.36.1 "
30
+ bindgen = " 0.37 "
31
31
cc = " 1.0"
Original file line number Diff line number Diff line change @@ -183,9 +183,9 @@ impl JSAutoCompartment {
183
183
impl JS :: AutoGCRooter {
184
184
pub fn new_unrooted ( tag : JS :: AutoGCRooterTag ) -> JS :: AutoGCRooter {
185
185
JS :: AutoGCRooter {
186
- down : ptr:: null ( ) ,
186
+ down : ptr:: null_mut ( ) ,
187
187
tag_ : tag as isize ,
188
- stackTop : ptr:: null ( ) ,
188
+ stackTop : ptr:: null_mut ( ) ,
189
189
}
190
190
}
191
191
You can’t perform that action at this time.
0 commit comments