/ Cargo.lock
Cargo.lock
  1  # This file is automatically @generated by Cargo.
  2  # It is not intended for manual editing.
  3  version = 4
  4  
  5  [[package]]
  6  name = "ansi_term"
  7  version = "0.12.1"
  8  source = "registry+https://github.com/rust-lang/crates.io-index"
  9  checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
 10  dependencies = [
 11   "winapi",
 12  ]
 13  
 14  [[package]]
 15  name = "anyhow"
 16  version = "1.0.99"
 17  source = "registry+https://github.com/rust-lang/crates.io-index"
 18  checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
 19  
 20  [[package]]
 21  name = "atty"
 22  version = "0.2.14"
 23  source = "registry+https://github.com/rust-lang/crates.io-index"
 24  checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
 25  dependencies = [
 26   "hermit-abi",
 27   "libc",
 28   "winapi",
 29  ]
 30  
 31  [[package]]
 32  name = "bitflags"
 33  version = "1.3.2"
 34  source = "registry+https://github.com/rust-lang/crates.io-index"
 35  checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
 36  
 37  [[package]]
 38  name = "clap"
 39  version = "2.34.0"
 40  source = "registry+https://github.com/rust-lang/crates.io-index"
 41  checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
 42  dependencies = [
 43   "ansi_term",
 44   "atty",
 45   "bitflags",
 46   "strsim",
 47   "textwrap",
 48   "unicode-width",
 49   "vec_map",
 50  ]
 51  
 52  [[package]]
 53  name = "dim"
 54  version = "0.2.1"
 55  dependencies = [
 56   "anyhow",
 57   "glob",
 58   "humantime",
 59   "structopt",
 60   "thiserror",
 61   "xdg",
 62  ]
 63  
 64  [[package]]
 65  name = "glob"
 66  version = "0.3.3"
 67  source = "registry+https://github.com/rust-lang/crates.io-index"
 68  checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
 69  
 70  [[package]]
 71  name = "heck"
 72  version = "0.3.3"
 73  source = "registry+https://github.com/rust-lang/crates.io-index"
 74  checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
 75  dependencies = [
 76   "unicode-segmentation",
 77  ]
 78  
 79  [[package]]
 80  name = "hermit-abi"
 81  version = "0.1.19"
 82  source = "registry+https://github.com/rust-lang/crates.io-index"
 83  checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
 84  dependencies = [
 85   "libc",
 86  ]
 87  
 88  [[package]]
 89  name = "humantime"
 90  version = "2.2.0"
 91  source = "registry+https://github.com/rust-lang/crates.io-index"
 92  checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
 93  
 94  [[package]]
 95  name = "lazy_static"
 96  version = "1.5.0"
 97  source = "registry+https://github.com/rust-lang/crates.io-index"
 98  checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
 99  
100  [[package]]
101  name = "libc"
102  version = "0.2.175"
103  source = "registry+https://github.com/rust-lang/crates.io-index"
104  checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
105  
106  [[package]]
107  name = "proc-macro-error"
108  version = "1.0.4"
109  source = "registry+https://github.com/rust-lang/crates.io-index"
110  checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
111  dependencies = [
112   "proc-macro-error-attr",
113   "proc-macro2",
114   "quote",
115   "syn 1.0.109",
116   "version_check",
117  ]
118  
119  [[package]]
120  name = "proc-macro-error-attr"
121  version = "1.0.4"
122  source = "registry+https://github.com/rust-lang/crates.io-index"
123  checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
124  dependencies = [
125   "proc-macro2",
126   "quote",
127   "version_check",
128  ]
129  
130  [[package]]
131  name = "proc-macro2"
132  version = "1.0.101"
133  source = "registry+https://github.com/rust-lang/crates.io-index"
134  checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
135  dependencies = [
136   "unicode-ident",
137  ]
138  
139  [[package]]
140  name = "quote"
141  version = "1.0.40"
142  source = "registry+https://github.com/rust-lang/crates.io-index"
143  checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
144  dependencies = [
145   "proc-macro2",
146  ]
147  
148  [[package]]
149  name = "strsim"
150  version = "0.8.0"
151  source = "registry+https://github.com/rust-lang/crates.io-index"
152  checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
153  
154  [[package]]
155  name = "structopt"
156  version = "0.3.26"
157  source = "registry+https://github.com/rust-lang/crates.io-index"
158  checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
159  dependencies = [
160   "clap",
161   "lazy_static",
162   "structopt-derive",
163  ]
164  
165  [[package]]
166  name = "structopt-derive"
167  version = "0.4.18"
168  source = "registry+https://github.com/rust-lang/crates.io-index"
169  checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
170  dependencies = [
171   "heck",
172   "proc-macro-error",
173   "proc-macro2",
174   "quote",
175   "syn 1.0.109",
176  ]
177  
178  [[package]]
179  name = "syn"
180  version = "1.0.109"
181  source = "registry+https://github.com/rust-lang/crates.io-index"
182  checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
183  dependencies = [
184   "proc-macro2",
185   "quote",
186   "unicode-ident",
187  ]
188  
189  [[package]]
190  name = "syn"
191  version = "2.0.106"
192  source = "registry+https://github.com/rust-lang/crates.io-index"
193  checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
194  dependencies = [
195   "proc-macro2",
196   "quote",
197   "unicode-ident",
198  ]
199  
200  [[package]]
201  name = "textwrap"
202  version = "0.11.0"
203  source = "registry+https://github.com/rust-lang/crates.io-index"
204  checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
205  dependencies = [
206   "unicode-width",
207  ]
208  
209  [[package]]
210  name = "thiserror"
211  version = "2.0.16"
212  source = "registry+https://github.com/rust-lang/crates.io-index"
213  checksum = "3467d614147380f2e4e374161426ff399c91084acd2363eaf549172b3d5e60c0"
214  dependencies = [
215   "thiserror-impl",
216  ]
217  
218  [[package]]
219  name = "thiserror-impl"
220  version = "2.0.16"
221  source = "registry+https://github.com/rust-lang/crates.io-index"
222  checksum = "6c5e1be1c48b9172ee610da68fd9cd2770e7a4056cb3fc98710ee6906f0c7960"
223  dependencies = [
224   "proc-macro2",
225   "quote",
226   "syn 2.0.106",
227  ]
228  
229  [[package]]
230  name = "unicode-ident"
231  version = "1.0.18"
232  source = "registry+https://github.com/rust-lang/crates.io-index"
233  checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
234  
235  [[package]]
236  name = "unicode-segmentation"
237  version = "1.12.0"
238  source = "registry+https://github.com/rust-lang/crates.io-index"
239  checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
240  
241  [[package]]
242  name = "unicode-width"
243  version = "0.1.14"
244  source = "registry+https://github.com/rust-lang/crates.io-index"
245  checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
246  
247  [[package]]
248  name = "vec_map"
249  version = "0.8.2"
250  source = "registry+https://github.com/rust-lang/crates.io-index"
251  checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
252  
253  [[package]]
254  name = "version_check"
255  version = "0.9.5"
256  source = "registry+https://github.com/rust-lang/crates.io-index"
257  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
258  
259  [[package]]
260  name = "winapi"
261  version = "0.3.9"
262  source = "registry+https://github.com/rust-lang/crates.io-index"
263  checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
264  dependencies = [
265   "winapi-i686-pc-windows-gnu",
266   "winapi-x86_64-pc-windows-gnu",
267  ]
268  
269  [[package]]
270  name = "winapi-i686-pc-windows-gnu"
271  version = "0.4.0"
272  source = "registry+https://github.com/rust-lang/crates.io-index"
273  checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
274  
275  [[package]]
276  name = "winapi-x86_64-pc-windows-gnu"
277  version = "0.4.0"
278  source = "registry+https://github.com/rust-lang/crates.io-index"
279  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
280  
281  [[package]]
282  name = "xdg"
283  version = "3.0.0"
284  source = "registry+https://github.com/rust-lang/crates.io-index"
285  checksum = "2fb433233f2df9344722454bc7e96465c9d03bff9d77c248f9e7523fe79585b5"