diff options
author | Josh Matthews <josh@joshmatthews.net> | 2020-02-19 17:07:29 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2020-02-20 11:15:13 -0500 |
commit | 3fd3c23e17f0bae5d46069ff2a8f61cf4bd4aad7 (patch) | |
tree | 7b3d43e2d5cb3d88a57b39cc07c550847cf69e83 /components/net | |
parent | 107a29121c8a0e21d03645dd07121b59b595ac93 (diff) | |
download | servo-3fd3c23e17f0bae5d46069ff2a8f61cf4bd4aad7.tar.gz servo-3fd3c23e17f0bae5d46069ff2a8f61cf4bd4aad7.zip |
Update ipc-channel and crossbeam-channel.
Diffstat (limited to 'components/net')
-rw-r--r-- | components/net/Cargo.toml | 4 | ||||
-rw-r--r-- | components/net/filemanager_thread.rs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/components/net/Cargo.toml b/components/net/Cargo.toml index eec4da35e78..db3b1193374 100644 --- a/components/net/Cargo.toml +++ b/components/net/Cargo.toml @@ -20,7 +20,7 @@ brotli = "3" bytes = "0.4" content-security-policy = {version = "0.3.0", features = ["serde"]} cookie_rs = {package = "cookie", version = "0.11"} -crossbeam-channel = "0.3" +crossbeam-channel = "0.4" data-url = "0.1.0" devtools_traits = {path = "../devtools_traits"} embedder_traits = { path = "../embedder_traits" } @@ -32,7 +32,7 @@ hyper = "0.12" hyper_serde = "0.11" hyper-openssl = "0.7" immeta = "0.4" -ipc-channel = "0.12" +ipc-channel = "0.14" lazy_static = "1" libflate = "0.1" log = "0.4" diff --git a/components/net/filemanager_thread.rs b/components/net/filemanager_thread.rs index d765c37ce32..2e6ce832394 100644 --- a/components/net/filemanager_thread.rs +++ b/components/net/filemanager_thread.rs @@ -481,7 +481,7 @@ impl FileManagerStore { match ipc_receiver.recv() { Ok(result) => result, Err(e) => { - warn!("Failed to receive files from embedder ({}).", e); + warn!("Failed to receive files from embedder ({:?}).", e); None }, } |