aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock41
1 files changed, 41 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 8228d5f..5a8a201 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -194,6 +194,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
194checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" 194checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
195 195
196[[package]] 196[[package]]
197name = "bstr"
198version = "0.2.15"
199source = "registry+https://github.com/rust-lang/crates.io-index"
200checksum = "a40b47ad93e1a5404e6c18dec46b628214fee441c70f4ab5d6942142cc268a3d"
201dependencies = [
202 "lazy_static",
203 "memchr",
204 "regex-automata",
205 "serde",
206]
207
208[[package]]
197name = "buf_redux" 209name = "buf_redux"
198version = "0.8.4" 210version = "0.8.4"
199source = "registry+https://github.com/rust-lang/crates.io-index" 211source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -294,6 +306,28 @@ dependencies = [
294] 306]
295 307
296[[package]] 308[[package]]
309name = "csv"
310version = "1.1.6"
311source = "registry+https://github.com/rust-lang/crates.io-index"
312checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
313dependencies = [
314 "bstr",
315 "csv-core",
316 "itoa",
317 "ryu",
318 "serde",
319]
320
321[[package]]
322name = "csv-core"
323version = "0.1.10"
324source = "registry+https://github.com/rust-lang/crates.io-index"
325checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
326dependencies = [
327 "memchr",
328]
329
330[[package]]
297name = "ctor" 331name = "ctor"
298version = "0.1.20" 332version = "0.1.20"
299source = "registry+https://github.com/rust-lang/crates.io-index" 333source = "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]]
1339name = "regex-automata"
1340version = "0.1.10"
1341source = "registry+https://github.com/rust-lang/crates.io-index"
1342checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
1343
1344[[package]]
1304name = "regex-syntax" 1345name = "regex-syntax"
1305version = "0.6.23" 1346version = "0.6.23"
1306source = "registry+https://github.com/rust-lang/crates.io-index" 1347source = "registry+https://github.com/rust-lang/crates.io-index"