Skip to content

Commit

Permalink
Update ipc-channel for two important bug fixes
Browse files Browse the repository at this point in the history
This fixes #10260 by pulling in
servo/ipc-channel#61 (fix receive for messages
close to packet size) and servo/ipc-channel#62
(properly handle ENOBUFS); where the latter is not critical per se, as
there was a workaround already -- but that workaround aggrevated the
first bug, resulting in the urgent issue...

This bump requires a tidy override for `uuid`: `ipc-channel` was updated
to `uuid 0.2` in servo/ipc-channel#63 (don't
know why...), while other crates are still with `0.1`. That was blocking
this urgent bug fix; and according to a discussion with @mbrubeck on
IRC, the override should be OK in this case.
  • Loading branch information
antrik committed Apr 6, 2016
1 parent 4cc241c commit 808244d
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 9 deletions.
12 changes: 10 additions & 2 deletions components/servo/Cargo.lock

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

12 changes: 10 additions & 2 deletions ports/cef/Cargo.lock

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

12 changes: 10 additions & 2 deletions ports/geckolib/Cargo.lock

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

12 changes: 10 additions & 2 deletions ports/gonk/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 python/tidy.py
Expand Up @@ -220,7 +220,7 @@ def find_reverse_dependencies(dependency, version, content):
raise StopIteration

# package names to be neglected (as named by cargo)
exceptions = ["bitflags", "xml-rs", "gl_generator", "byteorder"]
exceptions = ["bitflags", "xml-rs", "gl_generator", "byteorder", "uuid"]

import toml
content = toml.loads(contents)
Expand Down

0 comments on commit 808244d

Please sign in to comment.