rust/Cargo.lock

463 lines
12 KiB
Plaintext
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "ahash"
2023-02-26 18:11:35 +00:00
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
2023-02-26 18:11:35 +00:00
"cfg-if",
"once_cell",
"version_check",
]
2020-03-19 12:09:21 +01:00
[[package]]
name = "anyhow"
version = "1.0.66"
2020-03-19 12:09:21 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
2020-03-19 12:09:21 +01:00
2019-10-29 19:07:07 +01:00
[[package]]
name = "autocfg"
version = "1.1.0"
2019-10-29 19:07:07 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2019-10-29 19:07:07 +01:00
2018-06-19 19:51:29 +02:00
[[package]]
name = "bitflags"
version = "1.3.2"
2018-06-19 19:51:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2018-06-19 19:51:29 +02:00
[[package]]
name = "bumpalo"
version = "3.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "cranelift-bforest"
2023-02-26 18:11:35 +00:00
version = "0.94.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "862eb053fc21f991db27c73bc51494fe77aadfa09ea257cb43b62a2656fd4cc1"
dependencies = [
2019-10-27 16:55:35 +01:00
"cranelift-entity",
]
2018-06-19 19:51:29 +02:00
[[package]]
2018-07-14 11:59:42 +02:00
name = "cranelift-codegen"
2023-02-26 18:11:35 +00:00
version = "0.94.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "038a74bc85da2f6f9e237c51b7998b47229c0f9da69b4c6b0590cf6621c45d46"
2018-06-19 19:51:29 +02:00
dependencies = [
"bumpalo",
2019-10-27 16:55:35 +01:00
"cranelift-bforest",
"cranelift-codegen-meta",
"cranelift-codegen-shared",
"cranelift-entity",
"cranelift-isle",
2019-10-27 16:55:35 +01:00
"gimli",
2023-02-26 18:11:35 +00:00
"hashbrown 0.13.2",
2019-10-27 16:55:35 +01:00
"log",
"regalloc2",
2019-10-27 16:55:35 +01:00
"smallvec",
"target-lexicon",
2018-06-17 18:05:11 +02:00
]
2018-07-23 11:17:39 +02:00
[[package]]
name = "cranelift-codegen-meta"
2023-02-26 18:11:35 +00:00
version = "0.94.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "c7fb720a7955cf7cc92c58f3896952589062e6f12d8eb35ef4337e708ed2e738"
2018-11-09 18:03:47 +01:00
dependencies = [
2019-10-27 16:55:35 +01:00
"cranelift-codegen-shared",
2018-11-09 18:03:47 +01:00
]
2018-07-23 11:17:39 +02:00
[[package]]
name = "cranelift-codegen-shared"
2023-02-26 18:11:35 +00:00
version = "0.94.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "c0954f9426cf0fa7ad57910ea5822a09c5da590222a767a6c38080a8534a0af8"
2018-06-17 18:05:11 +02:00
[[package]]
2018-07-14 11:59:42 +02:00
name = "cranelift-entity"
2023-02-26 18:11:35 +00:00
version = "0.94.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "68c7096c1a66cfa73899645f0a46a6f5c91641e678eeafb0fc47a19ab34069ca"
2018-07-23 11:17:39 +02:00
2018-06-19 19:51:29 +02:00
[[package]]
2018-07-14 11:59:42 +02:00
name = "cranelift-frontend"
2023-02-26 18:11:35 +00:00
version = "0.94.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "697f2fdaceb228fea413ea91baa7c6b8533fc2e61ac5a08db7acc1b31e673a2a"
2018-06-19 19:51:29 +02:00
dependencies = [
2019-10-27 16:55:35 +01:00
"cranelift-codegen",
"log",
"smallvec",
"target-lexicon",
2018-06-19 19:51:29 +02:00
]
[[package]]
name = "cranelift-isle"
2023-02-26 18:11:35 +00:00
version = "0.94.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "f41037f4863e0c6716dbe60e551d501f4197383cb43d75038c0170159fc8fb5b"
[[package]]
name = "cranelift-jit"
2023-02-26 18:11:35 +00:00
version = "0.94.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "d18592c79c348a6205cb88ba48b6e8e1aa89456c0df72688c7893cc1fb92416a"
dependencies = [
"anyhow",
"cranelift-codegen",
"cranelift-entity",
"cranelift-module",
"cranelift-native",
"libc",
"log",
"region",
"target-lexicon",
"wasmtime-jit-icache-coherence",
"windows-sys",
]
2018-06-17 18:05:11 +02:00
[[package]]
2018-07-14 11:59:42 +02:00
name = "cranelift-module"
2023-02-26 18:11:35 +00:00
version = "0.94.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "5b136bcc7973b219aef04b470a577894ba2893159a811b45144bd13502e48ddc"
2018-06-19 19:51:29 +02:00
dependencies = [
2020-03-19 12:09:21 +01:00
"anyhow",
2019-10-27 16:55:35 +01:00
"cranelift-codegen",
2018-06-19 19:51:29 +02:00
]
[[package]]
2018-07-14 11:59:42 +02:00
name = "cranelift-native"
2023-02-26 18:11:35 +00:00
version = "0.94.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "797c6e5643eb654bb7bf496f1f03518323a89b937b84020b786620f910364a52"
2018-06-17 18:05:11 +02:00
dependencies = [
2019-10-27 16:55:35 +01:00
"cranelift-codegen",
"libc",
2019-10-27 16:55:35 +01:00
"target-lexicon",
2018-06-19 19:51:29 +02:00
]
[[package]]
name = "cranelift-object"
2023-02-26 18:11:35 +00:00
version = "0.94.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "51cd6a413e8fe75c88db83e95e634e2b2f2dbdc37f16a2af8acf30c6e70c03ba"
dependencies = [
2020-06-16 10:38:12 +02:00
"anyhow",
2019-10-27 16:55:35 +01:00
"cranelift-codegen",
"cranelift-module",
"log",
2019-10-27 16:55:35 +01:00
"object",
"target-lexicon",
]
2019-03-27 19:24:42 +01:00
[[package]]
name = "crc32fast"
version = "1.3.2"
2019-03-27 19:24:42 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2019-03-27 19:24:42 +01:00
dependencies = [
"cfg-if",
2019-03-27 19:24:42 +01:00
]
[[package]]
name = "fallible-iterator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
2019-01-17 18:07:27 +01:00
[[package]]
name = "gimli"
2023-02-26 18:11:35 +00:00
version = "0.27.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
2019-01-17 18:07:27 +01:00
dependencies = [
"fallible-iterator",
2019-10-27 16:55:35 +01:00
"indexmap",
"stable_deref_trait",
2019-01-17 18:07:27 +01:00
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2023-02-26 18:11:35 +00:00
[[package]]
name = "hashbrown"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
dependencies = [
"ahash",
]
2018-07-23 11:17:39 +02:00
[[package]]
name = "indexmap"
version = "1.9.2"
2018-07-23 11:17:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
2019-10-29 19:07:07 +01:00
dependencies = [
2019-10-27 16:55:35 +01:00
"autocfg",
2023-02-26 18:11:35 +00:00
"hashbrown 0.12.3",
2019-10-29 19:07:07 +01:00
]
2018-07-23 11:17:39 +02:00
2018-06-19 19:51:29 +02:00
[[package]]
name = "libc"
version = "0.2.138"
2018-06-19 19:51:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8"
2018-06-19 19:51:29 +02:00
[[package]]
name = "libloading"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
dependencies = [
"cfg-if",
2019-10-27 16:55:35 +01:00
"winapi",
]
2018-07-23 11:17:39 +02:00
[[package]]
name = "log"
version = "0.4.17"
2018-07-23 11:17:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2018-07-23 11:17:39 +02:00
dependencies = [
"cfg-if",
2018-07-23 11:17:39 +02:00
]
2018-06-19 19:51:29 +02:00
[[package]]
name = "mach"
2020-06-05 12:40:33 +02:00
version = "0.3.2"
2018-06-19 19:51:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-05 12:40:33 +02:00
checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
2018-06-19 19:51:29 +02:00
dependencies = [
2019-10-27 16:55:35 +01:00
"libc",
2018-06-19 19:51:29 +02:00
]
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2019-11-06 20:48:29 +01:00
[[package]]
name = "object"
2023-02-26 18:11:35 +00:00
version = "0.30.3"
2019-12-08 11:51:18 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
2019-11-06 20:48:29 +01:00
dependencies = [
2019-10-27 16:55:35 +01:00
"crc32fast",
2023-02-26 18:11:35 +00:00
"hashbrown 0.13.2",
2019-10-27 16:55:35 +01:00
"indexmap",
"memchr",
2019-11-06 20:48:29 +01:00
]
[[package]]
name = "once_cell"
version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
2020-04-17 14:32:01 +02:00
[[package]]
name = "regalloc2"
2023-02-26 18:11:35 +00:00
version = "0.6.1"
2020-04-17 14:32:01 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "80535183cae11b149d618fbd3c37e38d7cda589d82d7769e196ca9a9042d7621"
2020-04-17 14:32:01 +02:00
dependencies = [
"fxhash",
2020-04-17 14:32:01 +02:00
"log",
"slice-group-by",
2020-04-25 11:46:04 +02:00
"smallvec",
2020-04-17 14:32:01 +02:00
]
2018-06-19 19:51:29 +02:00
[[package]]
name = "region"
2020-06-05 12:40:33 +02:00
version = "2.2.0"
2018-06-19 19:51:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-05 12:40:33 +02:00
checksum = "877e54ea2adcd70d80e9179344c97f93ef0dffd6b03e1f4529e6e83ab2fa9ae0"
2018-06-19 19:51:29 +02:00
dependencies = [
2019-10-27 16:55:35 +01:00
"bitflags",
"libc",
"mach",
"winapi",
2018-06-19 19:51:29 +02:00
]
2018-06-17 18:05:11 +02:00
[[package]]
2018-07-14 11:59:42 +02:00
name = "rustc_codegen_cranelift"
2018-06-17 18:05:11 +02:00
version = "0.1.0"
dependencies = [
2019-10-27 16:55:35 +01:00
"cranelift-codegen",
"cranelift-frontend",
"cranelift-jit",
2019-10-27 16:55:35 +01:00
"cranelift-module",
"cranelift-native",
2019-10-27 16:55:35 +01:00
"cranelift-object",
"gimli",
"indexmap",
"libloading",
"object",
"once_cell",
"smallvec",
2019-10-27 16:55:35 +01:00
"target-lexicon",
2018-07-23 11:17:39 +02:00
]
[[package]]
name = "slice-group-by"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec"
2019-09-10 20:37:16 +02:00
[[package]]
name = "smallvec"
version = "1.10.0"
2019-09-10 20:37:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
[[package]]
name = "stable_deref_trait"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2019-09-10 20:37:16 +02:00
2019-11-06 20:48:29 +01:00
[[package]]
name = "target-lexicon"
version = "0.12.5"
2019-11-06 20:48:29 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d"
2019-11-06 20:48:29 +01:00
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "wasmtime-jit-icache-coherence"
2023-02-26 18:11:35 +00:00
version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "4c8c01a070f55343f7afd309a9609c12378548b26c3f53c599bc711bb1ce42ee"
dependencies = [
"cfg-if",
"libc",
"windows-sys",
]
2018-06-19 19:51:29 +02:00
[[package]]
name = "winapi"
2020-06-27 11:37:34 +02:00
version = "0.3.9"
2018-06-19 19:51:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-27 11:37:34 +02:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-06-19 19:51:29 +02:00
dependencies = [
2019-10-27 16:55:35 +01:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-06-19 19:51:29 +02:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-10-27 16:55:35 +01:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-06-19 19:51:29 +02:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-10-27 16:55:35 +01:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows-sys"
2023-02-26 18:11:35 +00:00
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-02-26 18:11:35 +00:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
[[package]]
name = "windows_aarch64_msvc"
2023-02-26 18:11:35 +00:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
[[package]]
name = "windows_i686_gnu"
2023-02-26 18:11:35 +00:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
[[package]]
name = "windows_i686_msvc"
2023-02-26 18:11:35 +00:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
[[package]]
name = "windows_x86_64_gnu"
2023-02-26 18:11:35 +00:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
[[package]]
name = "windows_x86_64_gnullvm"
2023-02-26 18:11:35 +00:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
[[package]]
name = "windows_x86_64_msvc"
2023-02-26 18:11:35 +00:00
version = "0.42.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-26 18:11:35 +00:00
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"