diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 41 |
1 files changed, 41 insertions, 0 deletions
@@ -194,6 +194,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
194 | checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" | 194 | checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" |
195 | 195 | ||
196 | [[package]] | 196 | [[package]] |
197 | name = "bstr" | ||
198 | version = "0.2.15" | ||
199 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
200 | checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d" | ||
201 | dependencies = [ | ||
202 | "lazy_static", | ||
203 | "memchr", | ||
204 | "regex-automata", | ||
205 | "serde", | ||
206 | ] | ||
207 | |||
208 | [[package]] | ||
197 | name = "buf_redux" | 209 | name = "buf_redux" |
198 | version = "0.8.4" | 210 | version = "0.8.4" |
199 | source = "registry+https://github.com/rust-lang/crates.io-index" | 211 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -294,6 +306,28 @@ dependencies = [ | |||
294 | ] | 306 | ] |
295 | 307 | ||
296 | [[package]] | 308 | [[package]] |
309 | name = "csv" | ||
310 | version = "1.1.6" | ||
311 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
312 | checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1" | ||
313 | dependencies = [ | ||
314 | "bstr", | ||
315 | "csv-core", | ||
316 | "itoa", | ||
317 | "ryu", | ||
318 | "serde", | ||
319 | ] | ||
320 | |||
321 | [[package]] | ||
322 | name = "csv-core" | ||
323 | version = "0.1.10" | ||
324 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
325 | checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" | ||
326 | dependencies = [ | ||
327 | "memchr", | ||
328 | ] | ||
329 | |||
330 | [[package]] | ||
297 | name = "ctor" | 331 | name = "ctor" |
298 | version = "0.1.20" | 332 | version = "0.1.20" |
299 | source = "registry+https://github.com/rust-lang/crates.io-index" | 333 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -477,6 +511,7 @@ dependencies = [ | |||
477 | "blake2", | 511 | "blake2", |
478 | "block-modes", | 512 | "block-modes", |
479 | "chrono", | 513 | "chrono", |
514 | "csv", | ||
480 | "hex-literal", | 515 | "hex-literal", |
481 | "jsonwebtoken", | 516 | "jsonwebtoken", |
482 | "lazy_static", | 517 | "lazy_static", |
@@ -1301,6 +1336,12 @@ dependencies = [ | |||
1301 | ] | 1336 | ] |
1302 | 1337 | ||
1303 | [[package]] | 1338 | [[package]] |
1339 | name = "regex-automata" | ||
1340 | version = "0.1.10" | ||
1341 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1342 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" | ||
1343 | |||
1344 | [[package]] | ||
1304 | name = "regex-syntax" | 1345 | name = "regex-syntax" |
1305 | version = "0.6.23" | 1346 | version = "0.6.23" |
1306 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1347 | source = "registry+https://github.com/rust-lang/crates.io-index" |