##// END OF EJS Templates
rust-chg: depend on released version of tokio-process...
Yuya Nishihara -
r45159:1c385b99 default
parent child Browse files
Show More
@@ -46,7 +46,7 b' dependencies = ['
46 46 "log 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)",
47 47 "tokio 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
48 48 "tokio-hglib 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
49 "tokio-process 0.2.2 (git+https://github.com/alexcrichton/tokio-process)",
49 "tokio-process 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
50 50 "tokio-timer 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)",
51 51 ]
52 52
@@ -418,7 +418,7 b' dependencies = ['
418 418 "tokio 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
419 419 "tokio-codec 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
420 420 "tokio-io 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
421 "tokio-process 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
421 "tokio-process 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
422 422 "tokio-uds 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
423 423 ]
424 424
@@ -434,22 +434,7 b' dependencies = ['
434 434
435 435 [[package]]
436 436 name = "tokio-process"
437 version = "0.2.2"
438 source = "git+https://github.com/alexcrichton/tokio-process#2e805aad57e2639246cbf7394899bf7a27c18ebd"
439 dependencies = [
440 "futures 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
441 "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)",
442 "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)",
443 "mio-named-pipes 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
444 "tokio-io 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
445 "tokio-reactor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
446 "tokio-signal 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
447 "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
448 ]
449
450 [[package]]
451 name = "tokio-process"
452 version = "0.2.2"
437 version = "0.2.3"
453 438 source = "registry+https://github.com/rust-lang/crates.io-index"
454 439 dependencies = [
455 440 "futures 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -669,8 +654,7 b' dependencies = ['
669 654 "checksum tokio-fs 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "b5cbe4ca6e71cb0b62a66e4e6f53a8c06a6eefe46cc5f665ad6f274c9906f135"
670 655 "checksum tokio-hglib 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8a138c3cb866c8a95ceddae44634bb159eefeebcdba45aec2158f8ad6c201e6d"
671 656 "checksum tokio-io 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "8b8a85fffbec3c5ab1ab62324570230dcd37ee5996a7859da5caf7b9d45e3e8c"
672 "checksum tokio-process 0.2.2 (git+https://github.com/alexcrichton/tokio-process)" = "<none>"
673 "checksum tokio-process 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0832648d1ff7ca42c06ca45dc76797b92c56500de828e33c77276fa1449947b6"
657 "checksum tokio-process 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "88e1281e412013f1ff5787def044a9577a0bed059f451e835f1643201f8b777d"
674 658 "checksum tokio-reactor 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "4b26fd37f1125738b2170c80b551f69ff6fecb277e6e5ca885e53eec2b005018"
675 659 "checksum tokio-signal 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "b6893092932264944edee8486d54b578c7098bea794aedaf9bd7947b49e6b7bf"
676 660 "checksum tokio-tcp 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7ad235e9dadd126b2d47f6736f65aa1fdcd6420e66ca63f44177bc78df89f912"
@@ -12,8 +12,7 b' libc = "0.2"'
12 12 log = { version = "0.4", features = ["std"] }
13 13 tokio = "0.1"
14 14 tokio-hglib = "0.2"
15 # TODO: "^0.2.3" once released. we need AsRawFd support.
16 tokio-process = { git = "https://github.com/alexcrichton/tokio-process" }
15 tokio-process = "0.2.3"
17 16 tokio-timer = "0.2"
18 17
19 18 [build-dependencies]
General Comments 0
You need to be logged in to leave comments. Login now