diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 47 |
1 files changed, 47 insertions, 0 deletions
@@ -41,6 +41,15 @@ dependencies = [ | |||
41 | ] | 41 | ] |
42 | 42 | ||
43 | [[package]] | 43 | [[package]] |
44 | name = "ansi_term" | ||
45 | version = "0.12.1" | ||
46 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
47 | checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" | ||
48 | dependencies = [ | ||
49 | "winapi 0.3.9", | ||
50 | ] | ||
51 | |||
52 | [[package]] | ||
44 | name = "anyhow" | 53 | name = "anyhow" |
45 | version = "1.0.40" | 54 | version = "1.0.40" |
46 | source = "registry+https://github.com/rust-lang/crates.io-index" | 55 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -283,6 +292,16 @@ dependencies = [ | |||
283 | ] | 292 | ] |
284 | 293 | ||
285 | [[package]] | 294 | [[package]] |
295 | name = "ctor" | ||
296 | version = "0.1.20" | ||
297 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
298 | checksum = "5e98e2ad1a782e33928b96fc3948e7c355e5af34ba4de7670fe8bac2a3b2006d" | ||
299 | dependencies = [ | ||
300 | "quote", | ||
301 | "syn", | ||
302 | ] | ||
303 | |||
304 | [[package]] | ||
286 | name = "derivative" | 305 | name = "derivative" |
287 | version = "2.2.0" | 306 | version = "2.2.0" |
288 | source = "registry+https://github.com/rust-lang/crates.io-index" | 307 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -294,6 +313,12 @@ dependencies = [ | |||
294 | ] | 313 | ] |
295 | 314 | ||
296 | [[package]] | 315 | [[package]] |
316 | name = "diff" | ||
317 | version = "0.1.12" | ||
318 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
319 | checksum = "0e25ea47919b1560c4e3b7fe0aaab9becf5b84a10325ddf7db0f0ba5e1026499" | ||
320 | |||
321 | [[package]] | ||
297 | name = "digest" | 322 | name = "digest" |
298 | version = "0.9.0" | 323 | version = "0.9.0" |
299 | source = "registry+https://github.com/rust-lang/crates.io-index" | 324 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -457,6 +482,7 @@ dependencies = [ | |||
457 | "log4rs", | 482 | "log4rs", |
458 | "md-5", | 483 | "md-5", |
459 | "parking_lot 0.10.2", | 484 | "parking_lot 0.10.2", |
485 | "pretty_assertions", | ||
460 | "rsa", | 486 | "rsa", |
461 | "serde", | 487 | "serde", |
462 | "serde_json", | 488 | "serde_json", |
@@ -985,6 +1011,15 @@ dependencies = [ | |||
985 | ] | 1011 | ] |
986 | 1012 | ||
987 | [[package]] | 1013 | [[package]] |
1014 | name = "output_vt100" | ||
1015 | version = "0.1.2" | ||
1016 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1017 | checksum = "53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9" | ||
1018 | dependencies = [ | ||
1019 | "winapi 0.3.9", | ||
1020 | ] | ||
1021 | |||
1022 | [[package]] | ||
988 | name = "parking_lot" | 1023 | name = "parking_lot" |
989 | version = "0.10.2" | 1024 | version = "0.10.2" |
990 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1025 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1115,6 +1150,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1115 | checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" | 1150 | checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" |
1116 | 1151 | ||
1117 | [[package]] | 1152 | [[package]] |
1153 | name = "pretty_assertions" | ||
1154 | version = "0.7.2" | ||
1155 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1156 | checksum = "1cab0e7c02cf376875e9335e0ba1da535775beb5450d21e1dffca068818ed98b" | ||
1157 | dependencies = [ | ||
1158 | "ansi_term", | ||
1159 | "ctor", | ||
1160 | "diff", | ||
1161 | "output_vt100", | ||
1162 | ] | ||
1163 | |||
1164 | [[package]] | ||
1118 | name = "proc-macro2" | 1165 | name = "proc-macro2" |
1119 | version = "1.0.26" | 1166 | version = "1.0.26" |
1120 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1167 | source = "registry+https://github.com/rust-lang/crates.io-index" |