From 05223991171aea96c923a3739e9a9c21b42d2755 Mon Sep 17 00:00:00 2001 From: alecmocatta Date: Sun, 15 Sep 2019 18:40:35 +0100 Subject: [PATCH] try renamed docker test file --- docker-compose.test.yml | 3 +++ docker.test.yml | 3 --- src/channel/mod.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 docker-compose.test.yml delete mode 100644 docker.test.yml diff --git a/docker-compose.test.yml b/docker-compose.test.yml new file mode 100644 index 0000000..e2872a4 --- /dev/null +++ b/docker-compose.test.yml @@ -0,0 +1,3 @@ +sut: + build: . + command: "true" diff --git a/docker.test.yml b/docker.test.yml deleted file mode 100644 index 61a8f8d..0000000 --- a/docker.test.yml +++ /dev/null @@ -1,3 +0,0 @@ -sut: - build: . - command: ":" diff --git a/src/channel/mod.rs b/src/channel/mod.rs index 74f04ae..d49d7e9 100644 --- a/src/channel/mod.rs +++ b/src/channel/mod.rs @@ -7,7 +7,7 @@ use nix::sys::socket; use notifier::{Notifier, Triggerer}; use serde::{de::DeserializeOwned, Deserialize, Serialize}; use std::{ - borrow::Borrow, collections::{hash_map, HashMap}, convert::Infallible, error::Error, fmt, marker, mem, net::{IpAddr, Ipv4Addr, SocketAddr}, pin::Pin, ptr, sync::{Arc, RwLock, RwLockWriteGuard}, task::{Context, Poll, Waker}, thread + borrow::Borrow, collections::{hash_map, HashMap}, convert::Infallible, error::Error, fmt, marker, mem, net::{IpAddr, SocketAddr}, pin::Pin, ptr, sync::{Arc, RwLock, RwLockWriteGuard}, task::{Context, Poll, Waker}, thread }; use tcp_typed::{Connection, Listener};