holey-bytes/Cargo.lock

142 lines
3 KiB
Plaintext
Raw Normal View History

2023-04-17 12:31:18 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "argh"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7af5ba06967ff7214ce4c7419c7d185be7ecd6cc4965a8f6e1d8ce0398aad219"
dependencies = [
"argh_derive",
"argh_shared",
]
[[package]]
name = "argh_derive"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56df0aeedf6b7a2fc67d06db35b09684c3e8da0c95f8f27685cb17e08413d87a"
dependencies = [
"argh_shared",
"proc-macro2",
"quote",
2024-07-08 05:22:53 +00:00
"syn",
]
[[package]]
name = "argh_shared"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5693f39141bda5760ecc4111ab08da40565d1771038c4a0250f03457ec707531"
dependencies = [
"serde",
]
2023-04-22 22:17:49 +00:00
[[package]]
2023-09-26 21:36:27 +00:00
name = "hbbytecode"
version = "0.1.0"
[[package]]
name = "hbjit"
version = "0.1.0"
2024-05-09 21:43:18 +00:00
[[package]]
name = "hblang"
version = "0.1.0"
dependencies = [
"hbvm",
]
2024-05-09 21:43:18 +00:00
2023-04-17 12:31:18 +00:00
[[package]]
2023-05-09 08:47:21 +00:00
name = "hbvm"
2023-04-17 12:31:18 +00:00
version = "0.1.0"
2023-04-22 21:06:33 +00:00
dependencies = [
"hbbytecode",
]
[[package]]
2023-10-28 01:29:02 +00:00
name = "hbxrt"
version = "0.1.0"
dependencies = [
2023-10-28 01:29:02 +00:00
"hbvm",
2023-11-26 03:13:30 +00:00
"memmap2",
]
[[package]]
name = "libc"
2024-05-15 12:39:36 +00:00
version = "0.2.154"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-15 12:39:36 +00:00
checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
2023-11-26 03:13:30 +00:00
[[package]]
name = "memmap2"
version = "0.9.4"
2023-11-26 03:13:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe751422e4a8caa417e13c3ea66452215d7d63e19e604f4980461212f3ae1322"
2023-11-26 03:13:30 +00:00
dependencies = [
"libc",
]
[[package]]
name = "proc-macro2"
2024-05-15 12:39:36 +00:00
version = "1.0.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-15 12:39:36 +00:00
checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2024-05-15 12:39:36 +00:00
version = "1.0.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-15 12:39:36 +00:00
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
dependencies = [
"proc-macro2",
]
[[package]]
name = "serde"
2024-05-15 12:39:36 +00:00
version = "1.0.202"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-15 12:39:36 +00:00
checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-05-15 12:39:36 +00:00
version = "1.0.202"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-15 12:39:36 +00:00
checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838"
dependencies = [
"proc-macro2",
"quote",
2024-07-08 05:22:53 +00:00
"syn",
]
[[package]]
name = "syn"
2024-05-15 12:39:36 +00:00
version = "2.0.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-15 12:39:36 +00:00
checksum = "bf5be731623ca1a1fb7d8be6f261a3be6d3e2337b8a1f97be944d020c8fcb704"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "unicode-ident"
2023-09-26 21:36:27 +00:00
version = "1.0.12"
2023-07-11 09:08:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-26 21:36:27 +00:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2023-07-11 09:08:20 +00:00
[[package]]
name = "xtask"
version = "0.1.0"
dependencies = [
"argh",
2023-09-26 21:36:27 +00:00
]