diff options
| author | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2018-03-15 16:23:28 -0300 |
|---|---|---|
| committer | Janito Vaqueiro Ferreira Filho <janito@mullvad.net> | 2018-04-11 06:35:07 -0300 |
| commit | 340ae2c44c25d291d589e71c6b0047aea07c46d2 (patch) | |
| tree | 51875ade29b9462a79b091c7504b51934a14b396 | |
| parent | 1b97cdcd94e549decfe1d6081155c8efefe9b110 (diff) | |
| download | mullvadvpn-340ae2c44c25d291d589e71c6b0047aea07c46d2.tar.xz mullvadvpn-340ae2c44c25d291d589e71c6b0047aea07c46d2.zip | |
Use latest development version of jsonrpc-client
| -rw-r--r-- | Cargo.lock | 14 | ||||
| -rw-r--r-- | mullvad-rpc/Cargo.toml | 4 |
2 files changed, 9 insertions, 9 deletions
diff --git a/Cargo.lock b/Cargo.lock index 4f4f3b0431..57a56e2d99 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -400,7 +400,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "jsonrpc-client-core" version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/mullvad/jsonrpc-client-rs#853f03cfeaf45af070c5e5ea608479094cfce79c" dependencies = [ "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", @@ -413,13 +413,13 @@ dependencies = [ [[package]] name = "jsonrpc-client-http" version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" +source = "git+https://github.com/mullvad/jsonrpc-client-rs#853f03cfeaf45af070c5e5ea608479094cfce79c" dependencies = [ "error-chain 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.11.21 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-client-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-client-core 0.3.0 (git+https://github.com/mullvad/jsonrpc-client-rs)", "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "native-tls 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", "tokio-core 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", @@ -669,8 +669,8 @@ dependencies = [ "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "hyper 0.11.21 (registry+https://github.com/rust-lang/crates.io-index)", "hyper-tls 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-client-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "jsonrpc-client-http 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonrpc-client-core 0.3.0 (git+https://github.com/mullvad/jsonrpc-client-rs)", + "jsonrpc-client-http 0.3.0 (git+https://github.com/mullvad/jsonrpc-client-rs)", "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "mullvad-types 0.1.0", "native-tls 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1513,8 +1513,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" "checksum ipnetwork 0.12.7 (registry+https://github.com/rust-lang/crates.io-index)" = "2134e210e2a024b5684f90e1556d5f71a1ce7f8b12e9ac9924c67fb36f63b336" "checksum itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8324a32baf01e2ae060e9de58ed0bc2320c9a2833491ee36cd3b4c414de4db8c" -"checksum jsonrpc-client-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7542bf397d7b5ecd2e0922b45195164eedefa1956966c1cd2326b7fc3d2f82ff" -"checksum jsonrpc-client-http 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "09e43134972b6c9de21cb67e3a803782cc0642048f3467681fde78cfcf734f77" +"checksum jsonrpc-client-core 0.3.0 (git+https://github.com/mullvad/jsonrpc-client-rs)" = "<none>" +"checksum jsonrpc-client-http 0.3.0 (git+https://github.com/mullvad/jsonrpc-client-rs)" = "<none>" "checksum jsonrpc-core 8.0.1 (git+https://github.com/paritytech/jsonrpc?tag=v8.0.1)" = "<none>" "checksum jsonrpc-core 8.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ddf83704f4e79979a424d1082dd2c1e52683058056c9280efa19ac5f6bc9033c" "checksum jsonrpc-macros 8.0.0 (git+https://github.com/paritytech/jsonrpc?tag=v8.0.1)" = "<none>" diff --git a/mullvad-rpc/Cargo.toml b/mullvad-rpc/Cargo.toml index 79bb8fa0be..f243e76baa 100644 --- a/mullvad-rpc/Cargo.toml +++ b/mullvad-rpc/Cargo.toml @@ -9,8 +9,8 @@ license = "GPL-3.0" chrono = { version = "0.4", features = ["serde"] } error-chain = "0.11" futures = "0.1.15" -jsonrpc-client-core = "0.3" -jsonrpc-client-http = "0.3" +jsonrpc-client-core = { git = "https://github.com/mullvad/jsonrpc-client-rs" } +jsonrpc-client-http = { git = "https://github.com/mullvad/jsonrpc-client-rs" } serde_json = "1.0" tokio-core = "0.1" hyper = "0.11" |
