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