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 | 190735a | 2025-04-15 14:57:50 +0200 | [diff] [blame] | 7 | version = "0.2.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 | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 38 | version = "1.0.94" |
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 | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 40 | checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84" |
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 | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 56 | version = "2.0.100" |
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 | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 58 | checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0" |
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 | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 93 | version = "1.16.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 | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 95 | checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9" |
Balint Dobszay | b2ff2bc | 2024-12-19 18:59:38 +0100 | [diff] [blame] | 96 | |
| 97 | [[package]] |
| 98 | name = "zerocopy" |
Balint Dobszay | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 99 | version = "0.8.24" |
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 | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 101 | checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879" |
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 | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 108 | version = "0.8.24" |
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 | 6c4f324 | 2025-04-15 14:57:12 +0200 | [diff] [blame] | 110 | checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be" |
Balint Dobszay | b2ff2bc | 2024-12-19 18:59:38 +0100 | [diff] [blame] | 111 | dependencies = [ |
| 112 | "proc-macro2", |
| 113 | "quote", |
| 114 | "syn", |
| 115 | ] |