Skip to content

Commit

Permalink
WR update
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrouget committed Aug 6, 2018
1 parent 2f14e33 commit 0d9161d
Show file tree
Hide file tree
Showing 22 changed files with 140 additions and 140 deletions.
204 changes: 102 additions & 102 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions components/canvas/Cargo.toml
Expand Up @@ -14,13 +14,13 @@ azure = {git = "https://github.com/servo/rust-azure"}
canvas_traits = {path = "../canvas_traits"}
compositing = {path = "../compositing"}
cssparser = "0.24"
euclid = "0.18"
euclid = "0.19"
fnv = "1.0"
gleam = "0.6"
ipc-channel = "0.10"
log = "0.4"
num-traits = "0.1.32"
offscreen_gl_context = {version = "0.20", features = ["serde", "osmesa"]}
offscreen_gl_context = {version = "0.21", features = ["serde", "osmesa"]}
serde_bytes = "0.10"
servo_config = {path = "../config"}
webrender = {git = "https://github.com/servo/webrender"}
Expand Down
4 changes: 2 additions & 2 deletions components/canvas_traits/Cargo.toml
Expand Up @@ -11,13 +11,13 @@ path = "lib.rs"

[dependencies]
cssparser = "0.24.0"
euclid = "0.18"
euclid = "0.19"
ipc-channel = "0.10"
gleam = "0.6"
lazy_static = "1"
malloc_size_of = { path = "../malloc_size_of" }
malloc_size_of_derive = { path = "../malloc_size_of_derive" }
offscreen_gl_context = {version = "0.20", features = ["serde"]}
offscreen_gl_context = {version = "0.21", features = ["serde"]}
serde = "1.0"
serde_bytes = "0.10"
servo_config = {path = "../config"}
Expand Down
2 changes: 1 addition & 1 deletion components/compositing/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ default = []

[dependencies]
embedder_traits = {path = "../embedder_traits"}
euclid = "0.18"
euclid = "0.19"
gfx_traits = {path = "../gfx_traits"}
gleam = {version = "0.6", optional = true}
image = "0.19"
Expand Down
2 changes: 1 addition & 1 deletion components/config/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ test = false
doctest = false

[dependencies]
euclid = "0.18"
euclid = "0.19"
embedder_traits = { path = "../embedder_traits" }
getopts = "0.2.11"
lazy_static = "1"
Expand Down
2 changes: 1 addition & 1 deletion components/constellation/Cargo.toml
Expand Up @@ -18,7 +18,7 @@ canvas_traits = {path = "../canvas_traits"}
compositing = {path = "../compositing"}
debugger = {path = "../debugger"}
devtools_traits = {path = "../devtools_traits"}
euclid = "0.18"
euclid = "0.19"
embedder_traits = { path = "../embedder_traits" }
gfx = {path = "../gfx"}
gfx_traits = {path = "../gfx_traits"}
Expand Down
4 changes: 2 additions & 2 deletions components/geometry/Cargo.toml
Expand Up @@ -10,8 +10,8 @@ name = "servo_geometry"
path = "lib.rs"

[dependencies]
app_units = "0.6"
euclid = "0.18"
app_units = "0.7"
euclid = "0.19"
malloc_size_of = { path = "../malloc_size_of" }
malloc_size_of_derive = { path = "../malloc_size_of_derive" }
style_traits = { path = "../style_traits" }
Expand Down
8 changes: 4 additions & 4 deletions components/gfx/Cargo.toml
Expand Up @@ -16,9 +16,9 @@ doctest = false
unstable = ["packed_simd"]

[dependencies]
app_units = "0.6"
app_units = "0.7"
bitflags = "1.0"
euclid = "0.18"
euclid = "0.19"
fnv = "1.0"
fontsan = {git = "https://github.com/servo/fontsan"}
gfx_traits = {path = "../gfx_traits"}
Expand Down Expand Up @@ -48,8 +48,8 @@ ucd = "0.1.1"
[target.'cfg(target_os = "macos")'.dependencies]
byteorder = "1.0"
core-foundation = "0.6"
core-graphics = "0.14"
core-text = "10.0"
core-graphics = "0.16"
core-text = "11.0"

[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
freetype = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions components/layout/Cargo.toml
Expand Up @@ -12,11 +12,11 @@ test = false
doctest = false

[dependencies]
app_units = "0.6.1"
app_units = "0.7"
atomic_refcell = "0.1"
bitflags = "1.0"
canvas_traits = {path = "../canvas_traits"}
euclid = "0.18"
euclid = "0.19"
fnv = "1.0"
gfx = {path = "../gfx"}
gfx_traits = {path = "../gfx_traits"}
Expand Down
4 changes: 2 additions & 2 deletions components/layout_thread/Cargo.toml
Expand Up @@ -13,10 +13,10 @@ path = "lib.rs"
unstable = ["parking_lot/nightly"]

[dependencies]
app_units = "0.6"
app_units = "0.7"
atomic_refcell = "0.1"
embedder_traits = {path = "../embedder_traits"}
euclid = "0.18"
euclid = "0.19"
fnv = "1.0"
gfx = {path = "../gfx"}
gfx_traits = {path = "../gfx_traits"}
Expand Down
4 changes: 2 additions & 2 deletions components/malloc_size_of/Cargo.toml
Expand Up @@ -23,9 +23,9 @@ servo = [
]

[dependencies]
app_units = "0.6"
app_units = "0.7"
cssparser = "0.24.0"
euclid = "0.18"
euclid = "0.19"
hashglobe = { path = "../hashglobe" }
hyper = { version = "0.10", optional = true }
hyper_serde = { version = "0.8", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions components/script/Cargo.toml
Expand Up @@ -27,7 +27,7 @@ serde_json = "1.0"
tinyfiledialogs = "3.0"

[dependencies]
app_units = "0.6"
app_units = "0.7"
audio-video-metadata = "0.1.4"
base64 = "0.6"
bitflags = "1.0"
Expand All @@ -45,7 +45,7 @@ domobject_derive = {path = "../domobject_derive"}
embedder_traits = {path = "../embedder_traits"}
encoding_rs = "0.7"
enum-iterator = "0.2.0"
euclid = "0.18"
euclid = "0.19"
fnv = "1.0"
gleam = "0.6"
half = "1.0"
Expand All @@ -69,7 +69,7 @@ mozjs = { version = "0.7.1", features = ["promises"]}
msg = {path = "../msg"}
net_traits = {path = "../net_traits"}
num-traits = "0.1.32"
offscreen_gl_context = {version = "0.20", features = ["serde"]}
offscreen_gl_context = {version = "0.21", features = ["serde"]}
parking_lot = "0.6"
phf = "0.7.18"
profile_traits = {path = "../profile_traits"}
Expand Down
4 changes: 2 additions & 2 deletions components/script_layout_interface/Cargo.toml
Expand Up @@ -10,11 +10,11 @@ name = "script_layout_interface"
path = "lib.rs"

[dependencies]
app_units = "0.6"
app_units = "0.7"
atomic_refcell = "0.1"
canvas_traits = {path = "../canvas_traits"}
cssparser = "0.24"
euclid = "0.18"
euclid = "0.19"
gfx_traits = {path = "../gfx_traits"}
html5ever = "0.22"
ipc-channel = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion components/script_traits/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ canvas_traits = {path = "../canvas_traits"}
cookie = "0.10"
devtools_traits = {path = "../devtools_traits"}
embedder_traits = {path = "../embedder_traits"}
euclid = "0.18"
euclid = "0.19"
gfx_traits = {path = "../gfx_traits"}
hyper = "0.10"
hyper_serde = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion components/servo/Cargo.toml
Expand Up @@ -37,7 +37,7 @@ devtools = {path = "../devtools"}
devtools_traits = {path = "../devtools_traits"}
embedder_traits = {path = "../embedder_traits"}
env_logger = "0.5"
euclid = "0.18"
euclid = "0.19"
gfx = {path = "../gfx"}
gleam = "0.6"
ipc-channel = "0.10"
Expand Down
4 changes: 2 additions & 2 deletions components/style/Cargo.toml
Expand Up @@ -25,7 +25,7 @@ servo = ["serde", "style_traits/servo", "servo_atoms", "servo_config", "html5eve
gecko_debug = []

[dependencies]
app_units = "0.6"
app_units = "0.7"
arrayvec = "0.4.6"
atomic_refcell = "0.1"
bitflags = "1.0"
Expand All @@ -34,7 +34,7 @@ cfg-if = "0.1.0"
cssparser = "0.24.0"
new_debug_unreachable = "1.0"
encoding_rs = {version = "0.7", optional = true}
euclid = "0.18"
euclid = "0.19"
fallible = { path = "../fallible" }
fnv = "1.0"
hashglobe = { path = "../hashglobe" }
Expand Down
4 changes: 2 additions & 2 deletions components/style_traits/Cargo.toml
Expand Up @@ -14,10 +14,10 @@ servo = ["serde", "servo_atoms", "cssparser/serde", "webrender_api", "servo_url"
gecko = []

[dependencies]
app_units = "0.6"
app_units = "0.7"
cssparser = "0.24.0"
bitflags = "1.0"
euclid = "0.18"
euclid = "0.19"
malloc_size_of = { path = "../malloc_size_of" }
malloc_size_of_derive = { path = "../malloc_size_of_derive" }
selectors = { path = "../selectors" }
Expand Down
2 changes: 1 addition & 1 deletion components/webdriver_server/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ path = "lib.rs"
[dependencies]
base64 = "0.6"
cookie = "0.10"
euclid = "0.18"
euclid = "0.19"
hyper = "0.10"
image = "0.19"
ipc-channel = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion components/webvr/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ oculusvr = ['rust-webvr/oculusvr']

[dependencies]
canvas_traits = {path = "../canvas_traits"}
euclid = "0.18"
euclid = "0.19"
ipc-channel = "0.10"
log = "0.4"
msg = {path = "../msg"}
Expand Down
6 changes: 3 additions & 3 deletions ports/servo/Cargo.toml
Expand Up @@ -33,14 +33,14 @@ unstable = ["libservo/unstable"]

[target.'cfg(not(target_os = "android"))'.dependencies]
backtrace = "0.3"
euclid = "0.18"
euclid = "0.19"
gleam = "0.6"
glutin = "0.17"
glutin = "0.18"
lazy_static = "1"
libservo = {path = "../../components/servo"}
log = "0.4"
tinyfiledialogs = "3.0"
winit = {version = "0.16", features = ["icon_loading"]}
winit = {version = "0.17", features = ["icon_loading"]}
sig = "0.1"

[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/script/Cargo.toml
Expand Up @@ -9,7 +9,7 @@ name = "script_tests"
path = "lib.rs"

[dependencies]
euclid = "0.18"
euclid = "0.19"
msg = {path = "../../../components/msg"}
script = {path = "../../../components/script"}
servo_url = {path = "../../../components/url"}
4 changes: 2 additions & 2 deletions tests/unit/style/Cargo.toml
Expand Up @@ -11,9 +11,9 @@ doctest = false

[dependencies]
byteorder = "1.0"
app_units = "0.6"
app_units = "0.7"
cssparser = "0.24.0"
euclid = "0.18"
euclid = "0.19"
html5ever = "0.22"
parking_lot = "0.6"
rayon = "1"
Expand Down

0 comments on commit 0d9161d

Please sign in to comment.