use git remotes instead of local branches

This commit is contained in:
debris 2017-08-13 19:36:42 +02:00
parent a5a90c6d55
commit cee4d81035
2 changed files with 9 additions and 5 deletions

8
Cargo.lock generated
View File

@ -5,7 +5,7 @@ dependencies = [
"docopt 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"error-chain 0.11.0-rc.2 (registry+https://github.com/rust-lang/crates.io-index)",
"ethabi 3.0.0",
"ethabi 3.0.0 (git+https://github.com/paritytech/ethabi?branch=bridge)",
"futures 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
"futures-cpupool 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
@ -14,7 +14,7 @@ dependencies = [
"tokio-core 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio-timer 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"toml 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"web3 0.0.4",
"web3 0.0.4 (git+https://github.com/tomusdrw/rust-web3?branch=bridge)",
]
[[package]]
@ -141,6 +141,7 @@ dependencies = [
[[package]]
name = "ethabi"
version = "3.0.0"
source = "git+https://github.com/paritytech/ethabi?branch=bridge#131ad218e3c5a0781f77b5c8246bc7c7ceec2665"
dependencies = [
"error-chain 0.11.0-rc.2 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-hex 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -718,6 +719,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "web3"
version = "0.0.4"
source = "git+https://github.com/tomusdrw/rust-web3?branch=bridge#b98617a06cfc5b3be795b64c86b372fa363e96b8"
dependencies = [
"ethabi 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
@ -769,6 +771,7 @@ dependencies = [
"checksum env_logger 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "15abd780e45b3ea4f76b4e9a26ff4843258dd8a3eed2775a0e7368c2e7936c2f"
"checksum error-chain 0.11.0-rc.2 (registry+https://github.com/rust-lang/crates.io-index)" = "38d3a55d9a7a456748f2a3912c0941a5d9a68006eb15b3c3c9836b8420dc102d"
"checksum ethabi 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0c3d62319ee0f35abf20afe8859dd2668195912614346447bb2dee9fb8da7c62"
"checksum ethabi 3.0.0 (git+https://github.com/paritytech/ethabi?branch=bridge)" = "<none>"
"checksum futures 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "4b63a4792d4f8f686defe3b39b92127fea6344de5d38202b2ee5a11bbbf29d6a"
"checksum futures-cpupool 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "a283c84501e92cade5ea673a2a7ca44f71f209ccdd302a3e0896f50083d2c5ff"
"checksum gcc 0.3.51 (registry+https://github.com/rust-lang/crates.io-index)" = "120d07f202dcc3f72859422563522b66fe6463a4c513df062874daad05f85f0a"
@ -842,6 +845,7 @@ dependencies = [
"checksum utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "662fab6525a98beff2921d7f61a39e7d59e0b425ebc7d0d9e66d316e55124122"
"checksum version_check 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2bb3950bf29e36796dea723df1747619dd331881aefef75b7cf1c58fdd738afe"
"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
"checksum web3 0.0.4 (git+https://github.com/tomusdrw/rust-web3?branch=bridge)" = "<none>"
"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
"checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"

View File

@ -11,14 +11,14 @@ tokio-core = "0.1.8"
tokio-timer = "0.1.2"
toml = "0.4.2"
docopt = "0.8.1"
#web3 = { git = "https://github.com/tomusdrw/rust-web3", branch = "removed_lifetimes" }
web3 = { path = "../rust-web3" }
#web3 = "0.0.4"
web3 = { git = "https://github.com/tomusdrw/rust-web3", branch = "bridge" }
log = "0.3"
env_logger = "0.3"
error-chain = "0.11.0-rc.2"
futures-cpupool = "0.1.5"
#ethabi = "3.0"
ethabi = { path = "../ethabi" }
ethabi = { git = "https://github.com/paritytech/ethabi", branch = "bridge" }
[[bin]]
name = "bridge"