diff --git a/Cargo.lock b/Cargo.lock index 1b3269925..77be76dc8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3275,9 +3275,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.12.0" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2c2416fdedca8443ae44b4527de1ea633af61d8f7169ffa6e72c5b53d24efcc" +checksum = "52963f91310c08d91cb7bff5786dfc8b79642ab839e188187e92105dbfb9d2c8" dependencies = [ "autocfg 1.0.1", "libc", diff --git a/Cargo.toml b/Cargo.toml index be41bd57f..9fc888902 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ serde = { version = "1.0.130", optional = true } serde_state = { version = "0.4.8", optional = true } serde_derive_state = { version = "0.4.10", optional = true } -tokio = { version = "1.12.0", features = ["sync", "rt"], optional = true } +tokio = { version = "1.13.1", features = ["sync", "rt"], optional = true } tokio-stream = { version = "0.1", features = ["net"], optional = true } # Binding crates @@ -87,7 +87,7 @@ pretty_assertions = "1.0.0" structopt = "0.3.23" tempfile = "3.2.0" tensile = { version = "0.7", features = ["tokio"] } -tokio = { version = "1.12.0", features = ["macros", "rt-multi-thread", "fs"] } +tokio = { version = "1.13.1", features = ["macros", "rt-multi-thread", "fs"] } walkdir = "2.3.2" serde = "1.0.130" diff --git a/format/Cargo.toml b/format/Cargo.toml index 19263ce15..4a61e7dd6 100644 --- a/format/Cargo.toml +++ b/format/Cargo.toml @@ -25,7 +25,7 @@ env_logger = "0.9.0" expect-test = "1.1.0" futures = "0.3.17" pretty_assertions = "1.0.0" -tokio = { version = "1.12.0", features = ["macros"] } +tokio = { version = "1.13.1", features = ["macros"] } walkdir = "2.3.2" gluon_base = { path = "../base", version = "0.18.0" } # GLUON diff --git a/repl/Cargo.toml b/repl/Cargo.toml index d32ae2b99..1102452cc 100644 --- a/repl/Cargo.toml +++ b/repl/Cargo.toml @@ -30,7 +30,7 @@ gluon_doc = { version = "0.18.0", path = "../doc" } # GLUON app_dirs = { package = "app_dirs2", version = "2.3.2" } anyhow = "1.0.44" futures = "0.3.17" -tokio = { version = "1.12.0", features = ["rt-multi-thread", "macros", "signal"] } +tokio = { version = "1.13.1", features = ["rt-multi-thread", "macros", "signal"] } clap = "2.33.3" structopt = "0.3.23" log = "0.4.14" @@ -50,7 +50,7 @@ ansi_term = "0.12.1" [dev-dependencies] pretty_assertions = "1.0.0" -tokio = "1.12.0" +tokio = "1.13.1" [target.'cfg(unix)'.dev-dependencies] rexpect = "0.4.0"