tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tuckr: 0.7.1 -> 0.8.0
Miguel Madrid-Mencía
2 years ago
982cecf9
80bbc6ea
+808
-8
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
tuckr
Cargo.lock
default.nix
+803
pkgs/applications/misc/tuckr/Cargo.lock
···
1
1
+
# This file is automatically @generated by Cargo.
2
2
+
# It is not intended for manual editing.
3
3
+
version = 3
4
4
+
5
5
+
[[package]]
6
6
+
name = "aead"
7
7
+
version = "0.5.1"
8
8
+
source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
+
checksum = "5c192eb8f11fc081b0fe4259ba5af04217d4e0faddd02417310a927911abd7c8"
10
10
+
dependencies = [
11
11
+
"crypto-common",
12
12
+
"generic-array",
13
13
+
]
14
14
+
15
15
+
[[package]]
16
16
+
name = "ansi-str"
17
17
+
version = "0.5.0"
18
18
+
source = "registry+https://github.com/rust-lang/crates.io-index"
19
19
+
checksum = "84252a7e1a0df81706ce70bbad85ed1e4916448a4093ccd52dd98c6a44a477cd"
20
20
+
dependencies = [
21
21
+
"ansitok",
22
22
+
]
23
23
+
24
24
+
[[package]]
25
25
+
name = "ansitok"
26
26
+
version = "0.2.0"
27
27
+
source = "registry+https://github.com/rust-lang/crates.io-index"
28
28
+
checksum = "220044e6a1bb31ddee4e3db724d29767f352de47445a6cd75e1a173142136c83"
29
29
+
dependencies = [
30
30
+
"nom",
31
31
+
"vte",
32
32
+
]
33
33
+
34
34
+
[[package]]
35
35
+
name = "arrayvec"
36
36
+
version = "0.5.2"
37
37
+
source = "registry+https://github.com/rust-lang/crates.io-index"
38
38
+
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
39
39
+
40
40
+
[[package]]
41
41
+
name = "bitflags"
42
42
+
version = "1.3.2"
43
43
+
source = "registry+https://github.com/rust-lang/crates.io-index"
44
44
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
45
45
+
46
46
+
[[package]]
47
47
+
name = "block-buffer"
48
48
+
version = "0.10.4"
49
49
+
source = "registry+https://github.com/rust-lang/crates.io-index"
50
50
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
51
51
+
dependencies = [
52
52
+
"generic-array",
53
53
+
]
54
54
+
55
55
+
[[package]]
56
56
+
name = "bytecount"
57
57
+
version = "0.6.3"
58
58
+
source = "registry+https://github.com/rust-lang/crates.io-index"
59
59
+
checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
60
60
+
61
61
+
[[package]]
62
62
+
name = "cc"
63
63
+
version = "1.0.79"
64
64
+
source = "registry+https://github.com/rust-lang/crates.io-index"
65
65
+
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
66
66
+
67
67
+
[[package]]
68
68
+
name = "cfg-if"
69
69
+
version = "1.0.0"
70
70
+
source = "registry+https://github.com/rust-lang/crates.io-index"
71
71
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
72
72
+
73
73
+
[[package]]
74
74
+
name = "chacha20"
75
75
+
version = "0.9.0"
76
76
+
source = "registry+https://github.com/rust-lang/crates.io-index"
77
77
+
checksum = "c7fc89c7c5b9e7a02dfe45cd2367bae382f9ed31c61ca8debe5f827c420a2f08"
78
78
+
dependencies = [
79
79
+
"cfg-if",
80
80
+
"cipher",
81
81
+
"cpufeatures",
82
82
+
]
83
83
+
84
84
+
[[package]]
85
85
+
name = "chacha20poly1305"
86
86
+
version = "0.10.1"
87
87
+
source = "registry+https://github.com/rust-lang/crates.io-index"
88
88
+
checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
89
89
+
dependencies = [
90
90
+
"aead",
91
91
+
"chacha20",
92
92
+
"cipher",
93
93
+
"poly1305",
94
94
+
"zeroize",
95
95
+
]
96
96
+
97
97
+
[[package]]
98
98
+
name = "cipher"
99
99
+
version = "0.4.4"
100
100
+
source = "registry+https://github.com/rust-lang/crates.io-index"
101
101
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
102
102
+
dependencies = [
103
103
+
"crypto-common",
104
104
+
"inout",
105
105
+
"zeroize",
106
106
+
]
107
107
+
108
108
+
[[package]]
109
109
+
name = "clap"
110
110
+
version = "4.1.13"
111
111
+
source = "registry+https://github.com/rust-lang/crates.io-index"
112
112
+
checksum = "3c911b090850d79fc64fe9ea01e28e465f65e821e08813ced95bced72f7a8a9b"
113
113
+
dependencies = [
114
114
+
"bitflags",
115
115
+
"clap_derive",
116
116
+
"clap_lex",
117
117
+
"is-terminal",
118
118
+
"once_cell",
119
119
+
"strsim",
120
120
+
"termcolor",
121
121
+
]
122
122
+
123
123
+
[[package]]
124
124
+
name = "clap_derive"
125
125
+
version = "4.1.12"
126
126
+
source = "registry+https://github.com/rust-lang/crates.io-index"
127
127
+
checksum = "9a932373bab67b984c790ddf2c9ca295d8e3af3b7ef92de5a5bacdccdee4b09b"
128
128
+
dependencies = [
129
129
+
"heck",
130
130
+
"proc-macro2",
131
131
+
"quote",
132
132
+
"syn 2.0.10",
133
133
+
]
134
134
+
135
135
+
[[package]]
136
136
+
name = "clap_lex"
137
137
+
version = "0.3.3"
138
138
+
source = "registry+https://github.com/rust-lang/crates.io-index"
139
139
+
checksum = "033f6b7a4acb1f358c742aaca805c939ee73b4c6209ae4318ec7aca81c42e646"
140
140
+
dependencies = [
141
141
+
"os_str_bytes",
142
142
+
]
143
143
+
144
144
+
[[package]]
145
145
+
name = "cpufeatures"
146
146
+
version = "0.2.6"
147
147
+
source = "registry+https://github.com/rust-lang/crates.io-index"
148
148
+
checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181"
149
149
+
dependencies = [
150
150
+
"libc",
151
151
+
]
152
152
+
153
153
+
[[package]]
154
154
+
name = "crypto-common"
155
155
+
version = "0.1.6"
156
156
+
source = "registry+https://github.com/rust-lang/crates.io-index"
157
157
+
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
158
158
+
dependencies = [
159
159
+
"generic-array",
160
160
+
"rand_core",
161
161
+
"typenum",
162
162
+
]
163
163
+
164
164
+
[[package]]
165
165
+
name = "digest"
166
166
+
version = "0.10.6"
167
167
+
source = "registry+https://github.com/rust-lang/crates.io-index"
168
168
+
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
169
169
+
dependencies = [
170
170
+
"block-buffer",
171
171
+
"crypto-common",
172
172
+
]
173
173
+
174
174
+
[[package]]
175
175
+
name = "dirs"
176
176
+
version = "4.0.0"
177
177
+
source = "registry+https://github.com/rust-lang/crates.io-index"
178
178
+
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
179
179
+
dependencies = [
180
180
+
"dirs-sys",
181
181
+
]
182
182
+
183
183
+
[[package]]
184
184
+
name = "dirs-sys"
185
185
+
version = "0.3.7"
186
186
+
source = "registry+https://github.com/rust-lang/crates.io-index"
187
187
+
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
188
188
+
dependencies = [
189
189
+
"libc",
190
190
+
"redox_users",
191
191
+
"winapi",
192
192
+
]
193
193
+
194
194
+
[[package]]
195
195
+
name = "errno"
196
196
+
version = "0.2.8"
197
197
+
source = "registry+https://github.com/rust-lang/crates.io-index"
198
198
+
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
199
199
+
dependencies = [
200
200
+
"errno-dragonfly",
201
201
+
"libc",
202
202
+
"winapi",
203
203
+
]
204
204
+
205
205
+
[[package]]
206
206
+
name = "errno-dragonfly"
207
207
+
version = "0.1.2"
208
208
+
source = "registry+https://github.com/rust-lang/crates.io-index"
209
209
+
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
210
210
+
dependencies = [
211
211
+
"cc",
212
212
+
"libc",
213
213
+
]
214
214
+
215
215
+
[[package]]
216
216
+
name = "fnv"
217
217
+
version = "1.0.7"
218
218
+
source = "registry+https://github.com/rust-lang/crates.io-index"
219
219
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
220
220
+
221
221
+
[[package]]
222
222
+
name = "generic-array"
223
223
+
version = "0.14.6"
224
224
+
source = "registry+https://github.com/rust-lang/crates.io-index"
225
225
+
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
226
226
+
dependencies = [
227
227
+
"typenum",
228
228
+
"version_check",
229
229
+
]
230
230
+
231
231
+
[[package]]
232
232
+
name = "getrandom"
233
233
+
version = "0.2.8"
234
234
+
source = "registry+https://github.com/rust-lang/crates.io-index"
235
235
+
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
236
236
+
dependencies = [
237
237
+
"cfg-if",
238
238
+
"libc",
239
239
+
"wasi",
240
240
+
]
241
241
+
242
242
+
[[package]]
243
243
+
name = "heck"
244
244
+
version = "0.4.1"
245
245
+
source = "registry+https://github.com/rust-lang/crates.io-index"
246
246
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
247
247
+
248
248
+
[[package]]
249
249
+
name = "hermit-abi"
250
250
+
version = "0.3.1"
251
251
+
source = "registry+https://github.com/rust-lang/crates.io-index"
252
252
+
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
253
253
+
254
254
+
[[package]]
255
255
+
name = "inout"
256
256
+
version = "0.1.3"
257
257
+
source = "registry+https://github.com/rust-lang/crates.io-index"
258
258
+
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
259
259
+
dependencies = [
260
260
+
"generic-array",
261
261
+
]
262
262
+
263
263
+
[[package]]
264
264
+
name = "io-lifetimes"
265
265
+
version = "1.0.9"
266
266
+
source = "registry+https://github.com/rust-lang/crates.io-index"
267
267
+
checksum = "09270fd4fa1111bc614ed2246c7ef56239a3063d5be0d1ec3b589c505d400aeb"
268
268
+
dependencies = [
269
269
+
"hermit-abi",
270
270
+
"libc",
271
271
+
"windows-sys",
272
272
+
]
273
273
+
274
274
+
[[package]]
275
275
+
name = "is-terminal"
276
276
+
version = "0.4.5"
277
277
+
source = "registry+https://github.com/rust-lang/crates.io-index"
278
278
+
checksum = "8687c819457e979cc940d09cb16e42a1bf70aa6b60a549de6d3a62a0ee90c69e"
279
279
+
dependencies = [
280
280
+
"hermit-abi",
281
281
+
"io-lifetimes",
282
282
+
"rustix",
283
283
+
"windows-sys",
284
284
+
]
285
285
+
286
286
+
[[package]]
287
287
+
name = "libc"
288
288
+
version = "0.2.140"
289
289
+
source = "registry+https://github.com/rust-lang/crates.io-index"
290
290
+
checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
291
291
+
292
292
+
[[package]]
293
293
+
name = "linux-raw-sys"
294
294
+
version = "0.1.4"
295
295
+
source = "registry+https://github.com/rust-lang/crates.io-index"
296
296
+
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
297
297
+
298
298
+
[[package]]
299
299
+
name = "memchr"
300
300
+
version = "2.5.0"
301
301
+
source = "registry+https://github.com/rust-lang/crates.io-index"
302
302
+
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
303
303
+
304
304
+
[[package]]
305
305
+
name = "minimal-lexical"
306
306
+
version = "0.2.1"
307
307
+
source = "registry+https://github.com/rust-lang/crates.io-index"
308
308
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
309
309
+
310
310
+
[[package]]
311
311
+
name = "nom"
312
312
+
version = "7.1.3"
313
313
+
source = "registry+https://github.com/rust-lang/crates.io-index"
314
314
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
315
315
+
dependencies = [
316
316
+
"memchr",
317
317
+
"minimal-lexical",
318
318
+
]
319
319
+
320
320
+
[[package]]
321
321
+
name = "once_cell"
322
322
+
version = "1.17.1"
323
323
+
source = "registry+https://github.com/rust-lang/crates.io-index"
324
324
+
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
325
325
+
326
326
+
[[package]]
327
327
+
name = "opaque-debug"
328
328
+
version = "0.3.0"
329
329
+
source = "registry+https://github.com/rust-lang/crates.io-index"
330
330
+
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
331
331
+
332
332
+
[[package]]
333
333
+
name = "os_str_bytes"
334
334
+
version = "6.5.0"
335
335
+
source = "registry+https://github.com/rust-lang/crates.io-index"
336
336
+
checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267"
337
337
+
338
338
+
[[package]]
339
339
+
name = "owo-colors"
340
340
+
version = "3.5.0"
341
341
+
source = "registry+https://github.com/rust-lang/crates.io-index"
342
342
+
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
343
343
+
344
344
+
[[package]]
345
345
+
name = "papergrid"
346
346
+
version = "0.7.1"
347
347
+
source = "registry+https://github.com/rust-lang/crates.io-index"
348
348
+
checksum = "1526bb6aa9f10ec339fb10360f22c57edf81d5678d0278e93bc12a47ffbe4b01"
349
349
+
dependencies = [
350
350
+
"ansi-str",
351
351
+
"ansitok",
352
352
+
"bytecount",
353
353
+
"fnv",
354
354
+
"unicode-width",
355
355
+
]
356
356
+
357
357
+
[[package]]
358
358
+
name = "poly1305"
359
359
+
version = "0.8.0"
360
360
+
source = "registry+https://github.com/rust-lang/crates.io-index"
361
361
+
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
362
362
+
dependencies = [
363
363
+
"cpufeatures",
364
364
+
"opaque-debug",
365
365
+
"universal-hash",
366
366
+
]
367
367
+
368
368
+
[[package]]
369
369
+
name = "ppv-lite86"
370
370
+
version = "0.2.17"
371
371
+
source = "registry+https://github.com/rust-lang/crates.io-index"
372
372
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
373
373
+
374
374
+
[[package]]
375
375
+
name = "proc-macro-error"
376
376
+
version = "1.0.4"
377
377
+
source = "registry+https://github.com/rust-lang/crates.io-index"
378
378
+
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
379
379
+
dependencies = [
380
380
+
"proc-macro-error-attr",
381
381
+
"proc-macro2",
382
382
+
"quote",
383
383
+
"syn 1.0.109",
384
384
+
"version_check",
385
385
+
]
386
386
+
387
387
+
[[package]]
388
388
+
name = "proc-macro-error-attr"
389
389
+
version = "1.0.4"
390
390
+
source = "registry+https://github.com/rust-lang/crates.io-index"
391
391
+
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
392
392
+
dependencies = [
393
393
+
"proc-macro2",
394
394
+
"quote",
395
395
+
"version_check",
396
396
+
]
397
397
+
398
398
+
[[package]]
399
399
+
name = "proc-macro2"
400
400
+
version = "1.0.54"
401
401
+
source = "registry+https://github.com/rust-lang/crates.io-index"
402
402
+
checksum = "e472a104799c74b514a57226160104aa483546de37e839ec50e3c2e41dd87534"
403
403
+
dependencies = [
404
404
+
"unicode-ident",
405
405
+
]
406
406
+
407
407
+
[[package]]
408
408
+
name = "quote"
409
409
+
version = "1.0.26"
410
410
+
source = "registry+https://github.com/rust-lang/crates.io-index"
411
411
+
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
412
412
+
dependencies = [
413
413
+
"proc-macro2",
414
414
+
]
415
415
+
416
416
+
[[package]]
417
417
+
name = "rand"
418
418
+
version = "0.8.5"
419
419
+
source = "registry+https://github.com/rust-lang/crates.io-index"
420
420
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
421
421
+
dependencies = [
422
422
+
"libc",
423
423
+
"rand_chacha",
424
424
+
"rand_core",
425
425
+
]
426
426
+
427
427
+
[[package]]
428
428
+
name = "rand_chacha"
429
429
+
version = "0.3.1"
430
430
+
source = "registry+https://github.com/rust-lang/crates.io-index"
431
431
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
432
432
+
dependencies = [
433
433
+
"ppv-lite86",
434
434
+
"rand_core",
435
435
+
]
436
436
+
437
437
+
[[package]]
438
438
+
name = "rand_core"
439
439
+
version = "0.6.4"
440
440
+
source = "registry+https://github.com/rust-lang/crates.io-index"
441
441
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
442
442
+
dependencies = [
443
443
+
"getrandom",
444
444
+
]
445
445
+
446
446
+
[[package]]
447
447
+
name = "redox_syscall"
448
448
+
version = "0.2.16"
449
449
+
source = "registry+https://github.com/rust-lang/crates.io-index"
450
450
+
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
451
451
+
dependencies = [
452
452
+
"bitflags",
453
453
+
]
454
454
+
455
455
+
[[package]]
456
456
+
name = "redox_users"
457
457
+
version = "0.4.3"
458
458
+
source = "registry+https://github.com/rust-lang/crates.io-index"
459
459
+
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
460
460
+
dependencies = [
461
461
+
"getrandom",
462
462
+
"redox_syscall",
463
463
+
"thiserror",
464
464
+
]
465
465
+
466
466
+
[[package]]
467
467
+
name = "rpassword"
468
468
+
version = "7.2.0"
469
469
+
source = "registry+https://github.com/rust-lang/crates.io-index"
470
470
+
checksum = "6678cf63ab3491898c0d021b493c94c9b221d91295294a2a5746eacbe5928322"
471
471
+
dependencies = [
472
472
+
"libc",
473
473
+
"rtoolbox",
474
474
+
"winapi",
475
475
+
]
476
476
+
477
477
+
[[package]]
478
478
+
name = "rtoolbox"
479
479
+
version = "0.0.1"
480
480
+
source = "registry+https://github.com/rust-lang/crates.io-index"
481
481
+
checksum = "034e22c514f5c0cb8a10ff341b9b048b5ceb21591f31c8f44c43b960f9b3524a"
482
482
+
dependencies = [
483
483
+
"libc",
484
484
+
"winapi",
485
485
+
]
486
486
+
487
487
+
[[package]]
488
488
+
name = "rustix"
489
489
+
version = "0.36.11"
490
490
+
source = "registry+https://github.com/rust-lang/crates.io-index"
491
491
+
checksum = "db4165c9963ab29e422d6c26fbc1d37f15bace6b2810221f9d925023480fcf0e"
492
492
+
dependencies = [
493
493
+
"bitflags",
494
494
+
"errno",
495
495
+
"io-lifetimes",
496
496
+
"libc",
497
497
+
"linux-raw-sys",
498
498
+
"windows-sys",
499
499
+
]
500
500
+
501
501
+
[[package]]
502
502
+
name = "same-file"
503
503
+
version = "1.0.6"
504
504
+
source = "registry+https://github.com/rust-lang/crates.io-index"
505
505
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
506
506
+
dependencies = [
507
507
+
"winapi-util",
508
508
+
]
509
509
+
510
510
+
[[package]]
511
511
+
name = "sha2"
512
512
+
version = "0.10.6"
513
513
+
source = "registry+https://github.com/rust-lang/crates.io-index"
514
514
+
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
515
515
+
dependencies = [
516
516
+
"cfg-if",
517
517
+
"cpufeatures",
518
518
+
"digest",
519
519
+
]
520
520
+
521
521
+
[[package]]
522
522
+
name = "strsim"
523
523
+
version = "0.10.0"
524
524
+
source = "registry+https://github.com/rust-lang/crates.io-index"
525
525
+
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
526
526
+
527
527
+
[[package]]
528
528
+
name = "subtle"
529
529
+
version = "2.4.1"
530
530
+
source = "registry+https://github.com/rust-lang/crates.io-index"
531
531
+
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
532
532
+
533
533
+
[[package]]
534
534
+
name = "syn"
535
535
+
version = "1.0.109"
536
536
+
source = "registry+https://github.com/rust-lang/crates.io-index"
537
537
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
538
538
+
dependencies = [
539
539
+
"proc-macro2",
540
540
+
"quote",
541
541
+
"unicode-ident",
542
542
+
]
543
543
+
544
544
+
[[package]]
545
545
+
name = "syn"
546
546
+
version = "2.0.10"
547
547
+
source = "registry+https://github.com/rust-lang/crates.io-index"
548
548
+
checksum = "5aad1363ed6d37b84299588d62d3a7d95b5a5c2d9aad5c85609fda12afaa1f40"
549
549
+
dependencies = [
550
550
+
"proc-macro2",
551
551
+
"quote",
552
552
+
"unicode-ident",
553
553
+
]
554
554
+
555
555
+
[[package]]
556
556
+
name = "tabled"
557
557
+
version = "0.10.0"
558
558
+
source = "registry+https://github.com/rust-lang/crates.io-index"
559
559
+
checksum = "56c3ee73732ffceaea7b8f6b719ce3bb17f253fa27461ffeaf568ebd0cdb4b85"
560
560
+
dependencies = [
561
561
+
"ansi-str",
562
562
+
"papergrid",
563
563
+
"tabled_derive",
564
564
+
"unicode-width",
565
565
+
]
566
566
+
567
567
+
[[package]]
568
568
+
name = "tabled_derive"
569
569
+
version = "0.5.0"
570
570
+
source = "registry+https://github.com/rust-lang/crates.io-index"
571
571
+
checksum = "beca1b4eaceb4f2755df858b88d9b9315b7ccfd1ffd0d7a48a52602301f01a57"
572
572
+
dependencies = [
573
573
+
"heck",
574
574
+
"proc-macro-error",
575
575
+
"proc-macro2",
576
576
+
"quote",
577
577
+
"syn 1.0.109",
578
578
+
]
579
579
+
580
580
+
[[package]]
581
581
+
name = "termcolor"
582
582
+
version = "1.2.0"
583
583
+
source = "registry+https://github.com/rust-lang/crates.io-index"
584
584
+
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
585
585
+
dependencies = [
586
586
+
"winapi-util",
587
587
+
]
588
588
+
589
589
+
[[package]]
590
590
+
name = "thiserror"
591
591
+
version = "1.0.40"
592
592
+
source = "registry+https://github.com/rust-lang/crates.io-index"
593
593
+
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
594
594
+
dependencies = [
595
595
+
"thiserror-impl",
596
596
+
]
597
597
+
598
598
+
[[package]]
599
599
+
name = "thiserror-impl"
600
600
+
version = "1.0.40"
601
601
+
source = "registry+https://github.com/rust-lang/crates.io-index"
602
602
+
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
603
603
+
dependencies = [
604
604
+
"proc-macro2",
605
605
+
"quote",
606
606
+
"syn 2.0.10",
607
607
+
]
608
608
+
609
609
+
[[package]]
610
610
+
name = "tuckr"
611
611
+
version = "0.8.0"
612
612
+
dependencies = [
613
613
+
"chacha20poly1305",
614
614
+
"clap",
615
615
+
"dirs",
616
616
+
"owo-colors",
617
617
+
"rand",
618
618
+
"rpassword",
619
619
+
"sha2",
620
620
+
"tabled",
621
621
+
"walkdir",
622
622
+
"zeroize",
623
623
+
]
624
624
+
625
625
+
[[package]]
626
626
+
name = "typenum"
627
627
+
version = "1.16.0"
628
628
+
source = "registry+https://github.com/rust-lang/crates.io-index"
629
629
+
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
630
630
+
631
631
+
[[package]]
632
632
+
name = "unicode-ident"
633
633
+
version = "1.0.8"
634
634
+
source = "registry+https://github.com/rust-lang/crates.io-index"
635
635
+
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
636
636
+
637
637
+
[[package]]
638
638
+
name = "unicode-width"
639
639
+
version = "0.1.10"
640
640
+
source = "registry+https://github.com/rust-lang/crates.io-index"
641
641
+
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
642
642
+
643
643
+
[[package]]
644
644
+
name = "universal-hash"
645
645
+
version = "0.5.0"
646
646
+
source = "registry+https://github.com/rust-lang/crates.io-index"
647
647
+
checksum = "7d3160b73c9a19f7e2939a2fdad446c57c1bbbbf4d919d3213ff1267a580d8b5"
648
648
+
dependencies = [
649
649
+
"crypto-common",
650
650
+
"subtle",
651
651
+
]
652
652
+
653
653
+
[[package]]
654
654
+
name = "utf8parse"
655
655
+
version = "0.2.1"
656
656
+
source = "registry+https://github.com/rust-lang/crates.io-index"
657
657
+
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
658
658
+
659
659
+
[[package]]
660
660
+
name = "version_check"
661
661
+
version = "0.9.4"
662
662
+
source = "registry+https://github.com/rust-lang/crates.io-index"
663
663
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
664
664
+
665
665
+
[[package]]
666
666
+
name = "vte"
667
667
+
version = "0.10.1"
668
668
+
source = "registry+https://github.com/rust-lang/crates.io-index"
669
669
+
checksum = "6cbce692ab4ca2f1f3047fcf732430249c0e971bfdd2b234cf2c47ad93af5983"
670
670
+
dependencies = [
671
671
+
"arrayvec",
672
672
+
"utf8parse",
673
673
+
"vte_generate_state_changes",
674
674
+
]
675
675
+
676
676
+
[[package]]
677
677
+
name = "vte_generate_state_changes"
678
678
+
version = "0.1.1"
679
679
+
source = "registry+https://github.com/rust-lang/crates.io-index"
680
680
+
checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff"
681
681
+
dependencies = [
682
682
+
"proc-macro2",
683
683
+
"quote",
684
684
+
]
685
685
+
686
686
+
[[package]]
687
687
+
name = "walkdir"
688
688
+
version = "2.3.3"
689
689
+
source = "registry+https://github.com/rust-lang/crates.io-index"
690
690
+
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
691
691
+
dependencies = [
692
692
+
"same-file",
693
693
+
"winapi-util",
694
694
+
]
695
695
+
696
696
+
[[package]]
697
697
+
name = "wasi"
698
698
+
version = "0.11.0+wasi-snapshot-preview1"
699
699
+
source = "registry+https://github.com/rust-lang/crates.io-index"
700
700
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
701
701
+
702
702
+
[[package]]
703
703
+
name = "winapi"
704
704
+
version = "0.3.9"
705
705
+
source = "registry+https://github.com/rust-lang/crates.io-index"
706
706
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
707
707
+
dependencies = [
708
708
+
"winapi-i686-pc-windows-gnu",
709
709
+
"winapi-x86_64-pc-windows-gnu",
710
710
+
]
711
711
+
712
712
+
[[package]]
713
713
+
name = "winapi-i686-pc-windows-gnu"
714
714
+
version = "0.4.0"
715
715
+
source = "registry+https://github.com/rust-lang/crates.io-index"
716
716
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
717
717
+
718
718
+
[[package]]
719
719
+
name = "winapi-util"
720
720
+
version = "0.1.5"
721
721
+
source = "registry+https://github.com/rust-lang/crates.io-index"
722
722
+
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
723
723
+
dependencies = [
724
724
+
"winapi",
725
725
+
]
726
726
+
727
727
+
[[package]]
728
728
+
name = "winapi-x86_64-pc-windows-gnu"
729
729
+
version = "0.4.0"
730
730
+
source = "registry+https://github.com/rust-lang/crates.io-index"
731
731
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
732
732
+
733
733
+
[[package]]
734
734
+
name = "windows-sys"
735
735
+
version = "0.45.0"
736
736
+
source = "registry+https://github.com/rust-lang/crates.io-index"
737
737
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
738
738
+
dependencies = [
739
739
+
"windows-targets",
740
740
+
]
741
741
+
742
742
+
[[package]]
743
743
+
name = "windows-targets"
744
744
+
version = "0.42.2"
745
745
+
source = "registry+https://github.com/rust-lang/crates.io-index"
746
746
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
747
747
+
dependencies = [
748
748
+
"windows_aarch64_gnullvm",
749
749
+
"windows_aarch64_msvc",
750
750
+
"windows_i686_gnu",
751
751
+
"windows_i686_msvc",
752
752
+
"windows_x86_64_gnu",
753
753
+
"windows_x86_64_gnullvm",
754
754
+
"windows_x86_64_msvc",
755
755
+
]
756
756
+
757
757
+
[[package]]
758
758
+
name = "windows_aarch64_gnullvm"
759
759
+
version = "0.42.2"
760
760
+
source = "registry+https://github.com/rust-lang/crates.io-index"
761
761
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
762
762
+
763
763
+
[[package]]
764
764
+
name = "windows_aarch64_msvc"
765
765
+
version = "0.42.2"
766
766
+
source = "registry+https://github.com/rust-lang/crates.io-index"
767
767
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
768
768
+
769
769
+
[[package]]
770
770
+
name = "windows_i686_gnu"
771
771
+
version = "0.42.2"
772
772
+
source = "registry+https://github.com/rust-lang/crates.io-index"
773
773
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
774
774
+
775
775
+
[[package]]
776
776
+
name = "windows_i686_msvc"
777
777
+
version = "0.42.2"
778
778
+
source = "registry+https://github.com/rust-lang/crates.io-index"
779
779
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
780
780
+
781
781
+
[[package]]
782
782
+
name = "windows_x86_64_gnu"
783
783
+
version = "0.42.2"
784
784
+
source = "registry+https://github.com/rust-lang/crates.io-index"
785
785
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
786
786
+
787
787
+
[[package]]
788
788
+
name = "windows_x86_64_gnullvm"
789
789
+
version = "0.42.2"
790
790
+
source = "registry+https://github.com/rust-lang/crates.io-index"
791
791
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
792
792
+
793
793
+
[[package]]
794
794
+
name = "windows_x86_64_msvc"
795
795
+
version = "0.42.2"
796
796
+
source = "registry+https://github.com/rust-lang/crates.io-index"
797
797
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
798
798
+
799
799
+
[[package]]
800
800
+
name = "zeroize"
801
801
+
version = "1.6.0"
802
802
+
source = "registry+https://github.com/rust-lang/crates.io-index"
803
803
+
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
+5
-8
pkgs/applications/misc/tuckr/default.nix
···
2
2
3
3
rustPlatform.buildRustPackage rec {
4
4
pname = "tuckr";
5
5
-
version = "0.7.1";
5
5
+
version = "0.8.0";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "RaphGL";
9
9
repo = "Tuckr";
10
10
rev = version;
11
11
-
sha256 = "sha256-47qnBGCiPWJGF4QcqjzmDIZWlCO3xE3QyIF6nSPGWAc=";
11
11
+
sha256 = "sha256-S4mHNCyK7WGYRBckxQkwA3+eu7QhUyKkOZ/KqhMJf+s=";
12
12
};
13
13
14
14
-
cargoHash = "sha256-IX7ZX4fKBK0wS7nlSdf/bVGzXl2GU7qwwmtPMoOe/m8=";
15
15
-
16
16
-
# Cargo.lock is outdated
17
17
-
preConfigure = ''
18
18
-
cargo update --offline
19
19
-
'';
14
14
+
cargoLock = {
15
15
+
lockFile = ./Cargo.lock;
16
16
+
};
20
17
21
18
doCheck = false; # test result: FAILED. 5 passed; 3 failed;
22
19