Skip to content

Commit

Permalink
Update rust-cssparser to 0.20.2.
Browse files Browse the repository at this point in the history
This reduces memory consumption of list-valued properties in the common case of one entry in the list.
  • Loading branch information
bzbarsky committed Sep 11, 2017
1 parent 6a09b1d commit b2c5634
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 24 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/canvas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ path = "lib.rs"
azure = {git = "https://github.com/servo/rust-azure"}
canvas_traits = {path = "../canvas_traits"}
compositing = {path = "../compositing"}
cssparser = "0.20"
cssparser = "0.20.2"
euclid = "0.15"
fnv = "1.0"
gleam = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion components/canvas_traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "canvas_traits"
path = "lib.rs"

[dependencies]
cssparser = "0.20"
cssparser = "0.20.2"
euclid = "0.15"
heapsize = "0.4"
heapsize_derive = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion components/script/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ byteorder = "1.0"
canvas_traits = {path = "../canvas_traits"}
caseless = "0.1.0"
cookie = "0.6"
cssparser = "0.20"
cssparser = "0.20.2"
deny_public_fields = {path = "../deny_public_fields"}
devtools_traits = {path = "../devtools_traits"}
dom_struct = {path = "../dom_struct"}
Expand Down
2 changes: 1 addition & 1 deletion components/script_layout_interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ path = "lib.rs"
app_units = "0.5"
atomic_refcell = "0.1"
canvas_traits = {path = "../canvas_traits"}
cssparser = "0.20"
cssparser = "0.20.2"
euclid = "0.15"
gfx_traits = {path = "../gfx_traits"}
heapsize = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion components/selectors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ unstable = []
[dependencies]
bitflags = "0.7"
matches = "0.1"
cssparser = "0.20"
cssparser = "0.20.2"
log = "0.3"
fnv = "1.0"
phf = "0.7.18"
Expand Down
2 changes: 1 addition & 1 deletion components/style/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ bitflags = "0.7"
bit-vec = "0.4.3"
byteorder = "1.0"
cfg-if = "0.1.0"
cssparser = "0.20"
cssparser = "0.20.2"
encoding = {version = "0.2", optional = true}
euclid = "0.15"
fallible = { path = "../fallible" }
Expand Down
2 changes: 1 addition & 1 deletion components/style_traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ gecko = []
[dependencies]
app_units = "0.5"
bitflags = "0.7"
cssparser = "0.20"
cssparser = "0.20.2"
euclid = "0.15"
heapsize = {version = "0.4", optional = true}
heapsize_derive = {version = "0.1", optional = true}
Expand Down
2 changes: 1 addition & 1 deletion ports/geckolib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ gecko_debug = ["style/gecko_debug"]

[dependencies]
atomic_refcell = "0.1"
cssparser = "0.20"
cssparser = "0.20.2"
env_logger = {version = "0.4", default-features = false} # disable `regex` to reduce code size
libc = "0.2"
log = {version = "0.3.5", features = ["release_max_level_info"]}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/gfx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ path = "lib.rs"
doctest = false

[dependencies]
cssparser = "0.20"
cssparser = "0.20.2"
gfx = {path = "../../../components/gfx"}
ipc-channel = "0.8"
style = {path = "../../../components/style"}
2 changes: 1 addition & 1 deletion tests/unit/style/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ doctest = false
[dependencies]
byteorder = "1.0"
app_units = "0.5"
cssparser = "0.20"
cssparser = "0.20.2"
euclid = "0.15"
html5ever = "0.19"
parking_lot = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/stylo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ doctest = false

[dependencies]
atomic_refcell = "0.1"
cssparser = "0.20"
cssparser = "0.20.2"
env_logger = "0.4"
euclid = "0.15"
geckoservo = {path = "../../../ports/geckolib"}
Expand Down

0 comments on commit b2c5634

Please sign in to comment.