diff options
| author | diogo464 <[email protected]> | 2022-02-07 15:45:21 +0000 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2022-02-07 15:52:30 +0000 |
| commit | 406a3e662b3fafd73ab72a6f7bd4e22131654dfb (patch) | |
| tree | bf044ef831f5938fdb21224f434f9e896c98b8b6 /Cargo.lock | |
| parent | cbb2edb0b523f2494fd543857195792a8eda1b62 (diff) | |
snapshot
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 125 |
1 files changed, 125 insertions, 0 deletions
| @@ -3,6 +3,15 @@ | |||
| 3 | version = 3 | 3 | version = 3 |
| 4 | 4 | ||
| 5 | [[package]] | 5 | [[package]] |
| 6 | name = "aho-corasick" | ||
| 7 | version = "0.7.18" | ||
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 9 | checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" | ||
| 10 | dependencies = [ | ||
| 11 | "memchr", | ||
| 12 | ] | ||
| 13 | |||
| 14 | [[package]] | ||
| 6 | name = "ansi_term" | 15 | name = "ansi_term" |
| 7 | version = "0.12.1" | 16 | version = "0.12.1" |
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | 17 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -41,6 +50,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 41 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | 50 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
| 42 | 51 | ||
| 43 | [[package]] | 52 | [[package]] |
| 53 | name = "cfg-if" | ||
| 54 | version = "1.0.0" | ||
| 55 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 56 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" | ||
| 57 | |||
| 58 | [[package]] | ||
| 44 | name = "clap" | 59 | name = "clap" |
| 45 | version = "3.0.14" | 60 | version = "3.0.14" |
| 46 | source = "registry+https://github.com/rust-lang/crates.io-index" | 61 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -77,12 +92,37 @@ dependencies = [ | |||
| 77 | "ansi_term", | 92 | "ansi_term", |
| 78 | "anyhow", | 93 | "anyhow", |
| 79 | "clap", | 94 | "clap", |
| 95 | "flexi_logger", | ||
| 96 | "log", | ||
| 80 | "serde", | 97 | "serde", |
| 81 | "slotmap", | 98 | "slotmap", |
| 82 | "toml", | 99 | "toml", |
| 83 | ] | 100 | ] |
| 84 | 101 | ||
| 85 | [[package]] | 102 | [[package]] |
| 103 | name = "flexi_logger" | ||
| 104 | version = "0.22.3" | ||
| 105 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 106 | checksum = "969940c39bc718475391e53a3a59b0157e64929c80cf83ad5dde5f770ecdc423" | ||
| 107 | dependencies = [ | ||
| 108 | "ansi_term", | ||
| 109 | "atty", | ||
| 110 | "glob", | ||
| 111 | "lazy_static", | ||
| 112 | "log", | ||
| 113 | "regex", | ||
| 114 | "rustversion", | ||
| 115 | "thiserror", | ||
| 116 | "time", | ||
| 117 | ] | ||
| 118 | |||
| 119 | [[package]] | ||
| 120 | name = "glob" | ||
| 121 | version = "0.3.0" | ||
| 122 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 123 | checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" | ||
| 124 | |||
| 125 | [[package]] | ||
| 86 | name = "hashbrown" | 126 | name = "hashbrown" |
| 87 | version = "0.11.2" | 127 | version = "0.11.2" |
| 88 | source = "registry+https://github.com/rust-lang/crates.io-index" | 128 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -114,6 +154,12 @@ dependencies = [ | |||
| 114 | ] | 154 | ] |
| 115 | 155 | ||
| 116 | [[package]] | 156 | [[package]] |
| 157 | name = "itoa" | ||
| 158 | version = "1.0.1" | ||
| 159 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 160 | checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35" | ||
| 161 | |||
| 162 | [[package]] | ||
| 117 | name = "lazy_static" | 163 | name = "lazy_static" |
| 118 | version = "1.4.0" | 164 | version = "1.4.0" |
| 119 | source = "registry+https://github.com/rust-lang/crates.io-index" | 165 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -126,12 +172,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 126 | checksum = "e74d72e0f9b65b5b4ca49a346af3976df0f9c61d550727f349ecd559f251a26c" | 172 | checksum = "e74d72e0f9b65b5b4ca49a346af3976df0f9c61d550727f349ecd559f251a26c" |
| 127 | 173 | ||
| 128 | [[package]] | 174 | [[package]] |
| 175 | name = "log" | ||
| 176 | version = "0.4.14" | ||
| 177 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 178 | checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" | ||
| 179 | dependencies = [ | ||
| 180 | "cfg-if", | ||
| 181 | ] | ||
| 182 | |||
| 183 | [[package]] | ||
| 129 | name = "memchr" | 184 | name = "memchr" |
| 130 | version = "2.4.1" | 185 | version = "2.4.1" |
| 131 | source = "registry+https://github.com/rust-lang/crates.io-index" | 186 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 132 | checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" | 187 | checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" |
| 133 | 188 | ||
| 134 | [[package]] | 189 | [[package]] |
| 190 | name = "num_threads" | ||
| 191 | version = "0.1.3" | ||
| 192 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 193 | checksum = "97ba99ba6393e2c3734791401b66902d981cb03bf190af674ca69949b6d5fb15" | ||
| 194 | dependencies = [ | ||
| 195 | "libc", | ||
| 196 | ] | ||
| 197 | |||
| 198 | [[package]] | ||
| 135 | name = "os_str_bytes" | 199 | name = "os_str_bytes" |
| 136 | version = "6.0.0" | 200 | version = "6.0.0" |
| 137 | source = "registry+https://github.com/rust-lang/crates.io-index" | 201 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -183,6 +247,29 @@ dependencies = [ | |||
| 183 | ] | 247 | ] |
| 184 | 248 | ||
| 185 | [[package]] | 249 | [[package]] |
| 250 | name = "regex" | ||
| 251 | version = "1.5.4" | ||
| 252 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 253 | checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" | ||
| 254 | dependencies = [ | ||
| 255 | "aho-corasick", | ||
| 256 | "memchr", | ||
| 257 | "regex-syntax", | ||
| 258 | ] | ||
| 259 | |||
| 260 | [[package]] | ||
| 261 | name = "regex-syntax" | ||
| 262 | version = "0.6.25" | ||
| 263 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 264 | checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" | ||
| 265 | |||
| 266 | [[package]] | ||
| 267 | name = "rustversion" | ||
| 268 | version = "1.0.6" | ||
| 269 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 270 | checksum = "f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f" | ||
| 271 | |||
| 272 | [[package]] | ||
| 186 | name = "serde" | 273 | name = "serde" |
| 187 | version = "1.0.136" | 274 | version = "1.0.136" |
| 188 | source = "registry+https://github.com/rust-lang/crates.io-index" | 275 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -244,6 +331,44 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 244 | checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80" | 331 | checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80" |
| 245 | 332 | ||
| 246 | [[package]] | 333 | [[package]] |
| 334 | name = "thiserror" | ||
| 335 | version = "1.0.30" | ||
| 336 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 337 | checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" | ||
| 338 | dependencies = [ | ||
| 339 | "thiserror-impl", | ||
| 340 | ] | ||
| 341 | |||
| 342 | [[package]] | ||
| 343 | name = "thiserror-impl" | ||
| 344 | version = "1.0.30" | ||
| 345 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 346 | checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" | ||
| 347 | dependencies = [ | ||
| 348 | "proc-macro2", | ||
| 349 | "quote", | ||
| 350 | "syn", | ||
| 351 | ] | ||
| 352 | |||
| 353 | [[package]] | ||
| 354 | name = "time" | ||
| 355 | version = "0.3.7" | ||
| 356 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 357 | checksum = "004cbc98f30fa233c61a38bc77e96a9106e65c88f2d3bef182ae952027e5753d" | ||
| 358 | dependencies = [ | ||
| 359 | "itoa", | ||
| 360 | "libc", | ||
| 361 | "num_threads", | ||
| 362 | "time-macros", | ||
| 363 | ] | ||
| 364 | |||
| 365 | [[package]] | ||
| 366 | name = "time-macros" | ||
| 367 | version = "0.2.3" | ||
| 368 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 369 | checksum = "25eb0ca3468fc0acc11828786797f6ef9aa1555e4a211a60d64cc8e4d1be47d6" | ||
| 370 | |||
| 371 | [[package]] | ||
| 247 | name = "toml" | 372 | name = "toml" |
| 248 | version = "0.5.8" | 373 | version = "0.5.8" |
| 249 | source = "registry+https://github.com/rust-lang/crates.io-index" | 374 | source = "registry+https://github.com/rust-lang/crates.io-index" |
