diff --git a/Cargo.lock b/Cargo.lock index ffdcdb5..3cf2044 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1951,11 +1951,10 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.6.0" +version = "1.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd3076b5c8cc18138b8f8814895c11eb4de37114a5d127bafdc5e55798ceef37" +checksum = "0c27a64b625de6d309e8c57716ba93021dccf1b3b5c97edd6d3dd2d2135afc0a" dependencies = [ - "autocfg", "bytes", "libc", "memchr", @@ -1970,9 +1969,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "1.2.0" +version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c49e3df43841dafb86046472506755d8501c5615673955f6aa17181125d13c37" +checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 81ff81f..9012dc5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" [dependencies] anyhow = "1.0.40" clap = "3.0.0-beta.2" -tokio = { version = "1.5.0", features = ["macros", "rt-multi-thread"] } +tokio = { version = "1.16.1", features = ["macros", "rt-multi-thread"] } tracing = "0.1.25" tracing-subscriber = "0.2.17" uuid = { version = "0.8.2", features = ["serde", "v4"] } diff --git a/judgectl/Cargo.toml b/judgectl/Cargo.toml index 281955b..d4168f4 100644 --- a/judgectl/Cargo.toml +++ b/judgectl/Cargo.toml @@ -9,5 +9,5 @@ anyhow = "1.0.40" clap = "3.0.0-beta.2" reqwest = { version = "0.11.3", features = ["json"] } serde_json = "1.0.64" -tokio = { version = "1.5.0", features = ["rt", "rt-multi-thread", "macros", "time"] } +tokio = { version = "1.16.1", features = ["rt", "rt-multi-thread", "macros", "time"] } judge-apis = { path = "../judge-apis" } \ No newline at end of file diff --git a/problem-loader/Cargo.toml b/problem-loader/Cargo.toml index ee548e1..0f3ff7c 100644 --- a/problem-loader/Cargo.toml +++ b/problem-loader/Cargo.toml @@ -10,7 +10,7 @@ pom = { git = "https://github.com/jjs-dev/pps", branch = "master" } anyhow = "1.0.40" serde_json = "1.0.64" async-trait = "0.1.50" -tokio = { version = "1.5.0", features = ["fs", "sync"] } +tokio = { version = "1.16.1", features = ["fs", "sync"] } fs_extra = "1.2.0" mongodb = { git = "https://github.com/mongodb/mongo-rust-driver" } url = "2.2.1" diff --git a/processor/Cargo.toml b/processor/Cargo.toml index ebfd99b..e0387a2 100644 --- a/processor/Cargo.toml +++ b/processor/Cargo.toml @@ -10,7 +10,7 @@ pom = { git = "https://github.com/jjs-dev/pps", branch = "master" } valuer-api = { git = "https://github.com/jjs-dev/pps", branch = "master" } anyhow = "1.0.40" tracing = "0.1.25" -tokio = { version = "1.5.0", features = ["process", "io-util"] } +tokio = { version = "1.16.1", features = ["process", "io-util"] } judge-apis = { path = "../judge-apis" } invoker-api = { git = "https://github.com/jjs-dev/invoker" } uuid = "0.8.2" diff --git a/toolchain-loader/Cargo.toml b/toolchain-loader/Cargo.toml index 6dbd82f..83aabd6 100644 --- a/toolchain-loader/Cargo.toml +++ b/toolchain-loader/Cargo.toml @@ -9,5 +9,5 @@ anyhow = "1.0.40" serde = { version = "1.0.125", features = ["derive"] } tracing = "0.1.26" pom = { git = "https://github.com/jjs-dev/pps", branch = "master" } -tokio = { version = "1.5.0", features = ["fs"] } +tokio = { version = "1.16.1", features = ["fs"] } serde_yaml = "0.8.17" diff --git a/valuer-client/Cargo.toml b/valuer-client/Cargo.toml index f1b3736..bbb0db8 100644 --- a/valuer-client/Cargo.toml +++ b/valuer-client/Cargo.toml @@ -8,6 +8,6 @@ edition = "2018" anyhow = "1.0.40" serde = "1.0.125" serde_json = "1.0.64" -tokio = { version = "1.5.0", features = ["process", "io-util", "time"] } +tokio = { version = "1.16.1", features = ["process", "io-util", "time"] } tracing = "0.1.26" valuer-api = { git = "https://github.com/jjs-dev/pps", branch = "master" }