diff --git a/ipc/nano/Cargo.toml b/ipc/nano/Cargo.toml index c13a7b5a5..e941b1afc 100644 --- a/ipc/nano/Cargo.toml +++ b/ipc/nano/Cargo.toml @@ -8,5 +8,5 @@ license = "GPL-3.0" [dependencies] "ethcore-ipc" = { path = "../rpc" } -nanomsg = "0.5.0" +nanomsg = { git = "https://github.com/ethcore/nanomsg.rs.git" } log = "0.3" diff --git a/ipc/rpc/Cargo.toml b/ipc/rpc/Cargo.toml index a6346bbf9..c07cb8ae3 100644 --- a/ipc/rpc/Cargo.toml +++ b/ipc/rpc/Cargo.toml @@ -9,4 +9,4 @@ license = "GPL-3.0" [dependencies] ethcore-devtools = { path = "../../devtools" } semver = "0.2.0" -nanomsg = "0.5.0" +nanomsg = { git = "https://github.com/ethcore/nanomsg.rs.git" } diff --git a/ipc/tests/Cargo.toml b/ipc/tests/Cargo.toml index 7b37a58a4..5ea6f2c81 100644 --- a/ipc/tests/Cargo.toml +++ b/ipc/tests/Cargo.toml @@ -13,7 +13,7 @@ bincode = "*" serde = "0.7.0" ethcore-devtools = { path = "../../devtools" } semver = "0.2.0" -nanomsg = "0.5.0" +nanomsg = { git = "https://github.com/ethcore/nanomsg.rs.git" } ethcore-ipc-nano = { path = "../nano" }