diff --git a/bazel/cargo/wasmtime/BUILD.bazel b/bazel/cargo/wasmtime/BUILD.bazel index 2f7ca27d9..a239b0bb0 100644 --- a/bazel/cargo/wasmtime/BUILD.bazel +++ b/bazel/cargo/wasmtime/BUILD.bazel @@ -41,7 +41,7 @@ alias( alias( name = "wasmtime", - actual = "@wasmtime__wasmtime__1_0_1//:wasmtime", + actual = "@wasmtime__wasmtime__2_0_0//:wasmtime", tags = [ "cargo-raze", "manual", diff --git a/bazel/cargo/wasmtime/Cargo.raze.lock b/bazel/cargo/wasmtime/Cargo.raze.lock index fe3f47a0e..871dc72f5 100644 --- a/bazel/cargo/wasmtime/Cargo.raze.lock +++ b/bazel/cargo/wasmtime/Cargo.raze.lock @@ -108,18 +108,18 @@ dependencies = [ [[package]] name = "cranelift-bforest" -version = "0.88.1" +version = "0.89.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44409ccf2d0f663920cab563d2b79fcd6b2e9a2bcc6e929fef76c8f82ad6c17a" +checksum = "be5e1ee4c22871d24a95196ea7047d58c1d978e46c88037d3d397b3b3e0af360" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-codegen" -version = "0.88.1" +version = "0.89.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98de2018ad96eb97f621f7d6b900a0cc661aec8d02ea4a50e56ecb48e5a2fcaf" +checksum = "70f600a52d59eed56a85f33750873b3b42d61e35ca777cd792369893f9e1f9dd" dependencies = [ "arrayvec", "bumpalo", @@ -137,33 +137,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.88.1" +version = "0.89.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5287ce36e6c4758fbaf298bd1a8697ad97a4f2375a3d1b61142ea538db4877e5" +checksum = "e8418218d0953d73e9b96e9d9ffec56145efa4f18988251530b5872ae4410563" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.88.1" +version = "0.89.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2855c24219e2f08827f3f4ffb2da92e134ae8d8ecc185b11ec8f9878cf5f588e" +checksum = "f01be0cfd40aba59153236ab4b99062131b5bbe6f9f3d4bcb238bd2f96ff5262" [[package]] name = "cranelift-entity" -version = "0.88.1" +version = "0.89.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b65673279d75d34bf11af9660ae2dbd1c22e6d28f163f5c72f4e1dc56d56103" +checksum = "ddae4fec5d6859233ffa175b61d269443c473b3971a2c3e69008c8d3e83d5825" dependencies = [ "serde", ] [[package]] name = "cranelift-frontend" -version = "0.88.1" +version = "0.89.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ed2b3d7a4751163f6c4a349205ab1b7d9c00eecf19dcea48592ef1f7688eefc" +checksum = "f2cc3deb0df97748434cf9f7e404f1f5134f6a253fc9a6bca25c5cd6804c08d3" dependencies = [ "cranelift-codegen", "log", @@ -173,15 +173,18 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.88.1" +version = "0.89.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3be64cecea9d90105fc6a2ba2d003e98c867c1d6c4c86cc878f97ad9fb916293" +checksum = "fc3bb54287de9c36ba354eb849fefb77b5e73955058745fd08f12cfdfa181866" +dependencies = [ + "rayon", +] [[package]] name = "cranelift-native" -version = "0.88.1" +version = "0.89.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4a03a6ac1b063e416ca4b93f6247978c991475e8271465340caa6f92f3c16a4" +checksum = "d8c2a4f2efdce1de1f94e74f12b3b4144e3bcafa6011338b87388325d72d2120" dependencies = [ "cranelift-codegen", "libc", @@ -190,9 +193,9 @@ dependencies = [ [[package]] name = "cranelift-wasm" -version = "0.88.1" +version = "0.89.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c699873f7b30bc5f20dd03a796b4183e073a46616c91704792ec35e45d13f913" +checksum = "f918c37eb01f5b5ccc632e0ef3b4bf9ee03b5d4c267d3d2d3b62720a6bce0180" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -213,6 +216,49 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "crossbeam-channel" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" +dependencies = [ + "cfg-if", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc" +dependencies = [ + "cfg-if", + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348" +dependencies = [ + "autocfg", + "cfg-if", + "crossbeam-utils", + "memoffset", + "scopeguard", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac" +dependencies = [ + "cfg-if", +] + [[package]] name = "either" version = "1.8.0" @@ -385,6 +431,16 @@ dependencies = [ "autocfg", ] +[[package]] +name = "num_cpus" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" +dependencies = [ + "hermit-abi", + "libc", +] + [[package]] name = "object" version = "0.29.0" @@ -472,11 +528,35 @@ dependencies = [ "getrandom", ] +[[package]] +name = "rayon" +version = "1.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d" +dependencies = [ + "autocfg", + "crossbeam-deque", + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-utils", + "num_cpus", +] + [[package]] name = "regalloc2" -version = "0.3.2" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d43a209257d978ef079f3d446331d0f1794f5e0fc19b306a199983857833a779" +checksum = "69025b4a161879ba90719837c06621c3d73cffa147a000aeacf458f6a9572485" dependencies = [ "fxhash", "log", @@ -521,6 +601,12 @@ dependencies = [ "windows-sys", ] +[[package]] +name = "scopeguard" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" + [[package]] name = "serde" version = "1.0.147" @@ -625,18 +711,18 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasmparser" -version = "0.89.1" +version = "0.92.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab5d3e08b13876f96dd55608d03cd4883a0545884932d5adf11925876c96daef" +checksum = "7da34cec2a8c23db906cdf8b26e988d7a7f0d549eb5d51299129647af61a1b37" dependencies = [ "indexmap", ] [[package]] name = "wasmtime" -version = "1.0.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1f511c4917c83d04da68333921107db75747c4e11a2f654a8e909cc5e0520dc" +checksum = "f5fc5bb3329415030796cfa5530b2481ccef5c4f1e5150733ba94318ab004fe1" dependencies = [ "anyhow", "bincode", @@ -660,16 +746,16 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "1.0.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39bf3debfe744bf19dd3732990ce6f8c0ced7439e2370ba4e1d8f5a3660a3178" +checksum = "db36545ff0940ad9bf4e9ab0ec2a4e1eaa5ebe2aa9227bcbc4af905375d9e482" dependencies = [ "cfg-if", ] [[package]] name = "wasmtime-c-api-bazel" -version = "1.0.1" +version = "2.0.0" dependencies = [ "anyhow", "env_logger", @@ -681,7 +767,7 @@ dependencies = [ [[package]] name = "wasmtime-c-api-macros" version = "0.19.0" -source = "git+https://github.com/bytecodealliance/wasmtime?tag=v1.0.1#c63087ff668fbdffe326c7b48401acbbf0e82a65" +source = "git+https://github.com/bytecodealliance/wasmtime?tag=v2.0.0#ff8c568eeed3918a5d591295e9384e2b1e462aae" dependencies = [ "proc-macro2", "quote", @@ -689,9 +775,9 @@ dependencies = [ [[package]] name = "wasmtime-cranelift" -version = "1.0.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "058217e28644b012bdcdf0e445f58d496d78c2e0b6a6dd93558e701591dad705" +checksum = "0409e93b5eceaa4e5f498a4bce1cffc7ebe071d14582b5437c10af4aecc23f54" dependencies = [ "anyhow", "cranelift-codegen", @@ -710,9 +796,9 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "1.0.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7af06848df28b7661471d9a80d30a973e0f401f2e3ed5396ad7e225ed217047" +checksum = "55240389c604f68d2e1d2573d7d3740246ab9ea2fa4fe79e10ccd51faf9b9500" dependencies = [ "anyhow", "cranelift-entity", @@ -729,9 +815,9 @@ dependencies = [ [[package]] name = "wasmtime-jit" -version = "1.0.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9028fb63a54185b3c192b7500ef8039c7bb8d7f62bfc9e7c258483a33a3d13bb" +checksum = "bc15e285b7073ee566e62ea4b6dd38b80465ade0ea8cd4cee13c7ac2e295cfca" dependencies = [ "addr2line", "anyhow", @@ -753,18 +839,18 @@ dependencies = [ [[package]] name = "wasmtime-jit-debug" -version = "1.0.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25e82d4ef93296785de7efca92f7679dc67fe68a13b625a5ecc8d7503b377a37" +checksum = "bee06d206bcf7a875eacd1e1e957c2a63f64a92934d2535dd8e15cde6d3a9ffe" dependencies = [ "once_cell", ] [[package]] name = "wasmtime-runtime" -version = "1.0.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f0e9bea7d517d114fe66b930b2124ee086516ee93eeebfd97f75f366c5b0553" +checksum = "9969ff36cbf57f18c2d24679db57d0857ea7cc7d839534afc26ecc8003e9914b" dependencies = [ "anyhow", "cc", @@ -786,9 +872,9 @@ dependencies = [ [[package]] name = "wasmtime-types" -version = "1.0.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69b83e93ed41b8fdc936244cfd5e455480cf1eca1fd60c78a0040038b4ce5075" +checksum = "df64c737fc9b3cdf7617bcc65e8b97cb713ceb9c9c58530b20788a8a3482b5d1" dependencies = [ "cranelift-entity", "serde", diff --git a/bazel/cargo/wasmtime/Cargo.toml b/bazel/cargo/wasmtime/Cargo.toml index 9ea642465..8b5b4c47e 100644 --- a/bazel/cargo/wasmtime/Cargo.toml +++ b/bazel/cargo/wasmtime/Cargo.toml @@ -1,7 +1,7 @@ [package] edition = "2018" name = "wasmtime-c-api-bazel" -version = "1.0.1" +version = "2.0.0" [lib] path = "fake_lib.rs" @@ -10,8 +10,8 @@ path = "fake_lib.rs" env_logger = "0.9" anyhow = "1.0" once_cell = "1.3" -wasmtime = {version = "1.0.1", default-features = false, features = ['cranelift']} -wasmtime-c-api-macros = {git = "https://github.com/bytecodealliance/wasmtime", tag = "v1.0.1"} +wasmtime = {version = "2.0.0", default-features = false, features = ['cranelift']} +wasmtime-c-api-macros = {git = "https://github.com/bytecodealliance/wasmtime", tag = "v2.0.0"} [package.metadata.raze] rust_rules_workspace_name = "rules_rust" diff --git a/bazel/cargo/wasmtime/crates.bzl b/bazel/cargo/wasmtime/crates.bzl index fc569e559..b5fc80ebd 100644 --- a/bazel/cargo/wasmtime/crates.bzl +++ b/bazel/cargo/wasmtime/crates.bzl @@ -159,98 +159,98 @@ def wasmtime_fetch_remote_crates(): maybe( http_archive, - name = "wasmtime__cranelift_bforest__0_88_1", - url = "https://crates.io/api/v1/crates/cranelift-bforest/0.88.1/download", + name = "wasmtime__cranelift_bforest__0_89_0", + url = "https://crates.io/api/v1/crates/cranelift-bforest/0.89.0/download", type = "tar.gz", - sha256 = "44409ccf2d0f663920cab563d2b79fcd6b2e9a2bcc6e929fef76c8f82ad6c17a", - strip_prefix = "cranelift-bforest-0.88.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-bforest-0.88.1.bazel"), + sha256 = "be5e1ee4c22871d24a95196ea7047d58c1d978e46c88037d3d397b3b3e0af360", + strip_prefix = "cranelift-bforest-0.89.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-bforest-0.89.0.bazel"), ) maybe( http_archive, - name = "wasmtime__cranelift_codegen__0_88_1", - url = "https://crates.io/api/v1/crates/cranelift-codegen/0.88.1/download", + name = "wasmtime__cranelift_codegen__0_89_0", + url = "https://crates.io/api/v1/crates/cranelift-codegen/0.89.0/download", type = "tar.gz", - sha256 = "98de2018ad96eb97f621f7d6b900a0cc661aec8d02ea4a50e56ecb48e5a2fcaf", - strip_prefix = "cranelift-codegen-0.88.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-0.88.1.bazel"), + sha256 = "70f600a52d59eed56a85f33750873b3b42d61e35ca777cd792369893f9e1f9dd", + strip_prefix = "cranelift-codegen-0.89.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-0.89.0.bazel"), ) maybe( http_archive, - name = "wasmtime__cranelift_codegen_meta__0_88_1", - url = "https://crates.io/api/v1/crates/cranelift-codegen-meta/0.88.1/download", + name = "wasmtime__cranelift_codegen_meta__0_89_0", + url = "https://crates.io/api/v1/crates/cranelift-codegen-meta/0.89.0/download", type = "tar.gz", - sha256 = "5287ce36e6c4758fbaf298bd1a8697ad97a4f2375a3d1b61142ea538db4877e5", - strip_prefix = "cranelift-codegen-meta-0.88.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-meta-0.88.1.bazel"), + sha256 = "e8418218d0953d73e9b96e9d9ffec56145efa4f18988251530b5872ae4410563", + strip_prefix = "cranelift-codegen-meta-0.89.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-meta-0.89.0.bazel"), ) maybe( http_archive, - name = "wasmtime__cranelift_codegen_shared__0_88_1", - url = "https://crates.io/api/v1/crates/cranelift-codegen-shared/0.88.1/download", + name = "wasmtime__cranelift_codegen_shared__0_89_0", + url = "https://crates.io/api/v1/crates/cranelift-codegen-shared/0.89.0/download", type = "tar.gz", - sha256 = "2855c24219e2f08827f3f4ffb2da92e134ae8d8ecc185b11ec8f9878cf5f588e", - strip_prefix = "cranelift-codegen-shared-0.88.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-shared-0.88.1.bazel"), + sha256 = "f01be0cfd40aba59153236ab4b99062131b5bbe6f9f3d4bcb238bd2f96ff5262", + strip_prefix = "cranelift-codegen-shared-0.89.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-codegen-shared-0.89.0.bazel"), ) maybe( http_archive, - name = "wasmtime__cranelift_entity__0_88_1", - url = "https://crates.io/api/v1/crates/cranelift-entity/0.88.1/download", + name = "wasmtime__cranelift_entity__0_89_0", + url = "https://crates.io/api/v1/crates/cranelift-entity/0.89.0/download", type = "tar.gz", - sha256 = "0b65673279d75d34bf11af9660ae2dbd1c22e6d28f163f5c72f4e1dc56d56103", - strip_prefix = "cranelift-entity-0.88.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-entity-0.88.1.bazel"), + sha256 = "ddae4fec5d6859233ffa175b61d269443c473b3971a2c3e69008c8d3e83d5825", + strip_prefix = "cranelift-entity-0.89.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-entity-0.89.0.bazel"), ) maybe( http_archive, - name = "wasmtime__cranelift_frontend__0_88_1", - url = "https://crates.io/api/v1/crates/cranelift-frontend/0.88.1/download", + name = "wasmtime__cranelift_frontend__0_89_0", + url = "https://crates.io/api/v1/crates/cranelift-frontend/0.89.0/download", type = "tar.gz", - sha256 = "3ed2b3d7a4751163f6c4a349205ab1b7d9c00eecf19dcea48592ef1f7688eefc", - strip_prefix = "cranelift-frontend-0.88.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-frontend-0.88.1.bazel"), + sha256 = "f2cc3deb0df97748434cf9f7e404f1f5134f6a253fc9a6bca25c5cd6804c08d3", + strip_prefix = "cranelift-frontend-0.89.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-frontend-0.89.0.bazel"), ) maybe( http_archive, - name = "wasmtime__cranelift_isle__0_88_1", - url = "https://crates.io/api/v1/crates/cranelift-isle/0.88.1/download", + name = "wasmtime__cranelift_isle__0_89_0", + url = "https://crates.io/api/v1/crates/cranelift-isle/0.89.0/download", type = "tar.gz", - sha256 = "3be64cecea9d90105fc6a2ba2d003e98c867c1d6c4c86cc878f97ad9fb916293", - strip_prefix = "cranelift-isle-0.88.1", + sha256 = "fc3bb54287de9c36ba354eb849fefb77b5e73955058745fd08f12cfdfa181866", + strip_prefix = "cranelift-isle-0.89.0", patches = [ "@proxy_wasm_cpp_host//bazel/cargo/wasmtime:cranelift-isle.patch", ], patch_args = [ "-p4", ], - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-isle-0.88.1.bazel"), + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-isle-0.89.0.bazel"), ) maybe( http_archive, - name = "wasmtime__cranelift_native__0_88_1", - url = "https://crates.io/api/v1/crates/cranelift-native/0.88.1/download", + name = "wasmtime__cranelift_native__0_89_0", + url = "https://crates.io/api/v1/crates/cranelift-native/0.89.0/download", type = "tar.gz", - sha256 = "c4a03a6ac1b063e416ca4b93f6247978c991475e8271465340caa6f92f3c16a4", - strip_prefix = "cranelift-native-0.88.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-native-0.88.1.bazel"), + sha256 = "d8c2a4f2efdce1de1f94e74f12b3b4144e3bcafa6011338b87388325d72d2120", + strip_prefix = "cranelift-native-0.89.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-native-0.89.0.bazel"), ) maybe( http_archive, - name = "wasmtime__cranelift_wasm__0_88_1", - url = "https://crates.io/api/v1/crates/cranelift-wasm/0.88.1/download", + name = "wasmtime__cranelift_wasm__0_89_0", + url = "https://crates.io/api/v1/crates/cranelift-wasm/0.89.0/download", type = "tar.gz", - sha256 = "c699873f7b30bc5f20dd03a796b4183e073a46616c91704792ec35e45d13f913", - strip_prefix = "cranelift-wasm-0.88.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-wasm-0.88.1.bazel"), + sha256 = "f918c37eb01f5b5ccc632e0ef3b4bf9ee03b5d4c267d3d2d3b62720a6bce0180", + strip_prefix = "cranelift-wasm-0.89.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.cranelift-wasm-0.89.0.bazel"), ) maybe( @@ -263,6 +263,46 @@ def wasmtime_fetch_remote_crates(): build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.crc32fast-1.3.2.bazel"), ) + maybe( + http_archive, + name = "wasmtime__crossbeam_channel__0_5_6", + url = "https://crates.io/api/v1/crates/crossbeam-channel/0.5.6/download", + type = "tar.gz", + sha256 = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521", + strip_prefix = "crossbeam-channel-0.5.6", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.crossbeam-channel-0.5.6.bazel"), + ) + + maybe( + http_archive, + name = "wasmtime__crossbeam_deque__0_8_2", + url = "https://crates.io/api/v1/crates/crossbeam-deque/0.8.2/download", + type = "tar.gz", + sha256 = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc", + strip_prefix = "crossbeam-deque-0.8.2", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.crossbeam-deque-0.8.2.bazel"), + ) + + maybe( + http_archive, + name = "wasmtime__crossbeam_epoch__0_9_11", + url = "https://crates.io/api/v1/crates/crossbeam-epoch/0.9.11/download", + type = "tar.gz", + sha256 = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348", + strip_prefix = "crossbeam-epoch-0.9.11", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.crossbeam-epoch-0.9.11.bazel"), + ) + + maybe( + http_archive, + name = "wasmtime__crossbeam_utils__0_8_12", + url = "https://crates.io/api/v1/crates/crossbeam-utils/0.8.12/download", + type = "tar.gz", + sha256 = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac", + strip_prefix = "crossbeam-utils-0.8.12", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.crossbeam-utils-0.8.12.bazel"), + ) + maybe( http_archive, name = "wasmtime__either__1_8_0", @@ -463,6 +503,16 @@ def wasmtime_fetch_remote_crates(): build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.memoffset-0.6.5.bazel"), ) + maybe( + http_archive, + name = "wasmtime__num_cpus__1_13_1", + url = "https://crates.io/api/v1/crates/num_cpus/1.13.1/download", + type = "tar.gz", + sha256 = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1", + strip_prefix = "num_cpus-1.13.1", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.num_cpus-1.13.1.bazel"), + ) + maybe( http_archive, name = "wasmtime__object__0_29_0", @@ -565,12 +615,32 @@ def wasmtime_fetch_remote_crates(): maybe( http_archive, - name = "wasmtime__regalloc2__0_3_2", - url = "https://crates.io/api/v1/crates/regalloc2/0.3.2/download", + name = "wasmtime__rayon__1_5_3", + url = "https://crates.io/api/v1/crates/rayon/1.5.3/download", + type = "tar.gz", + sha256 = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d", + strip_prefix = "rayon-1.5.3", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.rayon-1.5.3.bazel"), + ) + + maybe( + http_archive, + name = "wasmtime__rayon_core__1_9_3", + url = "https://crates.io/api/v1/crates/rayon-core/1.9.3/download", type = "tar.gz", - sha256 = "d43a209257d978ef079f3d446331d0f1794f5e0fc19b306a199983857833a779", - strip_prefix = "regalloc2-0.3.2", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.regalloc2-0.3.2.bazel"), + sha256 = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f", + strip_prefix = "rayon-core-1.9.3", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.rayon-core-1.9.3.bazel"), + ) + + maybe( + http_archive, + name = "wasmtime__regalloc2__0_4_1", + url = "https://crates.io/api/v1/crates/regalloc2/0.4.1/download", + type = "tar.gz", + sha256 = "69025b4a161879ba90719837c06621c3d73cffa147a000aeacf458f6a9572485", + strip_prefix = "regalloc2-0.4.1", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.regalloc2-0.4.1.bazel"), ) maybe( @@ -613,6 +683,16 @@ def wasmtime_fetch_remote_crates(): build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.rustix-0.35.12.bazel"), ) + maybe( + http_archive, + name = "wasmtime__scopeguard__1_1_0", + url = "https://crates.io/api/v1/crates/scopeguard/1.1.0/download", + type = "tar.gz", + sha256 = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd", + strip_prefix = "scopeguard-1.1.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.scopeguard-1.1.0.bazel"), + ) + maybe( http_archive, name = "wasmtime__serde__1_0_147", @@ -745,101 +825,101 @@ def wasmtime_fetch_remote_crates(): maybe( http_archive, - name = "wasmtime__wasmparser__0_89_1", - url = "https://crates.io/api/v1/crates/wasmparser/0.89.1/download", + name = "wasmtime__wasmparser__0_92_0", + url = "https://crates.io/api/v1/crates/wasmparser/0.92.0/download", type = "tar.gz", - sha256 = "ab5d3e08b13876f96dd55608d03cd4883a0545884932d5adf11925876c96daef", - strip_prefix = "wasmparser-0.89.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmparser-0.89.1.bazel"), + sha256 = "7da34cec2a8c23db906cdf8b26e988d7a7f0d549eb5d51299129647af61a1b37", + strip_prefix = "wasmparser-0.92.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmparser-0.92.0.bazel"), ) maybe( http_archive, - name = "wasmtime__wasmtime__1_0_1", - url = "https://crates.io/api/v1/crates/wasmtime/1.0.1/download", + name = "wasmtime__wasmtime__2_0_0", + url = "https://crates.io/api/v1/crates/wasmtime/2.0.0/download", type = "tar.gz", - sha256 = "f1f511c4917c83d04da68333921107db75747c4e11a2f654a8e909cc5e0520dc", - strip_prefix = "wasmtime-1.0.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-1.0.1.bazel"), + sha256 = "f5fc5bb3329415030796cfa5530b2481ccef5c4f1e5150733ba94318ab004fe1", + strip_prefix = "wasmtime-2.0.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-2.0.0.bazel"), ) maybe( http_archive, - name = "wasmtime__wasmtime_asm_macros__1_0_1", - url = "https://crates.io/api/v1/crates/wasmtime-asm-macros/1.0.1/download", + name = "wasmtime__wasmtime_asm_macros__2_0_0", + url = "https://crates.io/api/v1/crates/wasmtime-asm-macros/2.0.0/download", type = "tar.gz", - sha256 = "39bf3debfe744bf19dd3732990ce6f8c0ced7439e2370ba4e1d8f5a3660a3178", - strip_prefix = "wasmtime-asm-macros-1.0.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-asm-macros-1.0.1.bazel"), + sha256 = "db36545ff0940ad9bf4e9ab0ec2a4e1eaa5ebe2aa9227bcbc4af905375d9e482", + strip_prefix = "wasmtime-asm-macros-2.0.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-asm-macros-2.0.0.bazel"), ) maybe( new_git_repository, name = "wasmtime__wasmtime_c_api_macros__0_19_0", remote = "https://github.com/bytecodealliance/wasmtime", - commit = "c63087ff668fbdffe326c7b48401acbbf0e82a65", + commit = "ff8c568eeed3918a5d591295e9384e2b1e462aae", build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-c-api-macros-0.19.0.bazel"), init_submodules = True, ) maybe( http_archive, - name = "wasmtime__wasmtime_cranelift__1_0_1", - url = "https://crates.io/api/v1/crates/wasmtime-cranelift/1.0.1/download", + name = "wasmtime__wasmtime_cranelift__2_0_0", + url = "https://crates.io/api/v1/crates/wasmtime-cranelift/2.0.0/download", type = "tar.gz", - sha256 = "058217e28644b012bdcdf0e445f58d496d78c2e0b6a6dd93558e701591dad705", - strip_prefix = "wasmtime-cranelift-1.0.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-cranelift-1.0.1.bazel"), + sha256 = "0409e93b5eceaa4e5f498a4bce1cffc7ebe071d14582b5437c10af4aecc23f54", + strip_prefix = "wasmtime-cranelift-2.0.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-cranelift-2.0.0.bazel"), ) maybe( http_archive, - name = "wasmtime__wasmtime_environ__1_0_1", - url = "https://crates.io/api/v1/crates/wasmtime-environ/1.0.1/download", + name = "wasmtime__wasmtime_environ__2_0_0", + url = "https://crates.io/api/v1/crates/wasmtime-environ/2.0.0/download", type = "tar.gz", - sha256 = "c7af06848df28b7661471d9a80d30a973e0f401f2e3ed5396ad7e225ed217047", - strip_prefix = "wasmtime-environ-1.0.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-environ-1.0.1.bazel"), + sha256 = "55240389c604f68d2e1d2573d7d3740246ab9ea2fa4fe79e10ccd51faf9b9500", + strip_prefix = "wasmtime-environ-2.0.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-environ-2.0.0.bazel"), ) maybe( http_archive, - name = "wasmtime__wasmtime_jit__1_0_1", - url = "https://crates.io/api/v1/crates/wasmtime-jit/1.0.1/download", + name = "wasmtime__wasmtime_jit__2_0_0", + url = "https://crates.io/api/v1/crates/wasmtime-jit/2.0.0/download", type = "tar.gz", - sha256 = "9028fb63a54185b3c192b7500ef8039c7bb8d7f62bfc9e7c258483a33a3d13bb", - strip_prefix = "wasmtime-jit-1.0.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-jit-1.0.1.bazel"), + sha256 = "bc15e285b7073ee566e62ea4b6dd38b80465ade0ea8cd4cee13c7ac2e295cfca", + strip_prefix = "wasmtime-jit-2.0.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-jit-2.0.0.bazel"), ) maybe( http_archive, - name = "wasmtime__wasmtime_jit_debug__1_0_1", - url = "https://crates.io/api/v1/crates/wasmtime-jit-debug/1.0.1/download", + name = "wasmtime__wasmtime_jit_debug__2_0_0", + url = "https://crates.io/api/v1/crates/wasmtime-jit-debug/2.0.0/download", type = "tar.gz", - sha256 = "25e82d4ef93296785de7efca92f7679dc67fe68a13b625a5ecc8d7503b377a37", - strip_prefix = "wasmtime-jit-debug-1.0.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-jit-debug-1.0.1.bazel"), + sha256 = "bee06d206bcf7a875eacd1e1e957c2a63f64a92934d2535dd8e15cde6d3a9ffe", + strip_prefix = "wasmtime-jit-debug-2.0.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-jit-debug-2.0.0.bazel"), ) maybe( http_archive, - name = "wasmtime__wasmtime_runtime__1_0_1", - url = "https://crates.io/api/v1/crates/wasmtime-runtime/1.0.1/download", + name = "wasmtime__wasmtime_runtime__2_0_0", + url = "https://crates.io/api/v1/crates/wasmtime-runtime/2.0.0/download", type = "tar.gz", - sha256 = "9f0e9bea7d517d114fe66b930b2124ee086516ee93eeebfd97f75f366c5b0553", - strip_prefix = "wasmtime-runtime-1.0.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-runtime-1.0.1.bazel"), + sha256 = "9969ff36cbf57f18c2d24679db57d0857ea7cc7d839534afc26ecc8003e9914b", + strip_prefix = "wasmtime-runtime-2.0.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-runtime-2.0.0.bazel"), ) maybe( http_archive, - name = "wasmtime__wasmtime_types__1_0_1", - url = "https://crates.io/api/v1/crates/wasmtime-types/1.0.1/download", + name = "wasmtime__wasmtime_types__2_0_0", + url = "https://crates.io/api/v1/crates/wasmtime-types/2.0.0/download", type = "tar.gz", - sha256 = "69b83e93ed41b8fdc936244cfd5e455480cf1eca1fd60c78a0040038b4ce5075", - strip_prefix = "wasmtime-types-1.0.1", - build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-types-1.0.1.bazel"), + sha256 = "df64c737fc9b3cdf7617bcc65e8b97cb713ceb9c9c58530b20788a8a3482b5d1", + strip_prefix = "wasmtime-types-2.0.0", + build_file = Label("//bazel/cargo/wasmtime/remote:BUILD.wasmtime-types-2.0.0.bazel"), ) maybe( diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-bforest-0.88.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-bforest-0.89.0.bazel similarity index 92% rename from bazel/cargo/wasmtime/remote/BUILD.cranelift-bforest-0.88.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.cranelift-bforest-0.89.0.bazel index 46a1949b8..f827ae914 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-bforest-0.88.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-bforest-0.89.0.bazel @@ -47,9 +47,9 @@ rust_library( "crate-name=cranelift-bforest", "manual", ], - version = "0.88.1", + version = "0.89.0", # buildifier: leave-alone deps = [ - "@wasmtime__cranelift_entity__0_88_1//:cranelift_entity", + "@wasmtime__cranelift_entity__0_89_0//:cranelift_entity", ], ) diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-0.88.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-0.89.0.bazel similarity index 84% rename from bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-0.88.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-0.89.0.bazel index b6c31f175..c4739164f 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-0.88.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-0.89.0.bazel @@ -58,11 +58,11 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.88.1", + version = "0.89.0", visibility = ["//visibility:private"], deps = [ - "@wasmtime__cranelift_codegen_meta__0_88_1//:cranelift_codegen_meta", - "@wasmtime__cranelift_isle__0_88_1//:cranelift_isle", + "@wasmtime__cranelift_codegen_meta__0_89_0//:cranelift_codegen_meta", + "@wasmtime__cranelift_isle__0_89_0//:cranelift_isle", ], ) @@ -88,18 +88,18 @@ rust_library( "crate-name=cranelift-codegen", "manual", ], - version = "0.88.1", + version = "0.89.0", # buildifier: leave-alone deps = [ ":cranelift_codegen_build_script", "@wasmtime__arrayvec__0_7_2//:arrayvec", "@wasmtime__bumpalo__3_11_1//:bumpalo", - "@wasmtime__cranelift_bforest__0_88_1//:cranelift_bforest", - "@wasmtime__cranelift_codegen_shared__0_88_1//:cranelift_codegen_shared", - "@wasmtime__cranelift_entity__0_88_1//:cranelift_entity", + "@wasmtime__cranelift_bforest__0_89_0//:cranelift_bforest", + "@wasmtime__cranelift_codegen_shared__0_89_0//:cranelift_codegen_shared", + "@wasmtime__cranelift_entity__0_89_0//:cranelift_entity", "@wasmtime__gimli__0_26_2//:gimli", "@wasmtime__log__0_4_17//:log", - "@wasmtime__regalloc2__0_3_2//:regalloc2", + "@wasmtime__regalloc2__0_4_1//:regalloc2", "@wasmtime__smallvec__1_10_0//:smallvec", "@wasmtime__target_lexicon__0_12_4//:target_lexicon", ], diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-meta-0.88.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-meta-0.89.0.bazel similarity index 92% rename from bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-meta-0.88.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-meta-0.89.0.bazel index 841e887cc..af4062f00 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-meta-0.88.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-meta-0.89.0.bazel @@ -47,9 +47,9 @@ rust_library( "crate-name=cranelift-codegen-meta", "manual", ], - version = "0.88.1", + version = "0.89.0", # buildifier: leave-alone deps = [ - "@wasmtime__cranelift_codegen_shared__0_88_1//:cranelift_codegen_shared", + "@wasmtime__cranelift_codegen_shared__0_89_0//:cranelift_codegen_shared", ], ) diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-shared-0.88.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-shared-0.89.0.bazel similarity index 97% rename from bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-shared-0.88.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-shared-0.89.0.bazel index a72812ff9..343290887 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-shared-0.88.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-codegen-shared-0.89.0.bazel @@ -47,7 +47,7 @@ rust_library( "crate-name=cranelift-codegen-shared", "manual", ], - version = "0.88.1", + version = "0.89.0", # buildifier: leave-alone deps = [ ], diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-entity-0.88.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-entity-0.89.0.bazel similarity index 97% rename from bazel/cargo/wasmtime/remote/BUILD.cranelift-entity-0.88.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.cranelift-entity-0.89.0.bazel index 68f111f9b..61a9850e9 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-entity-0.88.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-entity-0.89.0.bazel @@ -49,7 +49,7 @@ rust_library( "crate-name=cranelift-entity", "manual", ], - version = "0.88.1", + version = "0.89.0", # buildifier: leave-alone deps = [ "@wasmtime__serde__1_0_147//:serde", diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-frontend-0.88.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-frontend-0.89.0.bazel similarity index 93% rename from bazel/cargo/wasmtime/remote/BUILD.cranelift-frontend-0.88.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.cranelift-frontend-0.89.0.bazel index 5a851151b..804b82d2d 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-frontend-0.88.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-frontend-0.89.0.bazel @@ -49,10 +49,10 @@ rust_library( "crate-name=cranelift-frontend", "manual", ], - version = "0.88.1", + version = "0.89.0", # buildifier: leave-alone deps = [ - "@wasmtime__cranelift_codegen__0_88_1//:cranelift_codegen", + "@wasmtime__cranelift_codegen__0_89_0//:cranelift_codegen", "@wasmtime__log__0_4_17//:log", "@wasmtime__smallvec__1_10_0//:smallvec", "@wasmtime__target_lexicon__0_12_4//:target_lexicon", diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-isle-0.88.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-isle-0.89.0.bazel similarity index 95% rename from bazel/cargo/wasmtime/remote/BUILD.cranelift-isle-0.88.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.cranelift-isle-0.89.0.bazel index db637a955..81b590ec2 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-isle-0.88.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-isle-0.89.0.bazel @@ -55,7 +55,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "0.88.1", + version = "0.89.0", visibility = ["//visibility:private"], deps = [ ], @@ -78,10 +78,11 @@ rust_library( "crate-name=cranelift-isle", "manual", ], - version = "0.88.1", + version = "0.89.0", # buildifier: leave-alone deps = [ ":cranelift_isle_build_script", + "@wasmtime__rayon__1_5_3//:rayon", ], ) diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-native-0.88.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-native-0.89.0.bazel similarity index 94% rename from bazel/cargo/wasmtime/remote/BUILD.cranelift-native-0.88.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.cranelift-native-0.89.0.bazel index f026dceae..b45ab3da2 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-native-0.88.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-native-0.89.0.bazel @@ -51,10 +51,10 @@ rust_library( "crate-name=cranelift-native", "manual", ], - version = "0.88.1", + version = "0.89.0", # buildifier: leave-alone deps = [ - "@wasmtime__cranelift_codegen__0_88_1//:cranelift_codegen", + "@wasmtime__cranelift_codegen__0_89_0//:cranelift_codegen", "@wasmtime__target_lexicon__0_12_4//:target_lexicon", ] + selects.with_or({ # cfg(target_arch = "s390x") diff --git a/bazel/cargo/wasmtime/remote/BUILD.cranelift-wasm-0.88.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.cranelift-wasm-0.89.0.bazel similarity index 79% rename from bazel/cargo/wasmtime/remote/BUILD.cranelift-wasm-0.88.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.cranelift-wasm-0.89.0.bazel index 3f377e198..88f54e925 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.cranelift-wasm-0.88.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.cranelift-wasm-0.89.0.bazel @@ -49,17 +49,17 @@ rust_library( "crate-name=cranelift-wasm", "manual", ], - version = "0.88.1", + version = "0.89.0", # buildifier: leave-alone deps = [ - "@wasmtime__cranelift_codegen__0_88_1//:cranelift_codegen", - "@wasmtime__cranelift_entity__0_88_1//:cranelift_entity", - "@wasmtime__cranelift_frontend__0_88_1//:cranelift_frontend", + "@wasmtime__cranelift_codegen__0_89_0//:cranelift_codegen", + "@wasmtime__cranelift_entity__0_89_0//:cranelift_entity", + "@wasmtime__cranelift_frontend__0_89_0//:cranelift_frontend", "@wasmtime__itertools__0_10_5//:itertools", "@wasmtime__log__0_4_17//:log", "@wasmtime__smallvec__1_10_0//:smallvec", - "@wasmtime__wasmparser__0_89_1//:wasmparser", - "@wasmtime__wasmtime_types__1_0_1//:wasmtime_types", + "@wasmtime__wasmparser__0_92_0//:wasmparser", + "@wasmtime__wasmtime_types__2_0_0//:wasmtime_types", ], ) diff --git a/bazel/cargo/wasmtime/remote/BUILD.crossbeam-channel-0.5.6.bazel b/bazel/cargo/wasmtime/remote/BUILD.crossbeam-channel-0.5.6.bazel new file mode 100644 index 000000000..acc36b2bd --- /dev/null +++ b/bazel/cargo/wasmtime/remote/BUILD.crossbeam-channel-0.5.6.bazel @@ -0,0 +1,95 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//bazel/cargo/wasmtime", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "crossbeam" with type "bench" omitted + +# Unsupported target "fibonacci" with type "example" omitted + +# Unsupported target "matching" with type "example" omitted + +# Unsupported target "stopwatch" with type "example" omitted + +rust_library( + name = "crossbeam_channel", + srcs = glob(["**/*.rs"]), + crate_features = [ + "crossbeam-utils", + "default", + "std", + ], + crate_root = "src/lib.rs", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=crossbeam-channel", + "manual", + ], + version = "0.5.6", + # buildifier: leave-alone + deps = [ + "@wasmtime__cfg_if__1_0_0//:cfg_if", + "@wasmtime__crossbeam_utils__0_8_12//:crossbeam_utils", + ], +) + +# Unsupported target "after" with type "test" omitted + +# Unsupported target "array" with type "test" omitted + +# Unsupported target "golang" with type "test" omitted + +# Unsupported target "iter" with type "test" omitted + +# Unsupported target "list" with type "test" omitted + +# Unsupported target "mpsc" with type "test" omitted + +# Unsupported target "never" with type "test" omitted + +# Unsupported target "ready" with type "test" omitted + +# Unsupported target "same_channel" with type "test" omitted + +# Unsupported target "select" with type "test" omitted + +# Unsupported target "select_macro" with type "test" omitted + +# Unsupported target "thread_locals" with type "test" omitted + +# Unsupported target "tick" with type "test" omitted + +# Unsupported target "zero" with type "test" omitted diff --git a/bazel/cargo/wasmtime/remote/BUILD.crossbeam-deque-0.8.2.bazel b/bazel/cargo/wasmtime/remote/BUILD.crossbeam-deque-0.8.2.bazel new file mode 100644 index 000000000..84628cb82 --- /dev/null +++ b/bazel/cargo/wasmtime/remote/BUILD.crossbeam-deque-0.8.2.bazel @@ -0,0 +1,69 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//bazel/cargo/wasmtime", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +rust_library( + name = "crossbeam_deque", + srcs = glob(["**/*.rs"]), + crate_features = [ + "crossbeam-epoch", + "crossbeam-utils", + "default", + "std", + ], + crate_root = "src/lib.rs", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=crossbeam-deque", + "manual", + ], + version = "0.8.2", + # buildifier: leave-alone + deps = [ + "@wasmtime__cfg_if__1_0_0//:cfg_if", + "@wasmtime__crossbeam_epoch__0_9_11//:crossbeam_epoch", + "@wasmtime__crossbeam_utils__0_8_12//:crossbeam_utils", + ], +) + +# Unsupported target "fifo" with type "test" omitted + +# Unsupported target "injector" with type "test" omitted + +# Unsupported target "lifo" with type "test" omitted + +# Unsupported target "steal" with type "test" omitted diff --git a/bazel/cargo/wasmtime/remote/BUILD.crossbeam-epoch-0.9.11.bazel b/bazel/cargo/wasmtime/remote/BUILD.crossbeam-epoch-0.9.11.bazel new file mode 100644 index 000000000..976b8d026 --- /dev/null +++ b/bazel/cargo/wasmtime/remote/BUILD.crossbeam-epoch-0.9.11.bazel @@ -0,0 +1,103 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//bazel/cargo/wasmtime", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "crossbeam_epoch_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "alloc", + "std", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.9.11", + visibility = ["//visibility:private"], + deps = [ + "@wasmtime__autocfg__1_1_0//:autocfg", + ], +) + +# Unsupported target "defer" with type "bench" omitted + +# Unsupported target "flush" with type "bench" omitted + +# Unsupported target "pin" with type "bench" omitted + +# Unsupported target "sanitize" with type "example" omitted + +rust_library( + name = "crossbeam_epoch", + srcs = glob(["**/*.rs"]), + crate_features = [ + "alloc", + "std", + ], + crate_root = "src/lib.rs", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=crossbeam-epoch", + "manual", + ], + version = "0.9.11", + # buildifier: leave-alone + deps = [ + ":crossbeam_epoch_build_script", + "@wasmtime__cfg_if__1_0_0//:cfg_if", + "@wasmtime__crossbeam_utils__0_8_12//:crossbeam_utils", + "@wasmtime__memoffset__0_6_5//:memoffset", + "@wasmtime__scopeguard__1_1_0//:scopeguard", + ], +) + +# Unsupported target "loom" with type "test" omitted diff --git a/bazel/cargo/wasmtime/remote/BUILD.crossbeam-utils-0.8.12.bazel b/bazel/cargo/wasmtime/remote/BUILD.crossbeam-utils-0.8.12.bazel new file mode 100644 index 000000000..4a6d4c685 --- /dev/null +++ b/bazel/cargo/wasmtime/remote/BUILD.crossbeam-utils-0.8.12.bazel @@ -0,0 +1,103 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//bazel/cargo/wasmtime", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "crossbeam_utils_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + "default", + "std", + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "0.8.12", + visibility = ["//visibility:private"], + deps = [ + ], +) + +# Unsupported target "atomic_cell" with type "bench" omitted + +rust_library( + name = "crossbeam_utils", + srcs = glob(["**/*.rs"]), + crate_features = [ + "default", + "std", + ], + crate_root = "src/lib.rs", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=crossbeam-utils", + "manual", + ], + version = "0.8.12", + # buildifier: leave-alone + deps = [ + ":crossbeam_utils_build_script", + "@wasmtime__cfg_if__1_0_0//:cfg_if", + ], +) + +# Unsupported target "atomic_cell" with type "test" omitted + +# Unsupported target "cache_padded" with type "test" omitted + +# Unsupported target "parker" with type "test" omitted + +# Unsupported target "sharded_lock" with type "test" omitted + +# Unsupported target "thread" with type "test" omitted + +# Unsupported target "wait_group" with type "test" omitted diff --git a/bazel/cargo/wasmtime/remote/BUILD.num_cpus-1.13.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.num_cpus-1.13.1.bazel new file mode 100644 index 000000000..8898207f5 --- /dev/null +++ b/bazel/cargo/wasmtime/remote/BUILD.num_cpus-1.13.1.bazel @@ -0,0 +1,83 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//bazel/cargo/wasmtime", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "values" with type "example" omitted + +rust_library( + name = "num_cpus", + srcs = glob(["**/*.rs"]), + aliases = { + }, + crate_features = [ + ], + crate_root = "src/lib.rs", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=num_cpus", + "manual", + ], + version = "1.13.1", + # buildifier: leave-alone + deps = [ + ] + selects.with_or({ + # cfg(not(windows)) + ( + "@rules_rust//rust/platform:i686-apple-darwin", + "@rules_rust//rust/platform:i686-unknown-linux-gnu", + "@rules_rust//rust/platform:x86_64-apple-darwin", + "@rules_rust//rust/platform:x86_64-unknown-linux-gnu", + "@rules_rust//rust/platform:aarch64-apple-darwin", + "@rules_rust//rust/platform:aarch64-apple-ios", + "@rules_rust//rust/platform:aarch64-linux-android", + "@rules_rust//rust/platform:aarch64-unknown-linux-gnu", + "@rules_rust//rust/platform:arm-unknown-linux-gnueabi", + "@rules_rust//rust/platform:i686-linux-android", + "@rules_rust//rust/platform:i686-unknown-freebsd", + "@rules_rust//rust/platform:powerpc-unknown-linux-gnu", + "@rules_rust//rust/platform:s390x-unknown-linux-gnu", + "@rules_rust//rust/platform:wasm32-unknown-unknown", + "@rules_rust//rust/platform:wasm32-wasi", + "@rules_rust//rust/platform:x86_64-apple-ios", + "@rules_rust//rust/platform:x86_64-linux-android", + "@rules_rust//rust/platform:x86_64-unknown-freebsd", + ): [ + "@wasmtime__libc__0_2_137//:libc", + ], + "//conditions:default": [], + }), +) diff --git a/bazel/cargo/wasmtime/remote/BUILD.rayon-1.5.3.bazel b/bazel/cargo/wasmtime/remote/BUILD.rayon-1.5.3.bazel new file mode 100644 index 000000000..ffc50f2e6 --- /dev/null +++ b/bazel/cargo/wasmtime/remote/BUILD.rayon-1.5.3.bazel @@ -0,0 +1,118 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//bazel/cargo/wasmtime", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "rayon_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.5.3", + visibility = ["//visibility:private"], + deps = [ + "@wasmtime__autocfg__1_1_0//:autocfg", + ], +) + +# Unsupported target "cpu_monitor" with type "example" omitted + +rust_library( + name = "rayon", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=rayon", + "manual", + ], + version = "1.5.3", + # buildifier: leave-alone + deps = [ + ":rayon_build_script", + "@wasmtime__crossbeam_deque__0_8_2//:crossbeam_deque", + "@wasmtime__either__1_8_0//:either", + "@wasmtime__rayon_core__1_9_3//:rayon_core", + ], +) + +# Unsupported target "chars" with type "test" omitted + +# Unsupported target "clones" with type "test" omitted + +# Unsupported target "collect" with type "test" omitted + +# Unsupported target "cross-pool" with type "test" omitted + +# Unsupported target "debug" with type "test" omitted + +# Unsupported target "intersperse" with type "test" omitted + +# Unsupported target "issue671" with type "test" omitted + +# Unsupported target "issue671-unzip" with type "test" omitted + +# Unsupported target "iter_panic" with type "test" omitted + +# Unsupported target "named-threads" with type "test" omitted + +# Unsupported target "octillion" with type "test" omitted + +# Unsupported target "producer_split_at" with type "test" omitted + +# Unsupported target "sort-panic-safe" with type "test" omitted + +# Unsupported target "str" with type "test" omitted diff --git a/bazel/cargo/wasmtime/remote/BUILD.rayon-core-1.9.3.bazel b/bazel/cargo/wasmtime/remote/BUILD.rayon-core-1.9.3.bazel new file mode 100644 index 000000000..3ba1a872d --- /dev/null +++ b/bazel/cargo/wasmtime/remote/BUILD.rayon-core-1.9.3.bazel @@ -0,0 +1,101 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//bazel/cargo/wasmtime", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets +# buildifier: disable=out-of-order-load +# buildifier: disable=load-on-top +load( + "@rules_rust//cargo:cargo_build_script.bzl", + "cargo_build_script", +) + +cargo_build_script( + name = "rayon_core_build_script", + srcs = glob(["**/*.rs"]), + build_script_env = { + }, + crate_features = [ + ], + crate_root = "build.rs", + data = glob(["**"]), + edition = "2018", + links = "rayon-core", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "manual", + ], + version = "1.9.3", + visibility = ["//visibility:private"], + deps = [ + ], +) + +rust_library( + name = "rayon_core", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + data = [], + edition = "2018", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=rayon-core", + "manual", + ], + version = "1.9.3", + # buildifier: leave-alone + deps = [ + ":rayon_core_build_script", + "@wasmtime__crossbeam_channel__0_5_6//:crossbeam_channel", + "@wasmtime__crossbeam_deque__0_8_2//:crossbeam_deque", + "@wasmtime__crossbeam_utils__0_8_12//:crossbeam_utils", + "@wasmtime__num_cpus__1_13_1//:num_cpus", + ], +) + +# Unsupported target "double_init_fail" with type "test" omitted + +# Unsupported target "init_zero_threads" with type "test" omitted + +# Unsupported target "scope_join" with type "test" omitted + +# Unsupported target "scoped_threadpool" with type "test" omitted + +# Unsupported target "simple_panic" with type "test" omitted + +# Unsupported target "stack_overflow_crash" with type "test" omitted diff --git a/bazel/cargo/wasmtime/remote/BUILD.regalloc2-0.3.2.bazel b/bazel/cargo/wasmtime/remote/BUILD.regalloc2-0.4.1.bazel similarity index 98% rename from bazel/cargo/wasmtime/remote/BUILD.regalloc2-0.3.2.bazel rename to bazel/cargo/wasmtime/remote/BUILD.regalloc2-0.4.1.bazel index 54f6a85c1..0ecc1045d 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.regalloc2-0.3.2.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.regalloc2-0.4.1.bazel @@ -49,7 +49,7 @@ rust_library( "crate-name=regalloc2", "manual", ], - version = "0.3.2", + version = "0.4.1", # buildifier: leave-alone deps = [ "@wasmtime__fxhash__0_2_1//:fxhash", diff --git a/bazel/cargo/wasmtime/remote/BUILD.scopeguard-1.1.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.scopeguard-1.1.0.bazel new file mode 100644 index 000000000..7b2581e74 --- /dev/null +++ b/bazel/cargo/wasmtime/remote/BUILD.scopeguard-1.1.0.bazel @@ -0,0 +1,56 @@ +""" +@generated +cargo-raze crate build file. + +DO NOT EDIT! Replaced on runs of cargo-raze +""" + +# buildifier: disable=load +load("@bazel_skylib//lib:selects.bzl", "selects") + +# buildifier: disable=load +load( + "@rules_rust//rust:defs.bzl", + "rust_binary", + "rust_library", + "rust_proc_macro", + "rust_test", +) + +package(default_visibility = [ + # Public for visibility by "@raze__crate__version//" targets. + # + # Prefer access through "//bazel/cargo/wasmtime", which limits external + # visibility to explicit Cargo.toml dependencies. + "//visibility:public", +]) + +licenses([ + "notice", # MIT from expression "MIT OR Apache-2.0" +]) + +# Generated Targets + +# Unsupported target "readme" with type "example" omitted + +rust_library( + name = "scopeguard", + srcs = glob(["**/*.rs"]), + crate_features = [ + ], + crate_root = "src/lib.rs", + data = [], + edition = "2015", + rustc_flags = [ + "--cap-lints=allow", + ], + tags = [ + "cargo-raze", + "crate-name=scopeguard", + "manual", + ], + version = "1.1.0", + # buildifier: leave-alone + deps = [ + ], +) diff --git a/bazel/cargo/wasmtime/remote/BUILD.smallvec-1.10.0.bazel b/bazel/cargo/wasmtime/remote/BUILD.smallvec-1.10.0.bazel index 66f5032e4..a5ff1f07e 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.smallvec-1.10.0.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.smallvec-1.10.0.bazel @@ -37,6 +37,7 @@ rust_library( name = "smallvec", srcs = glob(["**/*.rs"]), crate_features = [ + "union", ], crate_root = "src/lib.rs", data = [], diff --git a/bazel/cargo/wasmtime/remote/BUILD.target-lexicon-0.12.4.bazel b/bazel/cargo/wasmtime/remote/BUILD.target-lexicon-0.12.4.bazel index e617fce82..b8857c7fc 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.target-lexicon-0.12.4.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.target-lexicon-0.12.4.bazel @@ -43,7 +43,6 @@ cargo_build_script( build_script_env = { }, crate_features = [ - "default", ], crate_root = "build.rs", data = glob(["**"]), @@ -69,7 +68,6 @@ rust_library( name = "target_lexicon", srcs = glob(["**/*.rs"]), crate_features = [ - "default", ], crate_root = "src/lib.rs", data = [], diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmparser-0.89.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmparser-0.92.0.bazel similarity index 98% rename from bazel/cargo/wasmtime/remote/BUILD.wasmparser-0.89.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.wasmparser-0.92.0.bazel index 4e5a56f14..d38aad0af 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmparser-0.89.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmparser-0.92.0.bazel @@ -51,7 +51,7 @@ rust_library( "crate-name=wasmparser", "manual", ], - version = "0.89.1", + version = "0.92.0", # buildifier: leave-alone deps = [ "@wasmtime__indexmap__1_9_1//:indexmap", diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-1.0.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-2.0.0.bazel similarity index 89% rename from bazel/cargo/wasmtime/remote/BUILD.wasmtime-1.0.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.wasmtime-2.0.0.bazel index 4f1ffad3c..249f642a1 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-1.0.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-2.0.0.bazel @@ -55,7 +55,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.1", + version = "2.0.0", visibility = ["//visibility:private"], deps = [ ] + selects.with_or({ @@ -92,7 +92,7 @@ rust_library( "crate-name=wasmtime", "manual", ], - version = "1.0.1", + version = "2.0.0", # buildifier: leave-alone deps = [ ":wasmtime_build_script", @@ -107,11 +107,11 @@ rust_library( "@wasmtime__psm__0_1_21//:psm", "@wasmtime__serde__1_0_147//:serde", "@wasmtime__target_lexicon__0_12_4//:target_lexicon", - "@wasmtime__wasmparser__0_89_1//:wasmparser", - "@wasmtime__wasmtime_cranelift__1_0_1//:wasmtime_cranelift", - "@wasmtime__wasmtime_environ__1_0_1//:wasmtime_environ", - "@wasmtime__wasmtime_jit__1_0_1//:wasmtime_jit", - "@wasmtime__wasmtime_runtime__1_0_1//:wasmtime_runtime", + "@wasmtime__wasmparser__0_92_0//:wasmparser", + "@wasmtime__wasmtime_cranelift__2_0_0//:wasmtime_cranelift", + "@wasmtime__wasmtime_environ__2_0_0//:wasmtime_environ", + "@wasmtime__wasmtime_jit__2_0_0//:wasmtime_jit", + "@wasmtime__wasmtime_runtime__2_0_0//:wasmtime_runtime", ] + selects.with_or({ # cfg(target_os = "windows") ( diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-asm-macros-1.0.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-asm-macros-2.0.0.bazel similarity index 97% rename from bazel/cargo/wasmtime/remote/BUILD.wasmtime-asm-macros-1.0.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.wasmtime-asm-macros-2.0.0.bazel index 4bfabe328..3323015dd 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-asm-macros-1.0.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-asm-macros-2.0.0.bazel @@ -47,7 +47,7 @@ rust_library( "crate-name=wasmtime-asm-macros", "manual", ], - version = "1.0.1", + version = "2.0.0", # buildifier: leave-alone deps = [ "@wasmtime__cfg_if__1_0_0//:cfg_if", diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-cranelift-1.0.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-cranelift-2.0.0.bazel similarity index 74% rename from bazel/cargo/wasmtime/remote/BUILD.wasmtime-cranelift-1.0.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.wasmtime-cranelift-2.0.0.bazel index c256f9b4d..c9ac3cdc8 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-cranelift-1.0.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-cranelift-2.0.0.bazel @@ -47,21 +47,21 @@ rust_library( "crate-name=wasmtime-cranelift", "manual", ], - version = "1.0.1", + version = "2.0.0", # buildifier: leave-alone deps = [ "@wasmtime__anyhow__1_0_66//:anyhow", - "@wasmtime__cranelift_codegen__0_88_1//:cranelift_codegen", - "@wasmtime__cranelift_entity__0_88_1//:cranelift_entity", - "@wasmtime__cranelift_frontend__0_88_1//:cranelift_frontend", - "@wasmtime__cranelift_native__0_88_1//:cranelift_native", - "@wasmtime__cranelift_wasm__0_88_1//:cranelift_wasm", + "@wasmtime__cranelift_codegen__0_89_0//:cranelift_codegen", + "@wasmtime__cranelift_entity__0_89_0//:cranelift_entity", + "@wasmtime__cranelift_frontend__0_89_0//:cranelift_frontend", + "@wasmtime__cranelift_native__0_89_0//:cranelift_native", + "@wasmtime__cranelift_wasm__0_89_0//:cranelift_wasm", "@wasmtime__gimli__0_26_2//:gimli", "@wasmtime__log__0_4_17//:log", "@wasmtime__object__0_29_0//:object", "@wasmtime__target_lexicon__0_12_4//:target_lexicon", "@wasmtime__thiserror__1_0_37//:thiserror", - "@wasmtime__wasmparser__0_89_1//:wasmparser", - "@wasmtime__wasmtime_environ__1_0_1//:wasmtime_environ", + "@wasmtime__wasmparser__0_92_0//:wasmparser", + "@wasmtime__wasmtime_environ__2_0_0//:wasmtime_environ", ], ) diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-environ-1.0.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-environ-2.0.0.bazel similarity index 88% rename from bazel/cargo/wasmtime/remote/BUILD.wasmtime-environ-1.0.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.wasmtime-environ-2.0.0.bazel index e1d4a419f..71d5f5afd 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-environ-1.0.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-environ-2.0.0.bazel @@ -49,11 +49,11 @@ rust_library( "crate-name=wasmtime-environ", "manual", ], - version = "1.0.1", + version = "2.0.0", # buildifier: leave-alone deps = [ "@wasmtime__anyhow__1_0_66//:anyhow", - "@wasmtime__cranelift_entity__0_88_1//:cranelift_entity", + "@wasmtime__cranelift_entity__0_89_0//:cranelift_entity", "@wasmtime__gimli__0_26_2//:gimli", "@wasmtime__indexmap__1_9_1//:indexmap", "@wasmtime__log__0_4_17//:log", @@ -61,7 +61,7 @@ rust_library( "@wasmtime__serde__1_0_147//:serde", "@wasmtime__target_lexicon__0_12_4//:target_lexicon", "@wasmtime__thiserror__1_0_37//:thiserror", - "@wasmtime__wasmparser__0_89_1//:wasmparser", - "@wasmtime__wasmtime_types__1_0_1//:wasmtime_types", + "@wasmtime__wasmparser__0_92_0//:wasmparser", + "@wasmtime__wasmtime_types__2_0_0//:wasmtime_types", ], ) diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-1.0.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-2.0.0.bazel similarity index 94% rename from bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-1.0.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-2.0.0.bazel index 5090f08d7..62c01e9ae 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-1.0.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-2.0.0.bazel @@ -49,7 +49,7 @@ rust_library( "crate-name=wasmtime-jit", "manual", ], - version = "1.0.1", + version = "2.0.0", # buildifier: leave-alone deps = [ "@wasmtime__addr2line__0_17_0//:addr2line", @@ -64,8 +64,8 @@ rust_library( "@wasmtime__serde__1_0_147//:serde", "@wasmtime__target_lexicon__0_12_4//:target_lexicon", "@wasmtime__thiserror__1_0_37//:thiserror", - "@wasmtime__wasmtime_environ__1_0_1//:wasmtime_environ", - "@wasmtime__wasmtime_runtime__1_0_1//:wasmtime_runtime", + "@wasmtime__wasmtime_environ__2_0_0//:wasmtime_environ", + "@wasmtime__wasmtime_runtime__2_0_0//:wasmtime_runtime", ] + selects.with_or({ # cfg(target_os = "linux") ( diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-debug-1.0.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-debug-2.0.0.bazel similarity index 98% rename from bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-debug-1.0.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-debug-2.0.0.bazel index 083ccc090..8e94de7da 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-debug-1.0.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-jit-debug-2.0.0.bazel @@ -49,7 +49,7 @@ rust_library( "crate-name=wasmtime-jit-debug", "manual", ], - version = "1.0.1", + version = "2.0.0", # buildifier: leave-alone deps = [ "@wasmtime__once_cell__1_15_0//:once_cell", diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-runtime-1.0.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-runtime-2.0.0.bazel similarity index 96% rename from bazel/cargo/wasmtime/remote/BUILD.wasmtime-runtime-1.0.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.wasmtime-runtime-2.0.0.bazel index 622c36567..290a50237 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-runtime-1.0.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-runtime-2.0.0.bazel @@ -54,7 +54,7 @@ cargo_build_script( "cargo-raze", "manual", ], - version = "1.0.1", + version = "2.0.0", visibility = ["//visibility:private"], deps = [ "@wasmtime__cc__1_0_73//:cc", @@ -122,7 +122,7 @@ rust_library( "crate-name=wasmtime-runtime", "manual", ], - version = "1.0.1", + version = "2.0.0", # buildifier: leave-alone deps = [ ":wasmtime_runtime_build_script", @@ -134,9 +134,9 @@ rust_library( "@wasmtime__memoffset__0_6_5//:memoffset", "@wasmtime__rand__0_8_5//:rand", "@wasmtime__thiserror__1_0_37//:thiserror", - "@wasmtime__wasmtime_asm_macros__1_0_1//:wasmtime_asm_macros", - "@wasmtime__wasmtime_environ__1_0_1//:wasmtime_environ", - "@wasmtime__wasmtime_jit_debug__1_0_1//:wasmtime_jit_debug", + "@wasmtime__wasmtime_asm_macros__2_0_0//:wasmtime_asm_macros", + "@wasmtime__wasmtime_environ__2_0_0//:wasmtime_environ", + "@wasmtime__wasmtime_jit_debug__2_0_0//:wasmtime_jit_debug", ] + selects.with_or({ # cfg(target_os = "macos") ( diff --git a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-types-1.0.1.bazel b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-types-2.0.0.bazel similarity index 89% rename from bazel/cargo/wasmtime/remote/BUILD.wasmtime-types-1.0.1.bazel rename to bazel/cargo/wasmtime/remote/BUILD.wasmtime-types-2.0.0.bazel index 126c01c6f..862142e98 100644 --- a/bazel/cargo/wasmtime/remote/BUILD.wasmtime-types-1.0.1.bazel +++ b/bazel/cargo/wasmtime/remote/BUILD.wasmtime-types-2.0.0.bazel @@ -47,12 +47,12 @@ rust_library( "crate-name=wasmtime-types", "manual", ], - version = "1.0.1", + version = "2.0.0", # buildifier: leave-alone deps = [ - "@wasmtime__cranelift_entity__0_88_1//:cranelift_entity", + "@wasmtime__cranelift_entity__0_89_0//:cranelift_entity", "@wasmtime__serde__1_0_147//:serde", "@wasmtime__thiserror__1_0_37//:thiserror", - "@wasmtime__wasmparser__0_89_1//:wasmparser", + "@wasmtime__wasmparser__0_92_0//:wasmparser", ], ) diff --git a/bazel/repositories.bzl b/bazel/repositories.bzl index 15032f40b..2d5bb9e1a 100644 --- a/bazel/repositories.bzl +++ b/bazel/repositories.bzl @@ -192,9 +192,9 @@ def proxy_wasm_cpp_host_repositories(): http_archive, name = "com_github_bytecodealliance_wasmtime", build_file = "@proxy_wasm_cpp_host//bazel/external:wasmtime.BUILD", - sha256 = "41e8d4916229f613e647bd20b6c1def0d04719c2bc0534bc29e3ba0cac317200", - strip_prefix = "wasmtime-1.0.1", - url = "https://github.com/bytecodealliance/wasmtime/archive/v1.0.1.tar.gz", + sha256 = "5c1b721614196865a949c612851401073ef6aed9820172113c935e48ac6bcd62", + strip_prefix = "wasmtime-2.0.0", + url = "https://github.com/bytecodealliance/wasmtime/archive/v2.0.0.tar.gz", ) maybe(