removed printlns, updated deps

This commit is contained in:
debris 2016-10-13 09:23:37 +02:00
parent 850ad58e5d
commit 67309678c0
3 changed files with 4 additions and 6 deletions

8
Cargo.lock generated
View File

@ -21,7 +21,7 @@ version = "0.3.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"nodrop 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"odds 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)",
"odds 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@ -233,7 +233,7 @@ name = "nodrop"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"odds 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)",
"odds 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@ -246,7 +246,7 @@ dependencies = [
[[package]]
name = "odds"
version = "0.2.21"
version = "0.2.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
@ -476,7 +476,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
"checksum nix 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a7bb1da2be7da3cbffda73fc681d509ffd9e665af478d2bee1907cee0bc64b2"
"checksum nodrop 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0dbbadd3f4c98dea0bd3d9b4be4c0cdaf1ab57035cb2e41fce3983db5add7cc5"
"checksum num_cpus 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8890e6084723d57d0df8d2720b0d60c6ee67d6c93e7169630e4371e88765dcad"
"checksum odds 0.2.21 (registry+https://github.com/rust-lang/crates.io-index)" = "b20d7892efe1faecee7b0ab6492cd0484f8516d54f6aae87d00d5936dd374aed"
"checksum odds 0.2.22 (registry+https://github.com/rust-lang/crates.io-index)" = "308eb922caa165a2c4be8004abf87822fc4b444ab339f70fc172236b1905efb0"
"checksum owning_ref 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8d91377085359426407a287ab16884a0111ba473aa6844ff01d4ec20ce3d75e7"
"checksum parking_lot 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "dbc5847584161f273e69edc63c1a86254a22f570a0b5dd87aa6f9773f6f7d125"
"checksum parking_lot_core 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fb1b97670a2ffadce7c397fb80a3d687c4f3060140b885621ef1653d0e5d5068"

View File

@ -40,7 +40,6 @@ impl Future for Connect {
type Error = io::Error;
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
println!("first poll");
let (next, result) = match self.state {
ConnectState::TcpConnect { ref mut future, ref mut version } => {
let stream = try_ready!(future.poll());

View File

@ -46,7 +46,6 @@ impl P2P {
let connections = self.connections.clone();
let connection = connect(&socket, &self.event_loop_handle, &self.config.connection);
let pool_work = self.pool.spawn(connection).then(move |x| {
println!("trie to connect");
if let Ok(Ok(con)) = x {
connections.store(con);
}