summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock10
-rw-r--r--ffi/Cargo.toml2
-rw-r--r--ipc/Cargo.toml3
-rw-r--r--net/Cargo.toml2
-rw-r--r--sq/Cargo.toml2
5 files changed, 9 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c99ec6a4..8dd2b249 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2880,7 +2880,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc164aaaccb1cdd48663ff54a6ffc3026522e6ce5c4fa24608ea061259b16e8f"
dependencies = [
"digest 0.9.0",
- "generic-array 0.12.4",
+ "generic-array 0.14.4",
]
[[package]]
@@ -3339,9 +3339,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
-version = "1.12.0"
+version = "1.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c2c2416fdedca8443ae44b4527de1ea633af61d8f7169ffa6e72c5b53d24efcc"
+checksum = "70e992e41e0d2fb9f755b37446f20900f64446ef54874f40a60c78f021ac6144"
dependencies = [
"autocfg 1.0.1",
"bytes",
@@ -3359,9 +3359,9 @@ dependencies = [
[[package]]
name = "tokio-macros"
-version = "1.5.0"
+version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b2dd85aeaba7b68df939bd357c6afb36c87951be9e80bf9c859f2fc3e9fca0fd"
+checksum = "c9efc1aba077437943f7515666aa2b882dfabfbfdf89c819ea75a8d6e9eaba5e"
dependencies = [
"proc-macro2",
"quote",
diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml
index 2ec84e6e..62a7d918 100644
--- a/ffi/Cargo.toml
+++ b/ffi/Cargo.toml
@@ -31,7 +31,7 @@ lazy_static = "1.4.0"
libc = "0.2.66"
memsec = { version = ">=0.5", default-features = false }
native-tls = "0.2.0"
-tokio = { version = "1", features = ["rt", "time"] }
+tokio = { version = "1.13.1", features = ["rt", "time"] }
[dev-dependencies]
filetime = "0.2"
diff --git a/ipc/Cargo.toml b/ipc/Cargo.toml
index 9752189b..2e930b52 100644
--- a/ipc/Cargo.toml
+++ b/ipc/Cargo.toml
@@ -34,8 +34,7 @@ memsec = { version = ">=0.5", default-features = false }
rand = { version = "0.7" }
tempfile = "3.1"
thiserror = "1.0.2"
-#tokio = { version = "0.2.19", features = ["rt-core", "rt-util", "tcp", "uds", "io-util", "macros"] }
-tokio = { version = "1", features = ["full"] }
+tokio = { version = "1.13.1", features = ["full"] }
tokio-util = { version = "0.6", features = ["compat"] }
socket2 = "0.3.16"
dirs = "2.0"
diff --git a/net/Cargo.toml b/net/Cargo.toml
index 6475598e..eb394f08 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -35,7 +35,7 @@ tempfile = "3.1"
thiserror = "1.0.2"
url = "2.1"
zbase32 = "0.1.2"
-tokio = { version = "1", features = [ "macros" ] }
+tokio = { version = "1.13.1", features = [ "macros" ] }
base64 = ">=0.12"
[dev-dependencies]
diff --git a/sq/Cargo.toml b/sq/Cargo.toml
index 55b7cf17..75464e95 100644
--- a/sq/Cargo.toml
+++ b/sq/Cargo.toml
@@ -36,7 +36,7 @@ clap = { version = "2.33", features = ["wrap_help"] }
itertools = "0.9"
tempfile = "3.1"
term_size = "0.3"
-tokio = { version = "1", optional = true }
+tokio = { version = "1.13.1", optional = true }
rpassword = "5.0"
[build-dependencies]