summaryrefslogtreecommitdiffstats
path: root/tokio-signal
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-signal
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-signal')
-rw-r--r--tokio-signal/Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/tokio-signal/Cargo.toml b/tokio-signal/Cargo.toml
index 4646f108..9caa92a7 100644
--- a/tokio-signal/Cargo.toml
+++ b/tokio-signal/Cargo.toml
@@ -24,9 +24,9 @@ appveyor = { repository = "carllerche/tokio", id = "s83yxhy9qeb58va7" }
[dependencies]
futures = "0.1.11"
mio = "0.6.14"
-tokio-reactor = { version = "0.1.0", path = "../tokio-reactor" }
-tokio-executor = { version = "0.1.0", path = "../tokio-executor" }
-tokio-io = { version = "0.1", path = "../tokio-io" }
+tokio-reactor = "0.1.0"
+tokio-executor = "0.1.0"
+tokio-io = "0.1"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
@@ -34,7 +34,7 @@ mio-uds = "0.6"
signal-hook = "0.1"
[dev-dependencies]
-tokio = { version = "0.1.8", path = ".." }
+tokio = "0.1.8"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"