/ friend_tool / 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 = "aead"
  7  version = "0.5.2"
  8  source = "registry+https://github.com/rust-lang/crates.io-index"
  9  checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
 10  dependencies = [
 11   "crypto-common",
 12   "generic-array",
 13  ]
 14  
 15  [[package]]
 16  name = "aes"
 17  version = "0.8.4"
 18  source = "registry+https://github.com/rust-lang/crates.io-index"
 19  checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
 20  dependencies = [
 21   "cfg-if",
 22   "cipher",
 23   "cpufeatures",
 24  ]
 25  
 26  [[package]]
 27  name = "aes-gcm"
 28  version = "0.10.3"
 29  source = "registry+https://github.com/rust-lang/crates.io-index"
 30  checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
 31  dependencies = [
 32   "aead",
 33   "aes",
 34   "cipher",
 35   "ctr",
 36   "ghash",
 37   "subtle",
 38  ]
 39  
 40  [[package]]
 41  name = "block-buffer"
 42  version = "0.10.4"
 43  source = "registry+https://github.com/rust-lang/crates.io-index"
 44  checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
 45  dependencies = [
 46   "generic-array",
 47  ]
 48  
 49  [[package]]
 50  name = "cc"
 51  version = "1.2.51"
 52  source = "registry+https://github.com/rust-lang/crates.io-index"
 53  checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
 54  dependencies = [
 55   "find-msvc-tools",
 56   "jobserver",
 57   "libc",
 58   "shlex",
 59  ]
 60  
 61  [[package]]
 62  name = "cfg-if"
 63  version = "1.0.4"
 64  source = "registry+https://github.com/rust-lang/crates.io-index"
 65  checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
 66  
 67  [[package]]
 68  name = "cipher"
 69  version = "0.4.4"
 70  source = "registry+https://github.com/rust-lang/crates.io-index"
 71  checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
 72  dependencies = [
 73   "crypto-common",
 74   "inout",
 75  ]
 76  
 77  [[package]]
 78  name = "cpufeatures"
 79  version = "0.2.17"
 80  source = "registry+https://github.com/rust-lang/crates.io-index"
 81  checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
 82  dependencies = [
 83   "libc",
 84  ]
 85  
 86  [[package]]
 87  name = "crypto-common"
 88  version = "0.1.7"
 89  source = "registry+https://github.com/rust-lang/crates.io-index"
 90  checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
 91  dependencies = [
 92   "generic-array",
 93   "rand_core",
 94   "typenum",
 95  ]
 96  
 97  [[package]]
 98  name = "ctr"
 99  version = "0.9.2"
100  source = "registry+https://github.com/rust-lang/crates.io-index"
101  checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
102  dependencies = [
103   "cipher",
104  ]
105  
106  [[package]]
107  name = "digest"
108  version = "0.10.7"
109  source = "registry+https://github.com/rust-lang/crates.io-index"
110  checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
111  dependencies = [
112   "block-buffer",
113   "crypto-common",
114  ]
115  
116  [[package]]
117  name = "dunce"
118  version = "1.0.5"
119  source = "registry+https://github.com/rust-lang/crates.io-index"
120  checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
121  
122  [[package]]
123  name = "find-msvc-tools"
124  version = "0.1.6"
125  source = "registry+https://github.com/rust-lang/crates.io-index"
126  checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
127  
128  [[package]]
129  name = "generic-array"
130  version = "0.14.7"
131  source = "registry+https://github.com/rust-lang/crates.io-index"
132  checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
133  dependencies = [
134   "typenum",
135   "version_check",
136  ]
137  
138  [[package]]
139  name = "getrandom"
140  version = "0.2.16"
141  source = "registry+https://github.com/rust-lang/crates.io-index"
142  checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
143  dependencies = [
144   "cfg-if",
145   "libc",
146   "wasi",
147  ]
148  
149  [[package]]
150  name = "getrandom"
151  version = "0.3.4"
152  source = "registry+https://github.com/rust-lang/crates.io-index"
153  checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
154  dependencies = [
155   "cfg-if",
156   "libc",
157   "r-efi",
158   "wasip2",
159  ]
160  
161  [[package]]
162  name = "ghash"
163  version = "0.5.1"
164  source = "registry+https://github.com/rust-lang/crates.io-index"
165  checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
166  dependencies = [
167   "opaque-debug",
168   "polyval",
169  ]
170  
171  [[package]]
172  name = "ghostline_friend_tool"
173  version = "0.1.0"
174  dependencies = [
175   "aes-gcm",
176   "hex",
177   "pqcrypto-kyber",
178   "pqcrypto-traits",
179   "sha3",
180   "zeroize",
181  ]
182  
183  [[package]]
184  name = "glob"
185  version = "0.3.3"
186  source = "registry+https://github.com/rust-lang/crates.io-index"
187  checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
188  
189  [[package]]
190  name = "hex"
191  version = "0.4.3"
192  source = "registry+https://github.com/rust-lang/crates.io-index"
193  checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
194  
195  [[package]]
196  name = "inout"
197  version = "0.1.4"
198  source = "registry+https://github.com/rust-lang/crates.io-index"
199  checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
200  dependencies = [
201   "generic-array",
202  ]
203  
204  [[package]]
205  name = "jobserver"
206  version = "0.1.34"
207  source = "registry+https://github.com/rust-lang/crates.io-index"
208  checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
209  dependencies = [
210   "getrandom 0.3.4",
211   "libc",
212  ]
213  
214  [[package]]
215  name = "keccak"
216  version = "0.1.5"
217  source = "registry+https://github.com/rust-lang/crates.io-index"
218  checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
219  dependencies = [
220   "cpufeatures",
221  ]
222  
223  [[package]]
224  name = "libc"
225  version = "0.2.180"
226  source = "registry+https://github.com/rust-lang/crates.io-index"
227  checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
228  
229  [[package]]
230  name = "opaque-debug"
231  version = "0.3.1"
232  source = "registry+https://github.com/rust-lang/crates.io-index"
233  checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
234  
235  [[package]]
236  name = "polyval"
237  version = "0.6.2"
238  source = "registry+https://github.com/rust-lang/crates.io-index"
239  checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
240  dependencies = [
241   "cfg-if",
242   "cpufeatures",
243   "opaque-debug",
244   "universal-hash",
245  ]
246  
247  [[package]]
248  name = "pqcrypto-internals"
249  version = "0.2.11"
250  source = "registry+https://github.com/rust-lang/crates.io-index"
251  checksum = "b4a326caf27cbf2ac291ca7fd56300497ba9e76a8cc6a7d95b7a18b57f22b61d"
252  dependencies = [
253   "cc",
254   "dunce",
255   "getrandom 0.3.4",
256   "libc",
257  ]
258  
259  [[package]]
260  name = "pqcrypto-kyber"
261  version = "0.7.9"
262  source = "registry+https://github.com/rust-lang/crates.io-index"
263  checksum = "c32fe9d5c9913b1aed1ba92b3449eb2d7cf7ca29741b11455dfa34c711b95776"
264  dependencies = [
265   "cc",
266   "glob",
267   "libc",
268   "pqcrypto-internals",
269   "pqcrypto-traits",
270  ]
271  
272  [[package]]
273  name = "pqcrypto-traits"
274  version = "0.3.5"
275  source = "registry+https://github.com/rust-lang/crates.io-index"
276  checksum = "94e851c7654eed9e68d7d27164c454961a616cf8c203d500607ef22c737b51bb"
277  
278  [[package]]
279  name = "r-efi"
280  version = "5.3.0"
281  source = "registry+https://github.com/rust-lang/crates.io-index"
282  checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
283  
284  [[package]]
285  name = "rand_core"
286  version = "0.6.4"
287  source = "registry+https://github.com/rust-lang/crates.io-index"
288  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
289  dependencies = [
290   "getrandom 0.2.16",
291  ]
292  
293  [[package]]
294  name = "sha3"
295  version = "0.10.8"
296  source = "registry+https://github.com/rust-lang/crates.io-index"
297  checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
298  dependencies = [
299   "digest",
300   "keccak",
301  ]
302  
303  [[package]]
304  name = "shlex"
305  version = "1.3.0"
306  source = "registry+https://github.com/rust-lang/crates.io-index"
307  checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
308  
309  [[package]]
310  name = "subtle"
311  version = "2.6.1"
312  source = "registry+https://github.com/rust-lang/crates.io-index"
313  checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
314  
315  [[package]]
316  name = "typenum"
317  version = "1.19.0"
318  source = "registry+https://github.com/rust-lang/crates.io-index"
319  checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
320  
321  [[package]]
322  name = "universal-hash"
323  version = "0.5.1"
324  source = "registry+https://github.com/rust-lang/crates.io-index"
325  checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
326  dependencies = [
327   "crypto-common",
328   "subtle",
329  ]
330  
331  [[package]]
332  name = "version_check"
333  version = "0.9.5"
334  source = "registry+https://github.com/rust-lang/crates.io-index"
335  checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
336  
337  [[package]]
338  name = "wasi"
339  version = "0.11.1+wasi-snapshot-preview1"
340  source = "registry+https://github.com/rust-lang/crates.io-index"
341  checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
342  
343  [[package]]
344  name = "wasip2"
345  version = "1.0.1+wasi-0.2.4"
346  source = "registry+https://github.com/rust-lang/crates.io-index"
347  checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
348  dependencies = [
349   "wit-bindgen",
350  ]
351  
352  [[package]]
353  name = "wit-bindgen"
354  version = "0.46.0"
355  source = "registry+https://github.com/rust-lang/crates.io-index"
356  checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
357  
358  [[package]]
359  name = "zeroize"
360  version = "1.8.2"
361  source = "registry+https://github.com/rust-lang/crates.io-index"
362  checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"