mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Auto merge of #21516 - servo:bindgenup, r=SimonSapin
Update bindgen to 0.39.0 This fixes a build error for i686-linux-android with some versions of libclang: ```rust error[E0560]: struct `generated::root::JS::Value` has no field named `__bindgen_align`sys --> /home/simon/projects/mozjs/src/jsval.rs:83:2 | 83 | __bindgen_align: [], | ^^^^^^^^^^^^^^^ `generated::root::JS::Value` does not have this field | = note: available fields are: `data` error: aborting due to previous error ``` <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21516) <!-- Reviewable:end -->
This commit is contained in:
commit
f2306c8e19
4 changed files with 15 additions and 14 deletions
|
@ -29,7 +29,7 @@ euclid = "0.19"
|
|||
hashglobe = { path = "../hashglobe" }
|
||||
hyper = { version = "0.10", optional = true }
|
||||
hyper_serde = { version = "0.8", optional = true }
|
||||
mozjs = { version = "0.8.0", optional = true }
|
||||
mozjs = { version = "0.9.0", optional = true }
|
||||
selectors = { path = "../selectors" }
|
||||
serde = { version = "1.0.27", optional = true }
|
||||
serde_bytes = { version = "0.10", optional = true }
|
||||
|
|
|
@ -65,7 +65,7 @@ metrics = {path = "../metrics"}
|
|||
mitochondria = "1.1.2"
|
||||
mime = "0.2.1"
|
||||
mime_guess = "1.8.0"
|
||||
mozjs = "0.8.0"
|
||||
mozjs = "0.9.0"
|
||||
msg = {path = "../msg"}
|
||||
net_traits = {path = "../net_traits"}
|
||||
num-traits = "0.2"
|
||||
|
|
|
@ -76,7 +76,7 @@ void = "1.0.2"
|
|||
[build-dependencies]
|
||||
lazy_static = "1"
|
||||
log = "0.4"
|
||||
bindgen = { version = "0.37", optional = true, default-features = false }
|
||||
bindgen = { version = "0.39", optional = true, default-features = false }
|
||||
regex = {version = "1.0", optional = true}
|
||||
walkdir = "2.1.4"
|
||||
toml = {version = "0.4.5", optional = true, default-features = false}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue