Author: Daniel Noland [daniel@stateless.net]
Committer: Jason White [github@jasonwhite.io] Tue, 13 Sep 2022 04:47:28 +0000
Hash: 8a6f0f303986128fb8edb49aaeeb1b5f51024049
Timestamp: Tue, 13 Sep 2022 04:47:28 +0000 (2 years ago)

+21 -19 +/-2 browse
Bump tokio-util to 0.7
1diff --git a/Cargo.lock b/Cargo.lock
2index dc03187..53a3485 100644
3--- a/Cargo.lock
4+++ b/Cargo.lock
5 @@ -3,6 +3,17 @@
6 version = 3
7
8 [[package]]
9+ name = "ahash"
10+ version = "0.7.6"
11+ source = "registry+https://github.com/rust-lang/crates.io-index"
12+ checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
13+ dependencies = [
14+ "getrandom",
15+ "once_cell",
16+ "version_check",
17+ ]
18+
19+ [[package]]
20 name = "aho-corasick"
21 version = "0.7.19"
22 source = "registry+https://github.com/rust-lang/crates.io-index"
23 @@ -538,7 +549,7 @@ dependencies = [
24 "indexmap",
25 "slab",
26 "tokio",
27- "tokio-util 0.7.4",
28+ "tokio-util",
29 "tracing",
30 ]
31
32 @@ -547,6 +558,9 @@ name = "hashbrown"
33 version = "0.12.3"
34 source = "registry+https://github.com/rust-lang/crates.io-index"
35 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
36+ dependencies = [
37+ "ahash",
38+ ]
39
40 [[package]]
41 name = "heck"
42 @@ -1161,7 +1175,7 @@ dependencies = [
43 "structopt",
44 "tempfile",
45 "tokio",
46- "tokio-util 0.6.10",
47+ "tokio-util",
48 "toml",
49 "url",
50 "uuid",
51 @@ -1649,30 +1663,18 @@ dependencies = [
52
53 [[package]]
54 name = "tokio-util"
55- version = "0.6.10"
56- source = "registry+https://github.com/rust-lang/crates.io-index"
57- checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
58- dependencies = [
59- "bytes",
60- "futures-core",
61- "futures-io",
62- "futures-sink",
63- "log",
64- "pin-project-lite",
65- "slab",
66- "tokio",
67- ]
68-
69- [[package]]
70- name = "tokio-util"
71 version = "0.7.4"
72 source = "registry+https://github.com/rust-lang/crates.io-index"
73 checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
74 dependencies = [
75 "bytes",
76 "futures-core",
77+ "futures-io",
78 "futures-sink",
79+ "futures-util",
80+ "hashbrown",
81 "pin-project-lite",
82+ "slab",
83 "tokio",
84 "tracing",
85 ]
86 diff --git a/Cargo.toml b/Cargo.toml
87index 8be304f..46b9053 100644
88--- a/Cargo.toml
89+++ b/Cargo.toml
90 @@ -39,7 +39,7 @@ serde_json = "1"
91 sha2 = "0.10"
92 structopt = "0.3"
93 tokio = { version = "1", features = ["full"] }
94- tokio-util = { version = "0.6", features = ["full"] }
95+ tokio-util = { version = "0.7", features = ["full"] }
96 url = "2"
97 uuid = { version = "1.1", features = ["v4"] }
98