|
@@ -2,24 +2,42 @@
|
2
|
2
|
# It is not intended for manual editing.
|
3
|
3
|
[[package]]
|
4
|
4
|
name = "aho-corasick"
|
5
|
|
-version = "0.7.3"
|
|
5
|
+version = "0.7.6"
|
6
|
6
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
7
|
7
|
dependencies = [
|
8
|
|
- "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
8
|
+ "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
9
|
9
|
]
|
10
|
10
|
|
11
|
11
|
[[package]]
|
|
12
|
+name = "arrayvec"
|
|
13
|
+version = "0.4.12"
|
|
14
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+dependencies = [
|
|
16
|
+ "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
17
|
+]
|
|
18
|
+
|
|
19
|
+[[package]]
|
|
20
|
+name = "autocfg"
|
|
21
|
+version = "0.1.7"
|
|
22
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
23
|
+
|
|
24
|
+[[package]]
|
|
25
|
+name = "cfg-if"
|
|
26
|
+version = "0.1.10"
|
|
27
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
|
+
|
|
29
|
+[[package]]
|
12
|
30
|
name = "config"
|
13
|
|
-version = "0.9.2"
|
|
31
|
+version = "0.10.1"
|
14
|
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
15
|
33
|
dependencies = [
|
16
|
|
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
17
|
|
- "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
34
|
+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
35
|
+ "nom 5.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
18
|
36
|
"rust-ini 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
19
|
|
- "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)",
|
20
|
|
- "serde-hjson 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
21
|
|
- "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)",
|
22
|
|
- "toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
37
|
+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
38
|
+ "serde-hjson 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
39
|
+ "serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
40
|
+ "toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
23
|
41
|
"yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
24
|
42
|
]
|
25
|
43
|
|
|
@@ -30,13 +48,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
48
|
|
31
|
49
|
[[package]]
|
32
|
50
|
name = "lazy_static"
|
33
|
|
-version = "0.2.11"
|
|
51
|
+version = "1.4.0"
|
34
|
52
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
35
|
53
|
|
36
|
54
|
[[package]]
|
37
|
|
-name = "lazy_static"
|
38
|
|
-version = "1.3.0"
|
|
55
|
+name = "lexical-core"
|
|
56
|
+version = "0.4.6"
|
39
|
57
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+dependencies = [
|
|
59
|
+ "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
60
|
+ "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
61
|
+ "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
62
|
+ "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
63
|
+ "static_assertions 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
64
|
+]
|
40
|
65
|
|
41
|
66
|
[[package]]
|
42
|
67
|
name = "linked-hash-map"
|
|
@@ -54,15 +79,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
54
|
79
|
|
55
|
80
|
[[package]]
|
56
|
81
|
name = "memchr"
|
57
|
|
-version = "2.2.0"
|
|
82
|
+version = "2.2.1"
|
|
83
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
84
|
+
|
|
85
|
+[[package]]
|
|
86
|
+name = "nodrop"
|
|
87
|
+version = "0.1.14"
|
58
|
88
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
59
|
89
|
|
60
|
90
|
[[package]]
|
61
|
91
|
name = "nom"
|
62
|
|
-version = "4.2.3"
|
|
92
|
+version = "5.0.1"
|
63
|
93
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
64
|
94
|
dependencies = [
|
65
|
|
- "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
95
|
+ "lexical-core 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
96
|
+ "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
66
|
97
|
"version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
67
|
98
|
]
|
68
|
99
|
|
|
@@ -71,40 +102,39 @@ name = "num-traits"
|
71
|
102
|
version = "0.1.43"
|
72
|
103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
73
|
104
|
dependencies = [
|
74
|
|
- "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
105
|
+ "num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
|
75
|
106
|
]
|
76
|
107
|
|
77
|
108
|
[[package]]
|
78
|
109
|
name = "num-traits"
|
79
|
|
-version = "0.2.6"
|
|
110
|
+version = "0.2.10"
|
80
|
111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+dependencies = [
|
|
113
|
+ "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
114
|
+]
|
81
|
115
|
|
82
|
116
|
[[package]]
|
83
|
117
|
name = "phlogger"
|
84
|
118
|
version = "0.1.0"
|
85
|
119
|
dependencies = [
|
86
|
|
- "config 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
120
|
+ "config 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
87
|
121
|
]
|
88
|
122
|
|
89
|
123
|
[[package]]
|
90
|
124
|
name = "regex"
|
91
|
|
-version = "1.1.6"
|
|
125
|
+version = "1.3.1"
|
92
|
126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
93
|
127
|
dependencies = [
|
94
|
|
- "aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
95
|
|
- "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
96
|
|
- "regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
128
|
+ "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
129
|
+ "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
130
|
+ "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
97
|
131
|
"thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
98
|
|
- "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
99
|
132
|
]
|
100
|
133
|
|
101
|
134
|
[[package]]
|
102
|
135
|
name = "regex-syntax"
|
103
|
|
-version = "0.6.6"
|
|
136
|
+version = "0.6.12"
|
104
|
137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
105
|
|
-dependencies = [
|
106
|
|
- "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
107
|
|
-]
|
108
|
138
|
|
109
|
139
|
[[package]]
|
110
|
140
|
name = "rust-ini"
|
|
@@ -112,8 +142,29 @@ version = "0.13.0"
|
112
|
142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
113
|
143
|
|
114
|
144
|
[[package]]
|
|
145
|
+name = "rustc_version"
|
|
146
|
+version = "0.2.3"
|
|
147
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+dependencies = [
|
|
149
|
+ "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
150
|
+]
|
|
151
|
+
|
|
152
|
+[[package]]
|
115
|
153
|
name = "ryu"
|
116
|
|
-version = "0.2.8"
|
|
154
|
+version = "1.0.2"
|
|
155
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
|
|
157
|
+[[package]]
|
|
158
|
+name = "semver"
|
|
159
|
+version = "0.9.0"
|
|
160
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+dependencies = [
|
|
162
|
+ "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
163
|
+]
|
|
164
|
+
|
|
165
|
+[[package]]
|
|
166
|
+name = "semver-parser"
|
|
167
|
+version = "0.7.0"
|
117
|
168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
118
|
169
|
|
119
|
170
|
[[package]]
|
|
@@ -123,29 +174,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
123
|
174
|
|
124
|
175
|
[[package]]
|
125
|
176
|
name = "serde"
|
126
|
|
-version = "1.0.91"
|
|
177
|
+version = "1.0.104"
|
127
|
178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
128
|
179
|
|
129
|
180
|
[[package]]
|
130
|
181
|
name = "serde-hjson"
|
131
|
|
-version = "0.8.2"
|
|
182
|
+version = "0.9.1"
|
132
|
183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
133
|
184
|
dependencies = [
|
134
|
|
- "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
185
|
+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
135
|
186
|
"linked-hash-map 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
136
|
187
|
"num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)",
|
137
|
|
- "regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
188
|
+ "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
138
|
189
|
"serde 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)",
|
139
|
190
|
]
|
140
|
191
|
|
141
|
192
|
[[package]]
|
142
|
193
|
name = "serde_json"
|
143
|
|
-version = "1.0.39"
|
|
194
|
+version = "1.0.44"
|
144
|
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
|
196
|
dependencies = [
|
146
|
197
|
"itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
147
|
|
- "ryu 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
148
|
|
- "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
198
|
+ "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
199
|
+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
|
149
|
200
|
]
|
150
|
201
|
|
151
|
202
|
[[package]]
|
|
@@ -157,32 +208,27 @@ dependencies = [
|
157
|
208
|
]
|
158
|
209
|
|
159
|
210
|
[[package]]
|
|
211
|
+name = "static_assertions"
|
|
212
|
+version = "0.3.4"
|
|
213
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
|
|
215
|
+[[package]]
|
160
|
216
|
name = "thread_local"
|
161
|
217
|
version = "0.3.6"
|
162
|
218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
163
|
219
|
dependencies = [
|
164
|
|
- "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
220
|
+ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
165
|
221
|
]
|
166
|
222
|
|
167
|
223
|
[[package]]
|
168
|
224
|
name = "toml"
|
169
|
|
-version = "0.4.10"
|
|
225
|
+version = "0.5.5"
|
170
|
226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
171
|
227
|
dependencies = [
|
172
|
|
- "serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
228
|
+ "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
|
173
|
229
|
]
|
174
|
230
|
|
175
|
231
|
[[package]]
|
176
|
|
-name = "ucd-util"
|
177
|
|
-version = "0.1.3"
|
178
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
179
|
|
-
|
180
|
|
-[[package]]
|
181
|
|
-name = "utf8-ranges"
|
182
|
|
-version = "1.0.2"
|
183
|
|
-source = "registry+https://github.com/rust-lang/crates.io-index"
|
184
|
|
-
|
185
|
|
-[[package]]
|
186
|
232
|
name = "version_check"
|
187
|
233
|
version = "0.1.5"
|
188
|
234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
@@ -196,29 +242,35 @@ dependencies = [
|
196
|
242
|
]
|
197
|
243
|
|
198
|
244
|
[metadata]
|
199
|
|
-"checksum aho-corasick 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c"
|
200
|
|
-"checksum config 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3e82d07fac0a5eeaa9d959b5194d01bb66e414665f547416958d2b430f8f4852"
|
|
245
|
+"checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d"
|
|
246
|
+"checksum arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9"
|
|
247
|
+"checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
|
|
248
|
+"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
|
249
|
+"checksum config 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "19b076e143e1d9538dde65da30f8481c2a6c44040edb8e02b9bf1351edb92ce3"
|
201
|
250
|
"checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f"
|
202
|
|
-"checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73"
|
203
|
|
-"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14"
|
|
251
|
+"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
252
|
+"checksum lexical-core 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2304bccb228c4b020f3a4835d247df0a02a7c4686098d4167762cfbbe4c5cb14"
|
204
|
253
|
"checksum linked-hash-map 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6d262045c5b87c0861b3f004610afd0e2c851e2908d08b6c870cbb9d5f494ecd"
|
205
|
254
|
"checksum linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83"
|
206
|
|
-"checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39"
|
207
|
|
-"checksum nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
|
|
255
|
+"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e"
|
|
256
|
+"checksum nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
|
|
257
|
+"checksum nom 5.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c618b63422da4401283884e6668d39f819a106ef51f5f59b81add00075da35ca"
|
208
|
258
|
"checksum num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31"
|
209
|
|
-"checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1"
|
210
|
|
-"checksum regex 1.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "8f0a0bcab2fd7d1d7c54fa9eae6f43eddeb9ce2e7352f8518a814a4f65d60c58"
|
211
|
|
-"checksum regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96"
|
|
259
|
+"checksum num-traits 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)" = "d4c81ffc11c212fa327657cb19dd85eb7419e163b5b076bede2bdb5c974c07e4"
|
|
260
|
+"checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd"
|
|
261
|
+"checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716"
|
212
|
262
|
"checksum rust-ini 0.13.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3e52c148ef37f8c375d49d5a73aa70713125b7f19095948a923f80afdeb22ec2"
|
213
|
|
-"checksum ryu 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "b96a9549dc8d48f2c283938303c4b5a77aa29bfbc5b54b084fb1630408899a8f"
|
|
263
|
+"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
|
|
264
|
+"checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8"
|
|
265
|
+"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
|
|
266
|
+"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
214
|
267
|
"checksum serde 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)" = "9dad3f759919b92c3068c696c15c3d17238234498bbdcc80f2c469606f948ac8"
|
215
|
|
-"checksum serde 1.0.91 (registry+https://github.com/rust-lang/crates.io-index)" = "a72e9b96fa45ce22a4bc23da3858dfccfd60acd28a25bcd328a98fdd6bea43fd"
|
216
|
|
-"checksum serde-hjson 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0b833c5ad67d52ced5f5938b2980f32a9c1c5ef047f0b4fb3127e7a423c76153"
|
217
|
|
-"checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d"
|
|
268
|
+"checksum serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"
|
|
269
|
+"checksum serde-hjson 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6a3a4e0ea8a88553209f6cc6cfe8724ecad22e1acf372793c27d995290fe74f8"
|
|
270
|
+"checksum serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)" = "48c575e0cc52bdd09b47f330f646cf59afc586e9c4e3ccd6fc1f625b8ea1dad7"
|
218
|
271
|
"checksum serde_test 0.8.23 (registry+https://github.com/rust-lang/crates.io-index)" = "110b3dbdf8607ec493c22d5d947753282f3bae73c0f56d322af1e8c78e4c23d5"
|
|
272
|
+"checksum static_assertions 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "7f3eb36b47e512f8f1c9e3d10c2c1965bc992bd9cdb024fa581e2194501c83d3"
|
219
|
273
|
"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
|
220
|
|
-"checksum toml 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f"
|
221
|
|
-"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86"
|
222
|
|
-"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737"
|
|
274
|
+"checksum toml 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "01d1404644c8b12b16bfcffa4322403a91a451584daaaa7c28d3152e6cbc98cf"
|
223
|
275
|
"checksum version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
|
224
|
276
|
"checksum yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "65923dd1784f44da1d2c3dbbc5e822045628c590ba72123e1c73d3c230c4434d"
|