1
0
Fork 0
wgpu-rs/Cargo.lock

1886 lines
46 KiB
Text
Raw Normal View History

2020-11-29 18:18:11 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-08-28 22:15:59 +02:00
version = 3
2020-11-30 17:30:26 +01:00
[[package]]
name = "adler"
2021-08-28 22:15:59 +02:00
version = "1.0.2"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-11-30 17:30:26 +01:00
[[package]]
name = "adler32"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
[[package]]
2021-08-28 22:15:59 +02:00
name = "ahash"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e"
[[package]]
2021-08-28 22:15:59 +02:00
name = "approx"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f2a05fd1bd10b2527e20a2cd32d8873d115b8b39fe219ee25f42a8aca6ba278"
dependencies = [
"num-traits",
]
[[package]]
name = "arrayvec"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "be4dc07131ffa69b8072d35f5007352af944213cde02545e2103680baed38fcd"
[[package]]
2021-08-28 22:15:59 +02:00
name = "ash"
2022-06-08 13:00:04 +02:00
version = "0.34.0+1.2.203"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "b0f780da53d0063880d45554306489f09dd8d1bda47688b4a57bc579119356df"
dependencies = [
2022-06-08 13:00:04 +02:00
"libloading",
]
2020-11-29 18:18:11 +01:00
[[package]]
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2021-08-28 22:15:59 +02:00
[[package]]
name = "bit-set"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e11e16035ea35e4e5997b393eacbf6f63983188f7a2ad25bfb13465f5ad59de"
dependencies = [
"bit-vec",
]
[[package]]
name = "bit-vec"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
2022-06-08 13:00:04 +02:00
[[package]]
name = "bit_field"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcb6dd1c2376d2e096796e234a70e17e94cc2d5d54ff8ce42b28cef1d0d359a4"
2020-11-30 17:30:26 +01:00
[[package]]
name = "bitflags"
2021-08-28 22:15:59 +02:00
version = "1.3.2"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-11-30 17:30:26 +01:00
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
2020-11-30 17:30:26 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "bumpalo"
version = "3.7.0"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
2020-11-30 17:30:26 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "bytemuck"
2022-06-09 22:49:49 +02:00
version = "1.9.1"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-09 22:49:49 +02:00
checksum = "cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc"
dependencies = [
"bytemuck_derive",
]
[[package]]
name = "bytemuck_derive"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "562e382481975bc61d11275ac5e62a19abd00b0547d99516a415336f183dcd0e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-11-30 17:30:26 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "calloop"
2022-06-08 13:00:04 +02:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "bf2eec61efe56aa1e813f5126959296933cf0700030e4314786c48779a66ab82"
dependencies = [
"log",
2022-06-08 13:00:04 +02:00
"nix",
]
2020-11-30 17:30:26 +01:00
[[package]]
name = "cc"
2021-08-28 22:15:59 +02:00
version = "1.0.69"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2"
2020-11-30 17:30:26 +01:00
2020-11-29 18:18:11 +01:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2020-11-30 17:30:26 +01:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
2021-08-28 22:15:59 +02:00
name = "cfg_aliases"
version = "0.1.1"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
2020-11-30 17:30:26 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "cgmath"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "1a98d30140e3296250832bbaaff83b27dcd6fa3cc70fb6f1f3e5c9c0023b5317"
dependencies = [
2021-08-28 22:15:59 +02:00
"approx",
"num-traits",
]
[[package]]
name = "cocoa"
2021-08-28 22:15:59 +02:00
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832"
dependencies = [
"bitflags",
"block",
"cocoa-foundation",
"core-foundation 0.9.1",
2021-08-28 22:15:59 +02:00
"core-graphics 0.22.2",
"foreign-types",
"libc",
"objc",
]
[[package]]
name = "cocoa-foundation"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318"
dependencies = [
"bitflags",
"block",
"core-foundation 0.9.1",
"core-graphics-types",
"foreign-types",
"libc",
"objc",
]
2021-08-28 22:15:59 +02:00
[[package]]
name = "codespan-reporting"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
dependencies = [
"termcolor",
"unicode-width",
]
2020-11-30 17:30:26 +01:00
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
2022-06-09 22:49:49 +02:00
[[package]]
name = "console_error_panic_hook"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
dependencies = [
"cfg-if 1.0.0",
"wasm-bindgen",
]
[[package]]
name = "console_log"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501a375961cef1a0d44767200e66e4a559283097e91d0730b1d75dfb2f8a1494"
dependencies = [
"log",
"web-sys",
]
2020-11-30 17:30:26 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "copyless"
version = "0.1.5"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "a2df960f5d869b2dd8532793fde43eb5427cceb126c929747a26823ab0eeb536"
2020-11-30 17:30:26 +01:00
[[package]]
name = "core-foundation"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
dependencies = [
"core-foundation-sys 0.7.0",
"libc",
]
[[package]]
name = "core-foundation"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62"
dependencies = [
"core-foundation-sys 0.8.2",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
[[package]]
name = "core-foundation-sys"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b"
[[package]]
name = "core-graphics"
version = "0.19.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3889374e6ea6ab25dba90bb5d96202f61108058361f6dc72e8b03e6f8bbe923"
dependencies = [
"bitflags",
"core-foundation 0.7.0",
"foreign-types",
"libc",
]
[[package]]
name = "core-graphics"
2021-08-28 22:15:59 +02:00
version = "0.22.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "269f35f69b542b80e736a20a89a05215c0ce80c2c03c514abb2e318b78379d86"
dependencies = [
"bitflags",
"core-foundation 0.9.1",
"core-graphics-types",
"foreign-types",
"libc",
]
[[package]]
name = "core-graphics-types"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b"
dependencies = [
"bitflags",
"core-foundation 0.9.1",
"foreign-types",
"libc",
]
[[package]]
name = "core-video-sys"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34ecad23610ad9757664d644e369246edde1803fcb43ed72876565098a5d3828"
dependencies = [
"cfg-if 0.1.10",
"core-foundation-sys 0.7.0",
"core-graphics 0.19.2",
"libc",
"objc",
]
2020-11-30 17:30:26 +01:00
[[package]]
name = "crc32fast"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "crossbeam-channel"
2021-08-28 22:15:59 +02:00
version = "0.5.1"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"
2020-11-30 17:30:26 +01:00
dependencies = [
"cfg-if 1.0.0",
2021-08-28 22:15:59 +02:00
"crossbeam-utils",
2020-11-29 18:18:11 +01:00
]
2020-11-30 17:30:26 +01:00
[[package]]
name = "crossbeam-deque"
2021-08-28 22:15:59 +02:00
version = "0.8.1"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
2020-11-30 17:30:26 +01:00
dependencies = [
"cfg-if 1.0.0",
2021-08-28 22:15:59 +02:00
"crossbeam-epoch",
"crossbeam-utils",
2020-11-30 17:30:26 +01:00
]
[[package]]
name = "crossbeam-epoch"
2021-08-28 22:15:59 +02:00
version = "0.9.5"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd"
2020-11-30 17:30:26 +01:00
dependencies = [
"cfg-if 1.0.0",
2021-08-28 22:15:59 +02:00
"crossbeam-utils",
2020-11-30 17:30:26 +01:00
"lazy_static",
2021-08-28 22:15:59 +02:00
"memoffset",
2020-11-29 18:18:11 +01:00
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2021-08-28 22:15:59 +02:00
version = "0.8.5"
2020-11-29 18:18:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
2020-11-29 18:18:11 +01:00
dependencies = [
2021-08-28 22:15:59 +02:00
"cfg-if 1.0.0",
2020-11-29 18:18:11 +01:00
"lazy_static",
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "cty"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
2020-11-30 17:30:26 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "d3d12"
version = "0.4.1"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "2daefd788d1e96e0a9d66dee4b828b883509bc3ea9ce30665f04c3246372690c"
2020-11-30 17:30:26 +01:00
dependencies = [
2021-08-28 22:15:59 +02:00
"bitflags",
2022-06-08 13:00:04 +02:00
"libloading",
2021-08-28 22:15:59 +02:00
"winapi",
2020-11-30 17:30:26 +01:00
]
[[package]]
name = "darling"
2022-06-08 13:00:04 +02:00
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
2022-06-08 13:00:04 +02:00
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
dependencies = [
"fnv",
"ident_case",
2021-08-28 22:15:59 +02:00
"proc-macro2",
"quote",
"strsim",
"syn",
]
[[package]]
name = "darling_macro"
2022-06-08 13:00:04 +02:00
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
dependencies = [
"darling_core",
2021-08-28 22:15:59 +02:00
"quote",
"syn",
]
2020-11-30 17:30:26 +01:00
[[package]]
name = "deflate"
2022-06-08 13:00:04 +02:00
version = "1.0.0"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f"
2020-11-30 17:30:26 +01:00
dependencies = [
"adler32",
]
[[package]]
name = "derivative"
2021-08-28 22:15:59 +02:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
dependencies = [
2021-08-28 22:15:59 +02:00
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "dispatch"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
2021-08-28 22:15:59 +02:00
[[package]]
name = "dlib"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794"
dependencies = [
2022-06-08 13:00:04 +02:00
"libloading",
]
[[package]]
name = "downcast-rs"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
2020-11-30 17:30:26 +01:00
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
2020-12-04 21:44:51 +01:00
[[package]]
name = "engine_core"
version = "0.0.1"
dependencies = [
2022-06-09 22:49:49 +02:00
"bytemuck",
2021-08-28 22:15:59 +02:00
"cgmath",
2022-06-09 22:49:49 +02:00
"console_error_panic_hook",
"console_log",
2020-12-04 21:44:51 +01:00
"image",
2022-06-08 13:00:04 +02:00
"log",
2022-06-09 22:49:49 +02:00
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2021-08-28 22:15:59 +02:00
"wgpu",
"winit",
2020-12-04 21:44:51 +01:00
]
[[package]]
2022-06-08 13:00:04 +02:00
name = "exr"
version = "1.4.2"
2021-08-28 22:15:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "14cc0e06fb5f67e5d6beadf3a382fec9baca1aa751c6d5368fdeee7e5932c215"
dependencies = [
"bit_field",
"deflate",
"flume",
"half",
"inflate",
"lebe",
"smallvec",
"threadpool",
]
[[package]]
name = "flate2"
version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
dependencies = [
"crc32fast",
"miniz_oxide",
]
[[package]]
name = "flume"
version = "0.10.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "843c03199d0c0ca54bc1ea90ac0d507274c28abcc4f691ae8b4eaa375087c76a"
dependencies = [
"futures-core",
"futures-sink",
"nanorand",
"pin-project",
"spin",
]
2020-12-04 21:44:51 +01:00
2020-11-29 18:18:11 +01:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2022-06-08 13:00:04 +02:00
[[package]]
name = "futures-core"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
[[package]]
name = "futures-sink"
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
[[package]]
2021-08-28 22:15:59 +02:00
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "getrandom"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad"
dependencies = [
"cfg-if 1.0.0",
"js-sys",
"libc",
"wasi 0.10.2+wasi-snapshot-preview1",
"wasm-bindgen",
]
2021-08-28 22:15:59 +02:00
[[package]]
name = "gif"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a668f699973d0f573d15749b7002a9ac9e1f9c6b220e7b165601334c173d8de"
dependencies = [
"color_quant",
"weezl",
]
[[package]]
name = "glow"
2022-06-08 13:00:04 +02:00
version = "0.11.2"
2021-08-28 22:15:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "d8bd5877156a19b8ac83a29b2306fe20537429d318f3ff0a1a2119f8d9c61919"
2021-08-28 22:15:59 +02:00
dependencies = [
"js-sys",
"slotmap",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "gpu-alloc"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "c481459c44304a1dfed23bd650bb3912e12c9f77d7871f86d7ed7c9730a52e79"
dependencies = [
"bitflags",
2021-08-28 22:15:59 +02:00
"gpu-alloc-types",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "gpu-alloc-types"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "54804d0d6bc9d7f26db4eaec1ad10def69b599315f487d32c334a80d1efe67a5"
dependencies = [
"bitflags",
]
2020-11-30 17:30:26 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "gpu-descriptor"
version = "0.2.1"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "d7a237f0419ab10d17006d55c62ac4f689a6bf52c75d3f38b8361d249e8d4b0b"
2020-11-30 17:30:26 +01:00
dependencies = [
2021-08-28 22:15:59 +02:00
"bitflags",
"gpu-descriptor-types",
"hashbrown 0.9.1",
]
[[package]]
name = "gpu-descriptor-types"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "363e3677e55ad168fef68cf9de3a4a310b53124c5e784c53a1d70e92d23f2126"
dependencies = [
"bitflags",
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "half"
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
2021-08-28 22:15:59 +02:00
[[package]]
name = "hashbrown"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
dependencies = [
"ahash",
2020-11-30 17:30:26 +01:00
]
2020-11-29 18:18:11 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "hashbrown"
version = "0.11.2"
2020-11-29 18:18:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2020-11-29 18:18:11 +01:00
2020-11-30 17:30:26 +01:00
[[package]]
name = "hermit-abi"
2021-08-28 22:15:59 +02:00
version = "0.1.19"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-11-30 17:30:26 +01:00
dependencies = [
"libc",
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "hexf-parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2020-11-30 17:30:26 +01:00
[[package]]
name = "image"
2022-06-08 13:00:04 +02:00
version = "0.24.2"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "28edd9d7bc256be2502e325ac0628bde30b7001b9b52e0abe31a1a9dc2701212"
2020-11-30 17:30:26 +01:00
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
2022-06-08 13:00:04 +02:00
"exr",
2020-11-30 17:30:26 +01:00
"gif",
"jpeg-decoder",
"num-iter",
"num-rational",
"num-traits",
"png",
"scoped_threadpool",
"tiff",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "indexmap"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
dependencies = [
2021-08-28 22:15:59 +02:00
"autocfg",
"hashbrown 0.11.2",
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "inflate"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cdb29978cc5797bd8dcc8e5bf7de604891df2a8dc576973d71a281e916db2ff"
dependencies = [
"adler32",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "inplace_it"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90953f308a79fe6d62a4643e51f848fbfddcd05975a38e69fdf4ab86a7baf7ca"
[[package]]
name = "instant"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d"
dependencies = [
2021-08-28 22:15:59 +02:00
"cfg-if 1.0.0",
2022-06-08 13:00:04 +02:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "itoa"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
[[package]]
name = "jni-sys"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
2020-11-30 17:30:26 +01:00
[[package]]
name = "jpeg-decoder"
2022-06-08 13:00:04 +02:00
version = "0.2.6"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "9478aa10f73e7528198d75109c8be5cd7d15fb530238040148d5f9a22d4c5b3b"
2020-11-30 17:30:26 +01:00
dependencies = [
"rayon",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "js-sys"
version = "0.3.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "e4bf49d50e2961077d9c99f4b7997d770a1114f087c3c2e0069b36c13fc2979d"
dependencies = [
2021-08-28 22:15:59 +02:00
"wasm-bindgen",
]
2020-11-29 18:18:11 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "khronos-egl"
version = "4.1.0"
2020-11-29 18:18:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "8c2352bd1d0bceb871cb9d40f24360c8133c11d7486b68b5381c1dd1a32015e3"
dependencies = [
"libc",
2022-06-08 13:00:04 +02:00
"libloading",
2021-08-28 22:15:59 +02:00
]
2020-11-29 18:18:11 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2020-11-29 18:18:11 +01:00
[[package]]
2022-06-08 13:00:04 +02:00
name = "lebe"
version = "0.5.1"
2020-11-29 18:18:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "7efd1d698db0759e6ef11a7cd44407407399a910c774dd804c64c032da7826ff"
2020-11-29 18:18:11 +01:00
[[package]]
2022-06-08 13:00:04 +02:00
name = "libc"
version = "0.2.126"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
[[package]]
2021-08-28 22:15:59 +02:00
name = "libloading"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "6f84d96438c15fcd6c3f244c8fce01d1e2b9c6b5623e9c711dc9286d8fc92d6a"
dependencies = [
2021-08-28 22:15:59 +02:00
"cfg-if 1.0.0",
"winapi",
]
[[package]]
name = "lock_api"
2021-08-28 22:15:59 +02:00
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"
dependencies = [
"scopeguard",
]
[[package]]
name = "log"
2022-06-08 13:00:04 +02:00
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
2021-08-28 22:15:59 +02:00
"cfg-if 1.0.0",
]
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
dependencies = [
"libc",
]
2020-11-29 18:18:11 +01:00
[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
[[package]]
name = "memchr"
2021-08-28 22:15:59 +02:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
2021-08-28 22:15:59 +02:00
name = "memmap2"
2022-06-08 13:00:04 +02:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "00b6c2ebff6180198788f5db08d7ce3bc1d0b617176678831a7510825973e357"
dependencies = [
"libc",
2020-11-29 18:18:11 +01:00
]
2020-11-30 17:30:26 +01:00
[[package]]
name = "memoffset"
2021-08-28 22:15:59 +02:00
version = "0.6.4"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9"
2020-11-30 17:30:26 +01:00
dependencies = [
"autocfg",
]
[[package]]
name = "metal"
2021-08-28 22:15:59 +02:00
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "e0514f491f4cc03632ab399ee01e2c1c1b12d3e1cf2d667c1ff5f87d6dcd2084"
dependencies = [
"bitflags",
"block",
2021-08-28 22:15:59 +02:00
"core-graphics-types",
"foreign-types",
"log",
"objc",
]
2021-08-28 22:15:59 +02:00
[[package]]
name = "minimal-lexical"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6595bb28ed34f43c3fe088e48f6cfb2e033cab45f25a5384d5fdf564fbc8c4b2"
2020-11-30 17:30:26 +01:00
[[package]]
name = "miniz_oxide"
2022-06-08 13:00:04 +02:00
version = "0.5.3"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
2020-11-30 17:30:26 +01:00
dependencies = [
"adler",
]
[[package]]
name = "mio"
2022-06-08 13:00:04 +02:00
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "713d550d9b44d89174e066b7a6217ae06234c10cb47819a88290d2b353c31799"
dependencies = [
"libc",
"log",
2022-06-08 13:00:04 +02:00
"wasi 0.11.0+wasi-snapshot-preview1",
"windows-sys",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "naga"
2022-06-08 13:00:04 +02:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "3012f2dbcc79e8e0b5825a4836a7106a75dd9b2fe42c528163be0f572538c705"
dependencies = [
2021-08-28 22:15:59 +02:00
"bit-set",
"bitflags",
"codespan-reporting",
2022-06-08 13:00:04 +02:00
"hexf-parse",
"indexmap",
2021-08-28 22:15:59 +02:00
"log",
"num-traits",
2022-06-08 13:00:04 +02:00
"rustc-hash",
2021-08-28 22:15:59 +02:00
"spirv",
"thiserror",
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "nanorand"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
dependencies = [
"getrandom",
]
[[package]]
name = "ndk"
2022-06-08 13:00:04 +02:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "96d868f654c72e75f8687572699cdabe755f03effbb62542768e995d5b8d699d"
dependencies = [
2022-06-08 13:00:04 +02:00
"bitflags",
"jni-sys",
2021-08-28 22:15:59 +02:00
"ndk-sys",
"num_enum",
"thiserror",
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "ndk-context"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
[[package]]
name = "ndk-glue"
2022-06-08 13:00:04 +02:00
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "c71bee8ea72d685477e28bd004cfe1bf99c754d688cd78cad139eae4089484d4"
dependencies = [
"lazy_static",
"libc",
"log",
2021-08-28 22:15:59 +02:00
"ndk",
2022-06-08 13:00:04 +02:00
"ndk-context",
"ndk-macro",
2021-08-28 22:15:59 +02:00
"ndk-sys",
]
[[package]]
name = "ndk-macro"
2022-06-08 13:00:04 +02:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "0df7ac00c4672f9d5aece54ee3347520b7e20f158656c7db2e6de01902eb7a6c"
dependencies = [
"darling",
2022-06-08 13:00:04 +02:00
"proc-macro-crate",
2021-08-28 22:15:59 +02:00
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "ndk-sys"
2022-06-08 13:00:04 +02:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "e1bcdd74c20ad5d95aacd60ef9ba40fdf77f767051040541df557b7a9b2a2121"
[[package]]
name = "nix"
2022-06-08 13:00:04 +02:00
version = "0.22.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "e4916f159ed8e5de0082076562152a76b7a1f64a01fd9d1e0fea002c37624faf"
dependencies = [
"bitflags",
"cc",
2021-08-28 22:15:59 +02:00
"cfg-if 1.0.0",
"libc",
2022-06-08 13:00:04 +02:00
"memoffset",
]
[[package]]
name = "nom"
2021-08-28 22:15:59 +02:00
version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "7ffd9d26838a953b4af82cbeb9f1592c6798916983959be223a7124e992742c1"
dependencies = [
"memchr",
2021-08-28 22:15:59 +02:00
"minimal-lexical",
"version_check",
]
2020-11-30 17:30:26 +01:00
[[package]]
name = "num-integer"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-iter"
version = "0.1.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
2022-06-08 13:00:04 +02:00
version = "0.4.0"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a"
2020-11-30 17:30:26 +01:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "num_enum"
2021-08-28 22:15:59 +02:00
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "3f9bd055fb730c4f8f4f57d45d35cd6b3f0980535b056dc7ff119cee6a66ed6f"
dependencies = [
"derivative",
"num_enum_derive",
]
[[package]]
name = "num_enum_derive"
2021-08-28 22:15:59 +02:00
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "486ea01961c4a818096de679a8b740b26d9033146ac5291b1c98557658f8cdd9"
dependencies = [
2022-06-08 13:00:04 +02:00
"proc-macro-crate",
2021-08-28 22:15:59 +02:00
"proc-macro2",
"quote",
"syn",
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "num_threads"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
dependencies = [
"libc",
]
[[package]]
name = "objc"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
dependencies = [
"malloc_buf",
"objc_exception",
]
[[package]]
name = "objc_exception"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
dependencies = [
"cc",
]
[[package]]
name = "once_cell"
2021-08-28 22:15:59 +02:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56"
[[package]]
name = "parking_lot"
2021-08-28 22:15:59 +02:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
2021-08-28 22:15:59 +02:00
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2021-08-28 22:15:59 +02:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
dependencies = [
2021-08-28 22:15:59 +02:00
"cfg-if 1.0.0",
"instant",
"libc",
"redox_syscall",
"smallvec",
2021-08-28 22:15:59 +02:00
"winapi",
]
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2021-08-28 22:15:59 +02:00
[[package]]
2022-06-08 13:00:04 +02:00
name = "pin-project"
version = "1.0.10"
2021-08-28 22:15:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "58ad3879ad3baf4e44784bc6a718a8698867bb991f8ce24d1bcbe2cfb4c3a75e"
2021-08-28 22:15:59 +02:00
dependencies = [
2022-06-08 13:00:04 +02:00
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "744b6f092ba29c3650faf274db506afd39944f48420f6c86b17cfe0ee1cb36bb"
dependencies = [
"proc-macro2",
"quote",
"syn",
2021-08-28 22:15:59 +02:00
]
[[package]]
name = "pkg-config"
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c"
2020-11-30 17:30:26 +01:00
[[package]]
name = "png"
2022-06-08 13:00:04 +02:00
version = "0.17.5"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba"
2020-11-30 17:30:26 +01:00
dependencies = [
"bitflags",
"crc32fast",
"deflate",
2022-06-08 13:00:04 +02:00
"miniz_oxide",
2020-11-30 17:30:26 +01:00
]
[[package]]
2022-06-08 13:00:04 +02:00
name = "pollster"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "5da3b0203fd7ee5720aa0b5e790b591aa5d3f41c3ed2c34a3a393382198af2f7"
[[package]]
2021-08-28 22:15:59 +02:00
name = "proc-macro-crate"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "41fdbd1df62156fbc5945f4762632564d7d038153091c3fcf1067f6aef7cff92"
dependencies = [
2021-08-28 22:15:59 +02:00
"thiserror",
"toml",
]
2020-11-30 17:30:26 +01:00
[[package]]
name = "proc-macro2"
2021-08-28 22:15:59 +02:00
version = "1.0.28"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "5c7ed8b8c7b886ea3ed7dde405212185f423ab44682667c8c6dd14aa1d9f6612"
2020-11-30 17:30:26 +01:00
dependencies = [
2021-08-28 22:15:59 +02:00
"unicode-xid",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "profiling"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "87dfd5592a8eed7e74f56ad7b125f8234763b805c30f0c7c95c486920026a6ec"
2020-11-30 17:30:26 +01:00
[[package]]
name = "quote"
2021-08-28 22:15:59 +02:00
version = "1.0.9"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
2020-11-30 17:30:26 +01:00
dependencies = [
2021-08-28 22:15:59 +02:00
"proc-macro2",
]
2021-08-28 22:15:59 +02:00
[[package]]
name = "range-alloc"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63e935c45e09cc6dcf00d2f0b2d630a58f4095320223d47fc68918722f0538b6"
[[package]]
name = "raw-window-handle"
2022-06-08 13:00:04 +02:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "b800beb9b6e7d2df1fe337c9e3d04e3af22a124460fb4c30fcc22c9117cefb41"
dependencies = [
2022-06-08 13:00:04 +02:00
"cty",
2020-11-30 17:30:26 +01:00
]
[[package]]
name = "rayon"
2021-08-28 22:15:59 +02:00
version = "1.5.1"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
2020-11-30 17:30:26 +01:00
dependencies = [
"autocfg",
2021-08-28 22:15:59 +02:00
"crossbeam-deque",
2020-11-30 17:30:26 +01:00
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2021-08-28 22:15:59 +02:00
version = "1.9.1"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
2020-11-30 17:30:26 +01:00
dependencies = [
2021-08-28 22:15:59 +02:00
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
2020-11-30 17:30:26 +01:00
"lazy_static",
"num_cpus",
]
[[package]]
name = "redox_syscall"
2021-08-28 22:15:59 +02:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
dependencies = [
2021-08-28 22:15:59 +02:00
"bitflags",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "renderdoc-sys"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "f1382d1f0a252c4bf97dc20d979a2fdd05b024acd7c2ed0f7595d7817666a157"
[[package]]
2022-06-08 13:00:04 +02:00
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
2020-11-30 17:30:26 +01:00
[[package]]
name = "scoped_threadpool"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
2020-11-29 18:18:11 +01:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "serde"
2021-08-28 22:15:59 +02:00
version = "1.0.130"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913"
2022-06-08 13:00:04 +02:00
[[package]]
name = "simplelog"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48dfff04aade74dd495b007c831cd6f4e0cee19c344dd9dc0884c0289b70a786"
dependencies = [
"log",
"termcolor",
"time",
]
2020-11-30 17:30:26 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "slotmap"
version = "1.0.5"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "a952280edbecfb1d4bd3cf2dbc309dc6ab523e53487c438ae21a6df09fe84bc4"
2020-11-30 17:30:26 +01:00
dependencies = [
2021-08-28 22:15:59 +02:00
"version_check",
2020-11-29 18:18:11 +01:00
]
[[package]]
name = "smallvec"
2022-06-08 13:00:04 +02:00
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
[[package]]
name = "smithay-client-toolkit"
2022-06-08 13:00:04 +02:00
version = "0.15.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "8a28f16a97fa0e8ce563b2774d1e732dd5d4025d2772c5dba0a41a0f90a29da3"
dependencies = [
"bitflags",
2021-08-28 22:15:59 +02:00
"calloop",
2022-06-08 13:00:04 +02:00
"dlib",
"lazy_static",
"log",
2021-08-28 22:15:59 +02:00
"memmap2",
2022-06-08 13:00:04 +02:00
"nix",
"pkg-config",
2021-08-28 22:15:59 +02:00
"wayland-client",
"wayland-cursor",
2021-08-28 22:15:59 +02:00
"wayland-protocols",
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "spin"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c530c2b0d0bf8b69304b39fe2001993e267461948b890cd037d8ad4293fa1a0d"
dependencies = [
"lock_api",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "spirv"
version = "0.2.0+1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "246bfa38fe3db3f1dfc8ca5a2cdeb7348c78be2112740cc0ec8ef18b6d94f830"
dependencies = [
2021-08-28 22:15:59 +02:00
"bitflags",
"num-traits",
]
[[package]]
name = "strsim"
2022-06-08 13:00:04 +02:00
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2020-11-30 17:30:26 +01:00
[[package]]
name = "syn"
2021-08-28 22:15:59 +02:00
version = "1.0.75"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "b7f58f7e8eaa0009c5fec437aabf511bd9933e4b2d7407bd05273c01a8906ea7"
2020-11-30 17:30:26 +01:00
dependencies = [
2021-08-28 22:15:59 +02:00
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "termcolor"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4"
dependencies = [
"winapi-util",
]
[[package]]
name = "thiserror"
2021-08-28 22:15:59 +02:00
version = "1.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "93119e4feac1cbe6c798c34d3a53ea0026b0b1de6a120deef895137c0529bfe2"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-08-28 22:15:59 +02:00
version = "1.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "060d69a0afe7796bf42e9e2ff91f5ee691fb15c53d38b4b62a9a53eb23164745"
dependencies = [
2021-08-28 22:15:59 +02:00
"proc-macro2",
"quote",
"syn",
2020-11-30 17:30:26 +01:00
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "threadpool"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
dependencies = [
"num_cpus",
]
2020-11-30 17:30:26 +01:00
[[package]]
name = "tiff"
2022-06-08 13:00:04 +02:00
version = "0.7.2"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "7cfada0986f446a770eca461e8c6566cb879682f7d687c8348aa0c857bd52286"
2020-11-30 17:30:26 +01:00
dependencies = [
2022-06-08 13:00:04 +02:00
"flate2",
2020-11-30 17:30:26 +01:00
"jpeg-decoder",
"weezl",
]
2022-06-08 13:00:04 +02:00
[[package]]
name = "time"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd"
dependencies = [
"itoa",
"libc",
"num_threads",
"time-macros",
]
[[package]]
name = "time-macros"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
[[package]]
name = "toml"
2021-08-28 22:15:59 +02:00
version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa"
dependencies = [
"serde",
]
2020-11-29 18:18:11 +01:00
[[package]]
name = "tuto1"
version = "0.1.0"
dependencies = [
2020-12-04 21:44:51 +01:00
"engine_core",
2022-06-08 13:00:04 +02:00
"pollster",
"simplelog",
2020-11-29 18:18:11 +01:00
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "unicode-width"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3"
2020-11-30 17:30:26 +01:00
[[package]]
name = "unicode-xid"
2021-08-28 22:15:59 +02:00
version = "0.2.2"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2020-11-30 17:30:26 +01:00
[[package]]
name = "version_check"
2021-08-28 22:15:59 +02:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
2020-11-29 18:18:11 +01:00
[[package]]
2022-06-08 13:00:04 +02:00
name = "wasi"
version = "0.10.2+wasi-snapshot-preview1"
2020-11-29 18:18:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2020-11-29 18:18:11 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "wasm-bindgen"
version = "0.2.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "8ce9b1b516211d33767048e5d47fa2a381ed8b76fc48d2ce4aa39877f9f183e0"
dependencies = [
"cfg-if 1.0.0",
"wasm-bindgen-macro",
]
2020-11-29 18:18:11 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "wasm-bindgen-backend"
version = "0.2.76"
2020-11-29 18:18:11 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "cfe8dc78e2326ba5f845f4b5bf548401604fa20b1dd1d365fb73b6c1d6364041"
2020-11-29 18:18:11 +01:00
dependencies = [
2021-08-28 22:15:59 +02:00
"bumpalo",
2020-11-29 18:18:11 +01:00
"lazy_static",
2021-08-28 22:15:59 +02:00
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
2020-11-29 18:18:11 +01:00
]
2020-11-30 17:30:26 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "wasm-bindgen-futures"
version = "0.4.26"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "95fded345a6559c2cfee778d562300c581f7d4ff3edb9b0d230d69800d213972"
2020-11-30 17:30:26 +01:00
dependencies = [
2021-08-28 22:15:59 +02:00
"cfg-if 1.0.0",
"js-sys",
"wasm-bindgen",
"web-sys",
2020-11-30 17:30:26 +01:00
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "wasm-bindgen-macro"
version = "0.2.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "44468aa53335841d9d6b6c023eaab07c0cd4bddbcfdee3e2bb1e8d2cb8069fef"
dependencies = [
2021-08-28 22:15:59 +02:00
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "wasm-bindgen-macro-support"
version = "0.2.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "0195807922713af1e67dc66132c7328206ed9766af3858164fb583eedc25fbad"
dependencies = [
2021-08-28 22:15:59 +02:00
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "wasm-bindgen-shared"
version = "0.2.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "acdb075a845574a1fa5f09fd77e43f7747599301ea3417a9fbffdeedfc1f4a29"
[[package]]
name = "wayland-client"
2022-06-08 13:00:04 +02:00
version = "0.29.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "91223460e73257f697d9e23d401279123d36039a3f7a449e983f123292d4458f"
dependencies = [
"bitflags",
"downcast-rs",
"libc",
2022-06-08 13:00:04 +02:00
"nix",
"scoped-tls",
2021-08-28 22:15:59 +02:00
"wayland-commons",
"wayland-scanner",
"wayland-sys",
]
[[package]]
name = "wayland-commons"
2022-06-08 13:00:04 +02:00
version = "0.29.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "94f6e5e340d7c13490eca867898c4cec5af56c27a5ffe5c80c6fc4708e22d33e"
dependencies = [
2022-06-08 13:00:04 +02:00
"nix",
"once_cell",
"smallvec",
2021-08-28 22:15:59 +02:00
"wayland-sys",
]
[[package]]
name = "wayland-cursor"
2022-06-08 13:00:04 +02:00
version = "0.29.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "c52758f13d5e7861fc83d942d3d99bf270c83269575e52ac29e5b73cb956a6bd"
dependencies = [
2022-06-08 13:00:04 +02:00
"nix",
2021-08-28 22:15:59 +02:00
"wayland-client",
"xcursor",
]
[[package]]
name = "wayland-protocols"
2022-06-08 13:00:04 +02:00
version = "0.29.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "60147ae23303402e41fe034f74fb2c35ad0780ee88a1c40ac09a3be1e7465741"
dependencies = [
"bitflags",
2021-08-28 22:15:59 +02:00
"wayland-client",
"wayland-commons",
"wayland-scanner",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "wayland-scanner"
2022-06-08 13:00:04 +02:00
version = "0.29.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "39a1ed3143f7a143187156a2ab52742e89dac33245ba505c17224df48939f9e0"
dependencies = [
2021-08-28 22:15:59 +02:00
"proc-macro2",
"quote",
"xml-rs",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "wayland-sys"
2022-06-08 13:00:04 +02:00
version = "0.29.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "d9341df79a8975679188e37dab3889bfa57c44ac2cb6da166f519a81cbe452d4"
dependencies = [
2022-06-08 13:00:04 +02:00
"dlib",
2021-08-28 22:15:59 +02:00
"lazy_static",
"pkg-config",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "web-sys"
2022-06-08 13:00:04 +02:00
version = "0.3.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "224b2f6b67919060055ef1a67807367c2066ed520c3862cc013d26cf893a783c"
dependencies = [
2021-08-28 22:15:59 +02:00
"js-sys",
"wasm-bindgen",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "weezl"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8b77fdfd5a253be4ab714e4ffa3c49caf146b4de743e97510c0656cf90f1e8e"
[[package]]
name = "wgpu"
2022-06-08 13:00:04 +02:00
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "b97cd781ff044d6d697b632a2e212032c2e957d1afaa21dbf58069cbb8f78567"
dependencies = [
2021-08-28 22:15:59 +02:00
"arrayvec",
"js-sys",
"log",
2022-06-08 13:00:04 +02:00
"naga",
2021-08-28 22:15:59 +02:00
"parking_lot",
"raw-window-handle",
"smallvec",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"wgpu-core",
"wgpu-hal",
"wgpu-types",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "wgpu-core"
2022-06-08 13:00:04 +02:00
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "c4688c000eb841ca55f7b35db659b78d6e1cd77d7caf8fb929f4e181f754047d"
dependencies = [
2021-08-28 22:15:59 +02:00
"arrayvec",
"bitflags",
"cfg_aliases",
2022-06-08 13:00:04 +02:00
"codespan-reporting",
2021-08-28 22:15:59 +02:00
"copyless",
"fxhash",
"log",
"naga",
"parking_lot",
"profiling",
"raw-window-handle",
"smallvec",
"thiserror",
"wgpu-hal",
"wgpu-types",
]
2020-11-30 17:30:26 +01:00
[[package]]
2021-08-28 22:15:59 +02:00
name = "wgpu-hal"
2022-06-08 13:00:04 +02:00
version = "0.12.5"
2020-11-30 17:30:26 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "d684ea6a34974a2fc19f1dfd183d11a62e22d75c4f187a574bb1224df8e056c2"
2021-08-28 22:15:59 +02:00
dependencies = [
"arrayvec",
"ash",
"bit-set",
"bitflags",
"block",
"core-graphics-types",
"d3d12",
"foreign-types",
"fxhash",
"glow",
"gpu-alloc",
"gpu-descriptor",
"inplace_it",
2022-06-08 13:00:04 +02:00
"js-sys",
2021-08-28 22:15:59 +02:00
"khronos-egl",
2022-06-08 13:00:04 +02:00
"libloading",
2021-08-28 22:15:59 +02:00
"log",
"metal",
"naga",
"objc",
"parking_lot",
2022-06-08 13:00:04 +02:00
"profiling",
2021-08-28 22:15:59 +02:00
"range-alloc",
"raw-window-handle",
"renderdoc-sys",
"thiserror",
2022-06-08 13:00:04 +02:00
"wasm-bindgen",
"web-sys",
2021-08-28 22:15:59 +02:00
"wgpu-types",
"winapi",
]
[[package]]
2021-08-28 22:15:59 +02:00
name = "wgpu-types"
2022-06-08 13:00:04 +02:00
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "549533d9e1cdd4b4cda7718d33ff500fc4c34b5467b71d76b547ae0324f3b2a2"
2021-08-28 22:15:59 +02:00
dependencies = [
"bitflags",
]
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
2021-08-28 22:15:59 +02:00
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2022-06-08 13:00:04 +02:00
[[package]]
name = "windows-sys"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
[[package]]
name = "windows_i686_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
[[package]]
name = "windows_i686_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
[[package]]
name = "windows_x86_64_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
[[package]]
name = "windows_x86_64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
[[package]]
name = "winit"
2022-06-08 13:00:04 +02:00
version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-08 13:00:04 +02:00
checksum = "9b43cc931d58b99461188607efd7acb2a093e65fc621f54cad78517a6063e73a"
dependencies = [
"bitflags",
2021-08-28 22:15:59 +02:00
"cocoa",
"core-foundation 0.9.1",
2021-08-28 22:15:59 +02:00
"core-graphics 0.22.2",
"core-video-sys",
"dispatch",
"instant",
"lazy_static",
"libc",
"log",
"mio",
2021-08-28 22:15:59 +02:00
"ndk",
"ndk-glue",
"ndk-sys",
"objc",
2021-08-28 22:15:59 +02:00
"parking_lot",
"percent-encoding",
"raw-window-handle",
2021-08-28 22:15:59 +02:00
"smithay-client-toolkit",
2022-06-08 13:00:04 +02:00
"wasm-bindgen",
2021-08-28 22:15:59 +02:00
"wayland-client",
2022-06-08 13:00:04 +02:00
"wayland-protocols",
"web-sys",
2021-08-28 22:15:59 +02:00
"winapi",
"x11-dl",
]
[[package]]
name = "x11-dl"
version = "2.18.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bf981e3a5b3301209754218f962052d4d9ee97e478f4d26d4a6eced34c1fef8"
dependencies = [
"lazy_static",
"libc",
"maybe-uninit",
"pkg-config",
]
[[package]]
name = "xcursor"
2021-08-28 22:15:59 +02:00
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "463705a63313cd4301184381c5e8042f0a7e9b4bb63653f216311d4ae74690b7"
dependencies = [
"nom",
]
[[package]]
name = "xml-rs"
2021-08-28 22:15:59 +02:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-28 22:15:59 +02:00
checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"