aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-05-31 17:57:51 -0400
committerbnewbold <bnewbold@robocracy.org>2016-05-31 17:57:53 -0400
commite6fd66b7a28b51ffb74f2d4fb8617fa8d091e706 (patch)
tree9f8c83f36e333f474aa90f20f7927a970693877f
parentccd871880d6a58a1b8decc3cd16951ee70ec2f57 (diff)
downloaducp-e6fd66b7a28b51ffb74f2d4fb8617fa8d091e706.tar.gz
ucp-e6fd66b7a28b51ffb74f2d4fb8617fa8d091e706.zip
upgrade utp to 'temp_utp', which has more recent fixes
I hoped this would speed things up, but it didn't.
-rw-r--r--Cargo.lock47
-rw-r--r--Cargo.toml2
2 files changed, 14 insertions, 35 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 9dbbb37..5db5474 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -6,7 +6,7 @@ dependencies = [
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-serialize 0.3.19 (registry+https://github.com/rust-lang/crates.io-index)",
"sodiumoxide 0.0.10 (registry+https://github.com/rust-lang/crates.io-index)",
- "utp 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)",
+ "temp_utp 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@@ -18,11 +18,6 @@ dependencies = [
]
[[package]]
-name = "bitflags"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
name = "daemonize"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -55,11 +50,6 @@ dependencies = [
[[package]]
name = "libc"
-version = "0.1.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-
-[[package]]
-name = "libc"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -86,15 +76,6 @@ dependencies = [
]
[[package]]
-name = "nix"
-version = "0.3.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
- "libc 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
name = "num"
version = "0.1.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -206,6 +187,18 @@ dependencies = [
]
[[package]]
+name = "temp_utp"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+dependencies = [
+ "env_logger 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
+ "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
+ "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)",
+ "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
+ "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
+[[package]]
name = "thread-id"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -238,20 +231,6 @@ version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
-name = "utp"
-version = "0.6.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-dependencies = [
- "env_logger 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "libc 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
- "log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
- "nix 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)",
- "num 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)",
- "rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
- "time 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
-[[package]]
name = "winapi"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/Cargo.toml b/Cargo.toml
index ad343e7..b98d003 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,6 +6,6 @@ authors = ["bnewbold <bnewbold@robocracy.org>"]
[dependencies]
getopts = "^0.2"
daemonize = "^0.2"
-utp = "*"
+temp_utp = "*"
sodiumoxide = "*"
rustc-serialize = "0.3"