Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 1 | # This file is automatically @generated by Cargo. |
| 2 | # It is not intended for manual editing. |
| 3 | version = 3 |
| 4 | |
| 5 | [[package]] |
| 6 | name = "arm-ffa" |
Balint Dobszay | 9f0ef69 | 2025-06-16 17:42:29 +0200 | [diff] [blame] | 7 | version = "0.3.0" |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 8 | dependencies = [ |
| 9 | "num_enum", |
Andrew Walbran | 44029a0 | 2024-11-25 15:34:31 +0000 | [diff] [blame] | 10 | "thiserror", |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 11 | "uuid", |
Balint Dobszay | b2ff2bc | 2024-12-19 18:59:38 +0100 | [diff] [blame] | 12 | "zerocopy", |
| 13 | "zerocopy-derive", |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 14 | ] |
| 15 | |
| 16 | [[package]] |
| 17 | name = "num_enum" |
| 18 | version = "0.7.3" |
| 19 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 20 | checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" |
| 21 | dependencies = [ |
| 22 | "num_enum_derive", |
| 23 | ] |
| 24 | |
| 25 | [[package]] |
| 26 | name = "num_enum_derive" |
| 27 | version = "0.7.3" |
| 28 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 29 | checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" |
| 30 | dependencies = [ |
| 31 | "proc-macro2", |
| 32 | "quote", |
| 33 | "syn", |
| 34 | ] |
| 35 | |
| 36 | [[package]] |
| 37 | name = "proc-macro2" |
Balint Dobszay | 54de43f | 2025-06-16 17:36:52 +0200 | [diff] [blame] | 38 | version = "1.0.95" |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 39 | source = "registry+https://github.com/rust-lang/crates.io-index" |
Balint Dobszay | 54de43f | 2025-06-16 17:36:52 +0200 | [diff] [blame] | 40 | checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 41 | dependencies = [ |
| 42 | "unicode-ident", |
| 43 | ] |
| 44 | |
| 45 | [[package]] |
| 46 | name = "quote" |
Balint Dobszay | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 47 | version = "1.0.40" |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 48 | source = "registry+https://github.com/rust-lang/crates.io-index" |
Balint Dobszay | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 49 | checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 50 | dependencies = [ |
| 51 | "proc-macro2", |
| 52 | ] |
| 53 | |
| 54 | [[package]] |
| 55 | name = "syn" |
Balint Dobszay | 54de43f | 2025-06-16 17:36:52 +0200 | [diff] [blame] | 56 | version = "2.0.103" |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 57 | source = "registry+https://github.com/rust-lang/crates.io-index" |
Balint Dobszay | 54de43f | 2025-06-16 17:36:52 +0200 | [diff] [blame] | 58 | checksum = "e4307e30089d6fd6aff212f2da3a1f9e32f3223b1f010fb09b7c95f90f3ca1e8" |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 59 | dependencies = [ |
| 60 | "proc-macro2", |
| 61 | "quote", |
| 62 | "unicode-ident", |
| 63 | ] |
| 64 | |
| 65 | [[package]] |
Andrew Walbran | 44029a0 | 2024-11-25 15:34:31 +0000 | [diff] [blame] | 66 | name = "thiserror" |
Balint Dobszay | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 67 | version = "2.0.12" |
Andrew Walbran | 44029a0 | 2024-11-25 15:34:31 +0000 | [diff] [blame] | 68 | source = "registry+https://github.com/rust-lang/crates.io-index" |
Balint Dobszay | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 69 | checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" |
Andrew Walbran | 44029a0 | 2024-11-25 15:34:31 +0000 | [diff] [blame] | 70 | dependencies = [ |
| 71 | "thiserror-impl", |
| 72 | ] |
| 73 | |
| 74 | [[package]] |
| 75 | name = "thiserror-impl" |
Balint Dobszay | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 76 | version = "2.0.12" |
Andrew Walbran | 44029a0 | 2024-11-25 15:34:31 +0000 | [diff] [blame] | 77 | source = "registry+https://github.com/rust-lang/crates.io-index" |
Balint Dobszay | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 78 | checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" |
Andrew Walbran | 44029a0 | 2024-11-25 15:34:31 +0000 | [diff] [blame] | 79 | dependencies = [ |
| 80 | "proc-macro2", |
| 81 | "quote", |
| 82 | "syn", |
| 83 | ] |
| 84 | |
| 85 | [[package]] |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 86 | name = "unicode-ident" |
Balint Dobszay | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 87 | version = "1.0.18" |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 88 | source = "registry+https://github.com/rust-lang/crates.io-index" |
Balint Dobszay | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 89 | checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 90 | |
| 91 | [[package]] |
| 92 | name = "uuid" |
Balint Dobszay | 54de43f | 2025-06-16 17:36:52 +0200 | [diff] [blame] | 93 | version = "1.17.0" |
Balint Dobszay | 5bf492f | 2024-07-29 17:21:32 +0200 | [diff] [blame] | 94 | source = "registry+https://github.com/rust-lang/crates.io-index" |
Balint Dobszay | 54de43f | 2025-06-16 17:36:52 +0200 | [diff] [blame] | 95 | checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" |
Balint Dobszay | b2ff2bc | 2024-12-19 18:59:38 +0100 | [diff] [blame] | 96 | |
| 97 | [[package]] |
| 98 | name = "zerocopy" |
Balint Dobszay | 54de43f | 2025-06-16 17:36:52 +0200 | [diff] [blame] | 99 | version = "0.8.25" |
Balint Dobszay | b2ff2bc | 2024-12-19 18:59:38 +0100 | [diff] [blame] | 100 | source = "registry+https://github.com/rust-lang/crates.io-index" |
Balint Dobszay | 54de43f | 2025-06-16 17:36:52 +0200 | [diff] [blame] | 101 | checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" |
Balint Dobszay | b2ff2bc | 2024-12-19 18:59:38 +0100 | [diff] [blame] | 102 | dependencies = [ |
| 103 | "zerocopy-derive", |
| 104 | ] |
| 105 | |
| 106 | [[package]] |
| 107 | name = "zerocopy-derive" |
Balint Dobszay | 54de43f | 2025-06-16 17:36:52 +0200 | [diff] [blame] | 108 | version = "0.8.25" |
Balint Dobszay | b2ff2bc | 2024-12-19 18:59:38 +0100 | [diff] [blame] | 109 | source = "registry+https://github.com/rust-lang/crates.io-index" |
Balint Dobszay | 54de43f | 2025-06-16 17:36:52 +0200 | [diff] [blame] | 110 | checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" |
Balint Dobszay | b2ff2bc | 2024-12-19 18:59:38 +0100 | [diff] [blame] | 111 | dependencies = [ |
| 112 | "proc-macro2", |
| 113 | "quote", |
| 114 | "syn", |
| 115 | ] |