mirror of
https://github.com/servo/servo.git
synced 2025-06-09 17:13:24 +00:00
Update ipc-channel for two important bug fixes
This fixes https://github.com/servo/servo/issues/10260 by pulling in https://github.com/servo/ipc-channel/pull/61 (fix receive for messages close to packet size) and https://github.com/servo/ipc-channel/pull/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 https://github.com/servo/ipc-channel/pull/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.
This commit is contained in:
parent
4cc241c858
commit
808244df63
5 changed files with 41 additions and 9 deletions
|
@ -220,7 +220,7 @@ def check_lock(file_name, contents):
|
|||
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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue