summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames E. King, III <jking@apache.org>2017-11-29 13:01:16 -0500
committerJames E. King, III <jking@apache.org>2017-11-29 21:29:48 -0500
commit44426c90955ee1324be58d228e654b309d7c5bba (patch)
tree9de49ab4f43ebfb6b9507dc8e87287d15bb67ba3
parent20e16bc6a41c6faead040aed7f3c00b9d2e7f842 (diff)
downloadthrift-44426c90955ee1324be58d228e654b309d7c5bba.tar.gz
THRIFT-4395: fix rust build on xenial
Client: rs This closes #1421
-rw-r--r--lib/rs/Cargo.toml10
-rw-r--r--lib/rs/test/Cargo.toml2
-rw-r--r--test/rs/Cargo.toml2
-rw-r--r--tutorial/rs/Cargo.toml2
4 files changed, 8 insertions, 8 deletions
diff --git a/lib/rs/Cargo.toml b/lib/rs/Cargo.toml
index be34785af..5f8f5e8ce 100644
--- a/lib/rs/Cargo.toml
+++ b/lib/rs/Cargo.toml
@@ -11,9 +11,9 @@ exclude = ["Makefile*", "test/**"]
keywords = ["thrift"]
[dependencies]
-byteorder = "0.5.3"
-integer-encoding = "1.0.3"
-log = "~0.3.6"
-threadpool = "1.0"
-try_from = "0.2.0"
+byteorder = "~1.1.0"
+integer-encoding = "~1.0.4"
+log = "~0.3.8"
+threadpool = "~1.7.1"
+try_from = "~0.2.2"
diff --git a/lib/rs/test/Cargo.toml b/lib/rs/test/Cargo.toml
index 8655a7659..50dec1972 100644
--- a/lib/rs/test/Cargo.toml
+++ b/lib/rs/test/Cargo.toml
@@ -6,7 +6,7 @@ authors = ["Apache Thrift Developers <dev@thrift.apache.org>"]
publish = false
[dependencies]
-clap = "2.18.0"
+clap = "<2.28.0"
ordered-float = "0.3.0"
try_from = "0.2.0"
diff --git a/test/rs/Cargo.toml b/test/rs/Cargo.toml
index df8450452..9b35e3c41 100644
--- a/test/rs/Cargo.toml
+++ b/test/rs/Cargo.toml
@@ -6,7 +6,7 @@ authors = ["Apache Thrift Developers <dev@thrift.apache.org>"]
publish = false
[dependencies]
-clap = "2.18.0"
+clap = "<2.28.0"
env_logger = "0.4.0"
log = "0.3.7"
ordered-float = "0.3.0"
diff --git a/tutorial/rs/Cargo.toml b/tutorial/rs/Cargo.toml
index 9075db7a6..210a0daf9 100644
--- a/tutorial/rs/Cargo.toml
+++ b/tutorial/rs/Cargo.toml
@@ -7,7 +7,7 @@ exclude = ["Makefile*", "shared.rs", "tutorial.rs"]
publish = false
[dependencies]
-clap = "2.18.0"
+clap = "<2.28.0"
ordered-float = "0.3.0"
try_from = "0.2.0"