ncalendar

Reimplementation of the BSD calendar(1) program in Rust

git clone https://git.8pit.net/ncalendar.git

  1# This file is automatically @generated by Cargo.
  2# It is not intended for manual editing.
  3version = 3
  4
  5[[package]]
  6name = "ansi_term"
  7version = "0.12.1"
  8source = "registry+https://github.com/rust-lang/crates.io-index"
  9checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
 10dependencies = [
 11 "winapi",
 12]
 13
 14[[package]]
 15name = "atty"
 16version = "0.2.14"
 17source = "registry+https://github.com/rust-lang/crates.io-index"
 18checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
 19dependencies = [
 20 "hermit-abi",
 21 "libc",
 22 "winapi",
 23]
 24
 25[[package]]
 26name = "bitflags"
 27version = "1.3.2"
 28source = "registry+https://github.com/rust-lang/crates.io-index"
 29checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
 30
 31[[package]]
 32name = "clap"
 33version = "2.34.0"
 34source = "registry+https://github.com/rust-lang/crates.io-index"
 35checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
 36dependencies = [
 37 "ansi_term",
 38 "atty",
 39 "bitflags",
 40 "strsim",
 41 "textwrap",
 42 "unicode-width",
 43 "vec_map",
 44]
 45
 46[[package]]
 47name = "heck"
 48version = "0.3.3"
 49source = "registry+https://github.com/rust-lang/crates.io-index"
 50checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
 51dependencies = [
 52 "unicode-segmentation",
 53]
 54
 55[[package]]
 56name = "hermit-abi"
 57version = "0.1.19"
 58source = "registry+https://github.com/rust-lang/crates.io-index"
 59checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
 60dependencies = [
 61 "libc",
 62]
 63
 64[[package]]
 65name = "itoa"
 66version = "1.0.5"
 67source = "registry+https://github.com/rust-lang/crates.io-index"
 68checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
 69
 70[[package]]
 71name = "lazy_static"
 72version = "1.4.0"
 73source = "registry+https://github.com/rust-lang/crates.io-index"
 74checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 75
 76[[package]]
 77name = "libc"
 78version = "0.2.139"
 79source = "registry+https://github.com/rust-lang/crates.io-index"
 80checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
 81
 82[[package]]
 83name = "memchr"
 84version = "2.5.0"
 85source = "registry+https://github.com/rust-lang/crates.io-index"
 86checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
 87
 88[[package]]
 89name = "minimal-lexical"
 90version = "0.2.1"
 91source = "registry+https://github.com/rust-lang/crates.io-index"
 92checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
 93
 94[[package]]
 95name = "ncalendar"
 96version = "0.1.0"
 97dependencies = [
 98 "nom",
 99 "structopt",
100 "time",
101]
102
103[[package]]
104name = "nom"
105version = "7.1.3"
106source = "registry+https://github.com/rust-lang/crates.io-index"
107checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
108dependencies = [
109 "memchr",
110 "minimal-lexical",
111]
112
113[[package]]
114name = "num_threads"
115version = "0.1.6"
116source = "registry+https://github.com/rust-lang/crates.io-index"
117checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
118dependencies = [
119 "libc",
120]
121
122[[package]]
123name = "proc-macro-error"
124version = "1.0.4"
125source = "registry+https://github.com/rust-lang/crates.io-index"
126checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
127dependencies = [
128 "proc-macro-error-attr",
129 "proc-macro2",
130 "quote",
131 "syn",
132 "version_check",
133]
134
135[[package]]
136name = "proc-macro-error-attr"
137version = "1.0.4"
138source = "registry+https://github.com/rust-lang/crates.io-index"
139checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
140dependencies = [
141 "proc-macro2",
142 "quote",
143 "version_check",
144]
145
146[[package]]
147name = "proc-macro2"
148version = "1.0.51"
149source = "registry+https://github.com/rust-lang/crates.io-index"
150checksum = "5d727cae5b39d21da60fa540906919ad737832fe0b1c165da3a34d6548c849d6"
151dependencies = [
152 "unicode-ident",
153]
154
155[[package]]
156name = "quote"
157version = "1.0.23"
158source = "registry+https://github.com/rust-lang/crates.io-index"
159checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
160dependencies = [
161 "proc-macro2",
162]
163
164[[package]]
165name = "serde"
166version = "1.0.152"
167source = "registry+https://github.com/rust-lang/crates.io-index"
168checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
169
170[[package]]
171name = "strsim"
172version = "0.8.0"
173source = "registry+https://github.com/rust-lang/crates.io-index"
174checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
175
176[[package]]
177name = "structopt"
178version = "0.3.26"
179source = "registry+https://github.com/rust-lang/crates.io-index"
180checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
181dependencies = [
182 "clap",
183 "lazy_static",
184 "structopt-derive",
185]
186
187[[package]]
188name = "structopt-derive"
189version = "0.4.18"
190source = "registry+https://github.com/rust-lang/crates.io-index"
191checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
192dependencies = [
193 "heck",
194 "proc-macro-error",
195 "proc-macro2",
196 "quote",
197 "syn",
198]
199
200[[package]]
201name = "syn"
202version = "1.0.107"
203source = "registry+https://github.com/rust-lang/crates.io-index"
204checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
205dependencies = [
206 "proc-macro2",
207 "quote",
208 "unicode-ident",
209]
210
211[[package]]
212name = "textwrap"
213version = "0.11.0"
214source = "registry+https://github.com/rust-lang/crates.io-index"
215checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
216dependencies = [
217 "unicode-width",
218]
219
220[[package]]
221name = "time"
222version = "0.3.17"
223source = "registry+https://github.com/rust-lang/crates.io-index"
224checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
225dependencies = [
226 "itoa",
227 "libc",
228 "num_threads",
229 "serde",
230 "time-core",
231 "time-macros",
232]
233
234[[package]]
235name = "time-core"
236version = "0.1.0"
237source = "registry+https://github.com/rust-lang/crates.io-index"
238checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
239
240[[package]]
241name = "time-macros"
242version = "0.2.6"
243source = "registry+https://github.com/rust-lang/crates.io-index"
244checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
245dependencies = [
246 "time-core",
247]
248
249[[package]]
250name = "unicode-ident"
251version = "1.0.6"
252source = "registry+https://github.com/rust-lang/crates.io-index"
253checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
254
255[[package]]
256name = "unicode-segmentation"
257version = "1.10.1"
258source = "registry+https://github.com/rust-lang/crates.io-index"
259checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
260
261[[package]]
262name = "unicode-width"
263version = "0.1.10"
264source = "registry+https://github.com/rust-lang/crates.io-index"
265checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
266
267[[package]]
268name = "vec_map"
269version = "0.8.2"
270source = "registry+https://github.com/rust-lang/crates.io-index"
271checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
272
273[[package]]
274name = "version_check"
275version = "0.9.4"
276source = "registry+https://github.com/rust-lang/crates.io-index"
277checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
278
279[[package]]
280name = "winapi"
281version = "0.3.9"
282source = "registry+https://github.com/rust-lang/crates.io-index"
283checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
284dependencies = [
285 "winapi-i686-pc-windows-gnu",
286 "winapi-x86_64-pc-windows-gnu",
287]
288
289[[package]]
290name = "winapi-i686-pc-windows-gnu"
291version = "0.4.0"
292source = "registry+https://github.com/rust-lang/crates.io-index"
293checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
294
295[[package]]
296name = "winapi-x86_64-pc-windows-gnu"
297version = "0.4.0"
298source = "registry+https://github.com/rust-lang/crates.io-index"
299checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"