diff --git a/Cargo.lock b/Cargo.lock index 903f9d1..15c9d33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1934,9 +1934,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.2.0" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8190d04c665ea9e6b6a0dc45523ade572c088d2e6566244c1122671dbf4ae3a" +checksum = "8d56477f6ed99e10225f38f9f75f872f29b8b8bd8c0b946f63345bb144e9eeda" dependencies = [ "autocfg 1.0.1", "bytes", diff --git a/Cargo.toml b/Cargo.toml index b66777b..50c9a72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ atty = "0.2.14" thiserror = "1.0.20" anyhow = "1.0" reqwest = "0.11" -tokio = { version = "1.0", features = ["rt", "macros", "time", "signal"] } +tokio = { version = "1.3", features = ["rt", "macros", "time", "signal"] } serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } sha-1 = "0.9.1" diff --git a/spikes/clickhouse-ingest/Cargo.toml b/spikes/clickhouse-ingest/Cargo.toml index 45a3c8f..d62e5ac 100644 --- a/spikes/clickhouse-ingest/Cargo.toml +++ b/spikes/clickhouse-ingest/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0" clickhouse-rs = { git = "https://github.com/Count-Count/clickhouse-rs.git", branch = "chrono-no-oldtime" } serde = { version = "1.0", features = [ "derive" ] } quick-xml = { version = "0.22", features = [ "serialize" ] } -tokio = { version = "1.0", features = ["full"] } +tokio = { version = "1.3", features = ["full"] } env_logger = "0.8" chrono = { version = "0.4", default-features = false, features = [ "std" ] } chrono-tz = "0.5" diff --git a/spikes/update/Cargo.toml b/spikes/update/Cargo.toml index 7ad654b..00aad36 100644 --- a/spikes/update/Cargo.toml +++ b/spikes/update/Cargo.toml @@ -5,6 +5,6 @@ authors = ["Count Count "] edition = "2018" [dependencies] -tokio = { version = "1.0", features = ["rt", "macros", "time", "signal"] } +tokio = { version = "1.3", features = ["rt", "macros", "time", "signal"] } thiserror = "1.0.20" mediawiki = "0.2.3"