summaryrefslogtreecommitdiffstats
path: root/tokio-uds
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-03-19 14:58:59 -0700
committerGitHub <noreply@github.com>2019-03-19 14:58:59 -0700
commitcdde2e7a273cbab2085b822efcf54c6bec822681 (patch)
tree68c09200286f2266027230ac4ffc51d459857ad7 /tokio-uds
parent85487727d41574020793fbe0025a9dafc4890a70 (diff)
chore: repo maintenance + no path dependencies (#991)
- Move `tokio` into its own directory. - Remove `path` dependencies. - Run tests with once with crates.io dep and once with patched dep.
Diffstat (limited to 'tokio-uds')
-rw-r--r--tokio-uds/Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/tokio-uds/Cargo.toml b/tokio-uds/Cargo.toml
index 741f97b3..2996dbf1 100644
--- a/tokio-uds/Cargo.toml
+++ b/tokio-uds/Cargo.toml
@@ -26,10 +26,10 @@ libc = "0.2.42"
log = "0.4.2"
mio = "0.6.14"
mio-uds = "0.6.5"
-tokio-codec = { version = "0.1.0", path = "../tokio-codec" }
-tokio-reactor = { version = "0.1.1", path = "../tokio-reactor" }
-tokio-io = { version = "0.1.6", path = "../tokio-io" }
+tokio-codec = "0.1.0"
+tokio-reactor = "0.1.1"
+tokio-io = "0.1.6"
[dev-dependencies]
-tokio = { version = "0.1.6", path = "../" }
+tokio = "0.1.6"
tempfile = "3"