From 84375044d4028e7609b1a7b755d2e90be13589bf Mon Sep 17 00:00:00 2001 From: Bastien Orivel Date: Mon, 4 Dec 2017 21:39:51 +0100 Subject: [PATCH] Update lazy_static to 1.0 and bump version --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 69c7c91a6..a4c4016d0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ipc-channel" -version = "0.9.0" +version = "0.9.1" description = "A multiprocess drop-in replacement for Rust channels" authors = ["The Servo Project Developers"] license = "MIT/Apache-2.0" @@ -14,7 +14,7 @@ async = ["futures"] [dependencies] bincode = "0.9" -lazy_static = "0.2" +lazy_static = "1" libc = "0.2.12" rand = "0.3" serde = { version="1.0", features=["rc"] }