diff --git a/extensions/wasm_bindgen/3rdparty/BUILD.bazel b/extensions/wasm_bindgen/3rdparty/BUILD.bazel index c096228261..7981723da6 100644 --- a/extensions/wasm_bindgen/3rdparty/BUILD.bazel +++ b/extensions/wasm_bindgen/3rdparty/BUILD.bazel @@ -27,20 +27,22 @@ crates_vendor( )], }, cargo_lockfile = "Cargo.Bazel.lock", - manifests = ["@rules_rust_wasm_bindgen_deps_cli//:Cargo.toml"], + manifests = ["@rules_rust_wasm_bindgen_cli//:Cargo.toml"], mode = "remote", packages = { "wasm-bindgen": crate.spec( version = WASM_BINDGEN_VERSION, ), }, - repository_name = "rules_rust_wasm_bindgen_deps", + # Shorten the repository name to avoid MAX_PATH issues on Windows + # `rules_rust_wasm_bindgen_deps` == `rrwbd` + repository_name = "rrwbd", tags = ["manual"], ) alias( name = "wasm_bindgen_cli", - actual = "@rules_rust_wasm_bindgen_deps_cli", + actual = "@rules_rust_wasm_bindgen_cli", tags = ["manual"], visibility = ["//visibility:public"], ) diff --git a/extensions/wasm_bindgen/3rdparty/BUILD.wasm-bindgen-cli.bazel b/extensions/wasm_bindgen/3rdparty/BUILD.wasm-bindgen-cli.bazel index 51acab89b9..93617e4c4f 100644 --- a/extensions/wasm_bindgen/3rdparty/BUILD.wasm-bindgen-cli.bazel +++ b/extensions/wasm_bindgen/3rdparty/BUILD.wasm-bindgen-cli.bazel @@ -29,7 +29,7 @@ rust_binary( ) alias( - name = "rules_rust_wasm_bindgen_deps_cli", + name = "rules_rust_wasm_bindgen_cli", actual = ":wasm-bindgen-cli", tags = ["manual"], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.aho-corasick-1.0.2.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.aho-corasick-1.0.2.bazel index 78e6f92be5..70eb212f84 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.aho-corasick-1.0.2.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.aho-corasick-1.0.2.bazel @@ -84,6 +84,6 @@ rust_library( }), version = "1.0.2", deps = [ - "@rules_rust_wasm_bindgen_deps__memchr-2.5.0//:memchr", + "@rrwbd__memchr-2.5.0//:memchr", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.alloc-stdlib-0.2.2.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.alloc-stdlib-0.2.2.bazel index e642d2c9fd..fbc932abce 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.alloc-stdlib-0.2.2.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.alloc-stdlib-0.2.2.bazel @@ -79,6 +79,6 @@ rust_library( }), version = "0.2.2", deps = [ - "@rules_rust_wasm_bindgen_deps__alloc-no-stdlib-2.0.4//:alloc_no_stdlib", + "@rrwbd__alloc-no-stdlib-2.0.4//:alloc_no_stdlib", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.android_system_properties-0.1.5.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.android_system_properties-0.1.5.bazel index 23e5a1a6b4..e11f334c86 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.android_system_properties-0.1.5.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.android_system_properties-0.1.5.bazel @@ -79,6 +79,6 @@ rust_library( }), version = "0.1.5", deps = [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", + "@rrwbd__libc-0.2.150//:libc", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.anyhow-1.0.71.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.anyhow-1.0.71.bazel index 4cbfd22bc5..f81b164673 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.anyhow-1.0.71.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.anyhow-1.0.71.bazel @@ -84,7 +84,7 @@ rust_library( }), version = "1.0.71", deps = [ - "@rules_rust_wasm_bindgen_deps__anyhow-1.0.71//:build_script_build", + "@rrwbd__anyhow-1.0.71//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.assert_cmd-1.0.8.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.assert_cmd-1.0.8.bazel index c35567f65d..167e45ca95 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.assert_cmd-1.0.8.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.assert_cmd-1.0.8.bazel @@ -79,11 +79,11 @@ rust_library( }), version = "1.0.8", deps = [ - "@rules_rust_wasm_bindgen_deps__bstr-0.2.17//:bstr", - "@rules_rust_wasm_bindgen_deps__doc-comment-0.3.3//:doc_comment", - "@rules_rust_wasm_bindgen_deps__predicates-2.1.5//:predicates", - "@rules_rust_wasm_bindgen_deps__predicates-core-1.0.6//:predicates_core", - "@rules_rust_wasm_bindgen_deps__predicates-tree-1.0.9//:predicates_tree", - "@rules_rust_wasm_bindgen_deps__wait-timeout-0.2.0//:wait_timeout", + "@rrwbd__bstr-0.2.17//:bstr", + "@rrwbd__doc-comment-0.3.3//:doc_comment", + "@rrwbd__predicates-2.1.5//:predicates", + "@rrwbd__predicates-core-1.0.6//:predicates_core", + "@rrwbd__predicates-tree-1.0.9//:predicates_tree", + "@rrwbd__wait-timeout-0.2.0//:wait_timeout", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.atty-0.2.14.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.atty-0.2.14.bazel index b0a4283a4f..42280c138b 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.atty-0.2.14.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.atty-0.2.14.bazel @@ -80,85 +80,85 @@ rust_library( version = "0.2.14", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-0.3.9//:winapi", # cfg(windows) + "@rrwbd__winapi-0.3.9//:winapi", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-0.3.9//:winapi", # cfg(windows) + "@rrwbd__winapi-0.3.9//:winapi", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-0.3.9//:winapi", # cfg(windows) + "@rrwbd__winapi-0.3.9//:winapi", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.bazel index 6949c3e8a3..83442eba52 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.bazel @@ -33,120 +33,120 @@ filegroup( # Workspace Member Dependencies alias( name = "anyhow", - actual = "@rules_rust_wasm_bindgen_deps__anyhow-1.0.71//:anyhow", + actual = "@rrwbd__anyhow-1.0.71//:anyhow", tags = ["manual"], ) alias( name = "assert_cmd", - actual = "@rules_rust_wasm_bindgen_deps__assert_cmd-1.0.8//:assert_cmd", + actual = "@rrwbd__assert_cmd-1.0.8//:assert_cmd", tags = ["manual"], ) alias( name = "diff", - actual = "@rules_rust_wasm_bindgen_deps__diff-0.1.13//:diff", + actual = "@rrwbd__diff-0.1.13//:diff", tags = ["manual"], ) alias( name = "docopt", - actual = "@rules_rust_wasm_bindgen_deps__docopt-1.1.1//:docopt", + actual = "@rrwbd__docopt-1.1.1//:docopt", tags = ["manual"], ) alias( name = "env_logger", - actual = "@rules_rust_wasm_bindgen_deps__env_logger-0.8.4//:env_logger", + actual = "@rrwbd__env_logger-0.8.4//:env_logger", tags = ["manual"], ) alias( name = "log", - actual = "@rules_rust_wasm_bindgen_deps__log-0.4.19//:log", + actual = "@rrwbd__log-0.4.19//:log", tags = ["manual"], ) alias( name = "predicates", - actual = "@rules_rust_wasm_bindgen_deps__predicates-1.0.8//:predicates", + actual = "@rrwbd__predicates-1.0.8//:predicates", tags = ["manual"], ) alias( name = "rayon", - actual = "@rules_rust_wasm_bindgen_deps__rayon-1.7.0//:rayon", + actual = "@rrwbd__rayon-1.7.0//:rayon", tags = ["manual"], ) alias( name = "rouille", - actual = "@rules_rust_wasm_bindgen_deps__rouille-3.6.2//:rouille", + actual = "@rrwbd__rouille-3.6.2//:rouille", tags = ["manual"], ) alias( name = "serde", - actual = "@rules_rust_wasm_bindgen_deps__serde-1.0.171//:serde", + actual = "@rrwbd__serde-1.0.171//:serde", tags = ["manual"], ) alias( name = "serde_derive", - actual = "@rules_rust_wasm_bindgen_deps__serde_derive-1.0.171//:serde_derive", + actual = "@rrwbd__serde_derive-1.0.171//:serde_derive", tags = ["manual"], ) alias( name = "serde_json", - actual = "@rules_rust_wasm_bindgen_deps__serde_json-1.0.102//:serde_json", + actual = "@rrwbd__serde_json-1.0.102//:serde_json", tags = ["manual"], ) alias( name = "tempfile", - actual = "@rules_rust_wasm_bindgen_deps__tempfile-3.6.0//:tempfile", + actual = "@rrwbd__tempfile-3.6.0//:tempfile", tags = ["manual"], ) alias( name = "ureq", - actual = "@rules_rust_wasm_bindgen_deps__ureq-2.8.0//:ureq", + actual = "@rrwbd__ureq-2.8.0//:ureq", tags = ["manual"], ) alias( name = "walrus", - actual = "@rules_rust_wasm_bindgen_deps__walrus-0.20.3//:walrus", + actual = "@rrwbd__walrus-0.20.3//:walrus", tags = ["manual"], ) alias( name = "wasm-bindgen", - actual = "@rules_rust_wasm_bindgen_deps__wasm-bindgen-0.2.92//:wasm_bindgen", + actual = "@rrwbd__wasm-bindgen-0.2.92//:wasm_bindgen", tags = ["manual"], ) alias( name = "wasm-bindgen-cli-support", - actual = "@rules_rust_wasm_bindgen_deps__wasm-bindgen-cli-support-0.2.92//:wasm_bindgen_cli_support", + actual = "@rrwbd__wasm-bindgen-cli-support-0.2.92//:wasm_bindgen_cli_support", tags = ["manual"], ) alias( name = "wasm-bindgen-shared", - actual = "@rules_rust_wasm_bindgen_deps__wasm-bindgen-shared-0.2.92//:wasm_bindgen_shared", + actual = "@rrwbd__wasm-bindgen-shared-0.2.92//:wasm_bindgen_shared", tags = ["manual"], ) alias( name = "wasmparser", - actual = "@rules_rust_wasm_bindgen_deps__wasmparser-0.102.0//:wasmparser", + actual = "@rrwbd__wasmparser-0.102.0//:wasmparser", tags = ["manual"], ) alias( name = "wasmprinter", - actual = "@rules_rust_wasm_bindgen_deps__wasmprinter-0.2.60//:wasmprinter", + actual = "@rrwbd__wasmprinter-0.2.60//:wasmprinter", tags = ["manual"], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.brotli-decompressor-2.5.1.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.brotli-decompressor-2.5.1.bazel index a11f7adfe9..b3fffdba2f 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.brotli-decompressor-2.5.1.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.brotli-decompressor-2.5.1.bazel @@ -84,7 +84,7 @@ rust_library( }), version = "2.5.1", deps = [ - "@rules_rust_wasm_bindgen_deps__alloc-no-stdlib-2.0.4//:alloc_no_stdlib", - "@rules_rust_wasm_bindgen_deps__alloc-stdlib-0.2.2//:alloc_stdlib", + "@rrwbd__alloc-no-stdlib-2.0.4//:alloc_no_stdlib", + "@rrwbd__alloc-stdlib-0.2.2//:alloc_stdlib", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.bstr-0.2.17.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.bstr-0.2.17.bazel index a440db7de7..56947d2a72 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.bstr-0.2.17.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.bstr-0.2.17.bazel @@ -86,8 +86,8 @@ rust_library( }), version = "0.2.17", deps = [ - "@rules_rust_wasm_bindgen_deps__lazy_static-1.4.0//:lazy_static", - "@rules_rust_wasm_bindgen_deps__memchr-2.5.0//:memchr", - "@rules_rust_wasm_bindgen_deps__regex-automata-0.1.10//:regex_automata", + "@rrwbd__lazy_static-1.4.0//:lazy_static", + "@rrwbd__memchr-2.5.0//:memchr", + "@rrwbd__regex-automata-0.1.10//:regex_automata", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.buf_redux-0.8.4.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.buf_redux-0.8.4.bazel index c128430599..8528af6dd0 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.buf_redux-0.8.4.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.buf_redux-0.8.4.bazel @@ -79,7 +79,7 @@ rust_library( }), version = "0.8.4", deps = [ - "@rules_rust_wasm_bindgen_deps__memchr-2.5.0//:memchr", - "@rules_rust_wasm_bindgen_deps__safemem-0.3.3//:safemem", + "@rrwbd__memchr-2.5.0//:memchr", + "@rrwbd__safemem-0.3.3//:safemem", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.cc-1.0.83.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.cc-1.0.83.bazel index 299e88d4aa..782dd1c51e 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.cc-1.0.83.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.cc-1.0.83.bazel @@ -80,76 +80,76 @@ rust_library( version = "1.0.83", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.chrono-0.4.26.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.chrono-0.4.26.bazel index d302cdceb8..763ee381f1 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.chrono-0.4.26.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.chrono-0.4.26.bazel @@ -85,92 +85,92 @@ rust_library( }), version = "0.4.26", deps = [ - "@rules_rust_wasm_bindgen_deps__num-traits-0.2.15//:num_traits", + "@rrwbd__num-traits-0.2.15//:num_traits", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-apple-darwin + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-apple-darwin ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-apple-ios + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-apple-ios ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-apple-ios-sim + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-apple-ios-sim ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android") - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-linux-android + "@rrwbd__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android") + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-linux-android ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-0.3.9//:winapi", # aarch64-pc-windows-msvc + "@rrwbd__winapi-0.3.9//:winapi", # aarch64-pc-windows-msvc ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-unknown-fuchsia + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-unknown-fuchsia ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-unknown-linux-gnu + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-unknown-linux-gnu ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-unknown-nto-qnx710 + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # aarch64-unknown-nto-qnx710 ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # arm-unknown-linux-gnueabi + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # arm-unknown-linux-gnueabi ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android") - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # armv7-linux-androideabi + "@rrwbd__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android") + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # armv7-linux-androideabi ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # armv7-unknown-linux-gnueabi + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # armv7-unknown-linux-gnueabi ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # i686-apple-darwin + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # i686-apple-darwin ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android") - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # i686-linux-android + "@rrwbd__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android") + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # i686-linux-android ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-0.3.9//:winapi", # i686-pc-windows-msvc + "@rrwbd__winapi-0.3.9//:winapi", # i686-pc-windows-msvc ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # i686-unknown-freebsd + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # i686-unknown-freebsd ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # i686-unknown-linux-gnu + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # i686-unknown-linux-gnu ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # powerpc-unknown-linux-gnu + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # powerpc-unknown-linux-gnu ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # s390x-unknown-linux-gnu + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # s390x-unknown-linux-gnu ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-apple-darwin + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-apple-darwin ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-apple-ios + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-apple-ios ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android") - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-linux-android + "@rrwbd__android-tzdata-0.1.1//:android_tzdata", # cfg(target_os = "android") + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-linux-android ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-0.3.9//:winapi", # x86_64-pc-windows-msvc + "@rrwbd__winapi-0.3.9//:winapi", # x86_64-pc-windows-msvc ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-unknown-freebsd + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-unknown-freebsd ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-unknown-fuchsia + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-unknown-fuchsia ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-unknown-linux-gnu + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-unknown-linux-gnu ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + "@rrwbd__iana-time-zone-0.1.57//:iana_time_zone", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel index e81edf8a05..cf5474b82f 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.crc32fast-1.3.2.bazel @@ -84,8 +84,8 @@ rust_library( }), version = "1.3.2", deps = [ - "@rules_rust_wasm_bindgen_deps__cfg-if-1.0.0//:cfg_if", - "@rules_rust_wasm_bindgen_deps__crc32fast-1.3.2//:build_script_build", + "@rrwbd__cfg-if-1.0.0//:cfg_if", + "@rrwbd__crc32fast-1.3.2//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-channel-0.5.8.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-channel-0.5.8.bazel index ec28201aea..f291d6d688 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-channel-0.5.8.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-channel-0.5.8.bazel @@ -84,7 +84,7 @@ rust_library( }), version = "0.5.8", deps = [ - "@rules_rust_wasm_bindgen_deps__cfg-if-1.0.0//:cfg_if", - "@rules_rust_wasm_bindgen_deps__crossbeam-utils-0.8.16//:crossbeam_utils", + "@rrwbd__cfg-if-1.0.0//:cfg_if", + "@rrwbd__crossbeam-utils-0.8.16//:crossbeam_utils", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-deque-0.8.3.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-deque-0.8.3.bazel index 07c53fe70e..d0e574bc14 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-deque-0.8.3.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-deque-0.8.3.bazel @@ -85,8 +85,8 @@ rust_library( }), version = "0.8.3", deps = [ - "@rules_rust_wasm_bindgen_deps__cfg-if-1.0.0//:cfg_if", - "@rules_rust_wasm_bindgen_deps__crossbeam-epoch-0.9.15//:crossbeam_epoch", - "@rules_rust_wasm_bindgen_deps__crossbeam-utils-0.8.16//:crossbeam_utils", + "@rrwbd__cfg-if-1.0.0//:cfg_if", + "@rrwbd__crossbeam-epoch-0.9.15//:crossbeam_epoch", + "@rrwbd__crossbeam-utils-0.8.16//:crossbeam_utils", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel index 5b2ab969a3..a1884fdc82 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-epoch-0.9.15.bazel @@ -84,11 +84,11 @@ rust_library( }), version = "0.9.15", deps = [ - "@rules_rust_wasm_bindgen_deps__cfg-if-1.0.0//:cfg_if", - "@rules_rust_wasm_bindgen_deps__crossbeam-epoch-0.9.15//:build_script_build", - "@rules_rust_wasm_bindgen_deps__crossbeam-utils-0.8.16//:crossbeam_utils", - "@rules_rust_wasm_bindgen_deps__memoffset-0.9.0//:memoffset", - "@rules_rust_wasm_bindgen_deps__scopeguard-1.1.0//:scopeguard", + "@rrwbd__cfg-if-1.0.0//:cfg_if", + "@rrwbd__crossbeam-epoch-0.9.15//:build_script_build", + "@rrwbd__crossbeam-utils-0.8.16//:crossbeam_utils", + "@rrwbd__memoffset-0.9.0//:memoffset", + "@rrwbd__scopeguard-1.1.0//:scopeguard", ], ) @@ -144,7 +144,7 @@ cargo_build_script( version = "0.9.15", visibility = ["//visibility:private"], deps = [ - "@rules_rust_wasm_bindgen_deps__autocfg-1.1.0//:autocfg", + "@rrwbd__autocfg-1.1.0//:autocfg", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel index 81fb44fecb..eadce118ad 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.crossbeam-utils-0.8.16.bazel @@ -84,8 +84,8 @@ rust_library( }), version = "0.8.16", deps = [ - "@rules_rust_wasm_bindgen_deps__cfg-if-1.0.0//:cfg_if", - "@rules_rust_wasm_bindgen_deps__crossbeam-utils-0.8.16//:build_script_build", + "@rrwbd__cfg-if-1.0.0//:cfg_if", + "@rrwbd__crossbeam-utils-0.8.16//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.doc-comment-0.3.3.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.doc-comment-0.3.3.bazel index 3a56b816fa..da7ebe2463 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.doc-comment-0.3.3.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.doc-comment-0.3.3.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.3.3", deps = [ - "@rules_rust_wasm_bindgen_deps__doc-comment-0.3.3//:build_script_build", + "@rrwbd__doc-comment-0.3.3//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.docopt-1.1.1.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.docopt-1.1.1.bazel index bf9a0f2375..342724b68c 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.docopt-1.1.1.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.docopt-1.1.1.bazel @@ -79,9 +79,9 @@ rust_library( }), version = "1.1.1", deps = [ - "@rules_rust_wasm_bindgen_deps__lazy_static-1.4.0//:lazy_static", - "@rules_rust_wasm_bindgen_deps__regex-1.9.1//:regex", - "@rules_rust_wasm_bindgen_deps__serde-1.0.171//:serde", - "@rules_rust_wasm_bindgen_deps__strsim-0.10.0//:strsim", + "@rrwbd__lazy_static-1.4.0//:lazy_static", + "@rrwbd__regex-1.9.1//:regex", + "@rrwbd__serde-1.0.171//:serde", + "@rrwbd__strsim-0.10.0//:strsim", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.env_logger-0.8.4.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.env_logger-0.8.4.bazel index 5df40a662a..516b675b98 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.env_logger-0.8.4.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.env_logger-0.8.4.bazel @@ -86,10 +86,10 @@ rust_library( }), version = "0.8.4", deps = [ - "@rules_rust_wasm_bindgen_deps__atty-0.2.14//:atty", - "@rules_rust_wasm_bindgen_deps__humantime-2.1.0//:humantime", - "@rules_rust_wasm_bindgen_deps__log-0.4.19//:log", - "@rules_rust_wasm_bindgen_deps__regex-1.9.1//:regex", - "@rules_rust_wasm_bindgen_deps__termcolor-1.2.0//:termcolor", + "@rrwbd__atty-0.2.14//:atty", + "@rrwbd__humantime-2.1.0//:humantime", + "@rrwbd__log-0.4.19//:log", + "@rrwbd__regex-1.9.1//:regex", + "@rrwbd__termcolor-1.2.0//:termcolor", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.errno-0.3.1.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.errno-0.3.1.bazel index 37c903962c..75991e8c08 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.errno-0.3.1.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.errno-0.3.1.bazel @@ -80,88 +80,88 @@ rust_library( version = "0.3.1", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(target_os = "wasi") + "@rrwbd__libc-0.2.150//:libc", # cfg(target_os = "wasi") ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel index 8cf90b9eeb..4146d22fb2 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.errno-dragonfly-0.1.2.bazel @@ -80,8 +80,8 @@ rust_library( }), version = "0.1.2", deps = [ - "@rules_rust_wasm_bindgen_deps__errno-dragonfly-0.1.2//:build_script_build", - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", + "@rrwbd__errno-dragonfly-0.1.2//:build_script_build", + "@rrwbd__libc-0.2.150//:libc", ], ) @@ -133,7 +133,7 @@ cargo_build_script( version = "0.1.2", visibility = ["//visibility:private"], deps = [ - "@rules_rust_wasm_bindgen_deps__cc-1.0.83//:cc", + "@rrwbd__cc-1.0.83//:cc", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.fastrand-1.9.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.fastrand-1.9.0.bazel index 465f971cfc..1f9b64f3c9 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.fastrand-1.9.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.fastrand-1.9.0.bazel @@ -80,7 +80,7 @@ rust_library( version = "1.9.0", deps = select({ "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@rules_rust_wasm_bindgen_deps__instant-0.1.12//:instant", # cfg(all(target_arch = "wasm32", not(target_os = "wasi"))) + "@rrwbd__instant-0.1.12//:instant", # cfg(all(target_arch = "wasm32", not(target_os = "wasi"))) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.filetime-0.2.21.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.filetime-0.2.21.bazel index e061b84b95..a645ccafe1 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.filetime-0.2.21.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.filetime-0.2.21.bazel @@ -79,88 +79,88 @@ rust_library( }), version = "0.2.21", deps = [ - "@rules_rust_wasm_bindgen_deps__cfg-if-1.0.0//:cfg_if", + "@rrwbd__cfg-if-1.0.0//:cfg_if", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.flate2-1.0.28.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.flate2-1.0.28.bazel index 12df2acd5b..948e941635 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.flate2-1.0.28.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.flate2-1.0.28.bazel @@ -85,7 +85,7 @@ rust_library( }), version = "1.0.28", deps = [ - "@rules_rust_wasm_bindgen_deps__crc32fast-1.3.2//:crc32fast", - "@rules_rust_wasm_bindgen_deps__miniz_oxide-0.7.1//:miniz_oxide", + "@rrwbd__crc32fast-1.3.2//:crc32fast", + "@rrwbd__miniz_oxide-0.7.1//:miniz_oxide", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.float-cmp-0.8.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.float-cmp-0.8.0.bazel index b07683bec3..04d6f2ca29 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.float-cmp-0.8.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.float-cmp-0.8.0.bazel @@ -84,6 +84,6 @@ rust_library( }), version = "0.8.0", deps = [ - "@rules_rust_wasm_bindgen_deps__num-traits-0.2.15//:num_traits", + "@rrwbd__num-traits-0.2.15//:num_traits", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.form_urlencoded-1.2.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.form_urlencoded-1.2.0.bazel index f44ebc4528..ed6a6ed672 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.form_urlencoded-1.2.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.form_urlencoded-1.2.0.bazel @@ -84,6 +84,6 @@ rust_library( }), version = "1.2.0", deps = [ - "@rules_rust_wasm_bindgen_deps__percent-encoding-2.3.0//:percent_encoding", + "@rrwbd__percent-encoding-2.3.0//:percent_encoding", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.getrandom-0.2.10.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.getrandom-0.2.10.bazel index a8bf201ee3..8dc190bac8 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.getrandom-0.2.10.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.getrandom-0.2.10.bazel @@ -82,82 +82,82 @@ rust_library( }), version = "0.2.10", deps = [ - "@rules_rust_wasm_bindgen_deps__cfg-if-1.0.0//:cfg_if", + "@rrwbd__cfg-if-1.0.0//:cfg_if", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@rules_rust_wasm_bindgen_deps__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi") + "@rrwbd__wasi-0.11.0-wasi-snapshot-preview1//:wasi", # cfg(target_os = "wasi") ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.gimli-0.26.2.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.gimli-0.26.2.bazel index 875ba5ee8a..f519ac70d2 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.gimli-0.26.2.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.gimli-0.26.2.bazel @@ -90,8 +90,8 @@ rust_library( }), version = "0.26.2", deps = [ - "@rules_rust_wasm_bindgen_deps__fallible-iterator-0.2.0//:fallible_iterator", - "@rules_rust_wasm_bindgen_deps__indexmap-1.9.3//:indexmap", - "@rules_rust_wasm_bindgen_deps__stable_deref_trait-1.2.0//:stable_deref_trait", + "@rrwbd__fallible-iterator-0.2.0//:fallible_iterator", + "@rrwbd__indexmap-1.9.3//:indexmap", + "@rrwbd__stable_deref_trait-1.2.0//:stable_deref_trait", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.heck-0.3.3.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.heck-0.3.3.bazel index 5f042bd83d..4ac5d09449 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.heck-0.3.3.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.heck-0.3.3.bazel @@ -79,6 +79,6 @@ rust_library( }), version = "0.3.3", deps = [ - "@rules_rust_wasm_bindgen_deps__unicode-segmentation-1.10.1//:unicode_segmentation", + "@rrwbd__unicode-segmentation-1.10.1//:unicode_segmentation", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.hermit-abi-0.1.19.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.hermit-abi-0.1.19.bazel index 602eb1d8b0..48317711cc 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.hermit-abi-0.1.19.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.hermit-abi-0.1.19.bazel @@ -79,6 +79,6 @@ rust_library( }), version = "0.1.19", deps = [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", + "@rrwbd__libc-0.2.150//:libc", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.httparse-1.8.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.httparse-1.8.0.bazel index 23625cae61..d06d5400f2 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.httparse-1.8.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.httparse-1.8.0.bazel @@ -84,7 +84,7 @@ rust_library( }), version = "1.8.0", deps = [ - "@rules_rust_wasm_bindgen_deps__httparse-1.8.0//:build_script_build", + "@rrwbd__httparse-1.8.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-0.1.57.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-0.1.57.bazel index e7e4d9c3b6..79fae724e3 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-0.1.57.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-0.1.57.bazel @@ -83,51 +83,51 @@ rust_library( version = "0.1.57", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@rrwbd__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@rrwbd__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@rrwbd__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") + "@rrwbd__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-0.48.0//:windows", # cfg(target_os = "windows") + "@rrwbd__windows-0.48.0//:windows", # cfg(target_os = "windows") ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") + "@rrwbd__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@rrwbd__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") + "@rrwbd__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-0.48.0//:windows", # cfg(target_os = "windows") + "@rrwbd__windows-0.48.0//:windows", # cfg(target_os = "windows") ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@rules_rust_wasm_bindgen_deps__js-sys-0.3.64//:js_sys", # cfg(target_arch = "wasm32") - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-0.2.92//:wasm_bindgen", # cfg(target_arch = "wasm32") + "@rrwbd__js-sys-0.3.64//:js_sys", # cfg(target_arch = "wasm32") + "@rrwbd__wasm-bindgen-0.2.92//:wasm_bindgen", # cfg(target_arch = "wasm32") ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@rules_rust_wasm_bindgen_deps__js-sys-0.3.64//:js_sys", # cfg(target_arch = "wasm32") - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-0.2.92//:wasm_bindgen", # cfg(target_arch = "wasm32") + "@rrwbd__js-sys-0.3.64//:js_sys", # cfg(target_arch = "wasm32") + "@rrwbd__wasm-bindgen-0.2.92//:wasm_bindgen", # cfg(target_arch = "wasm32") ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@rrwbd__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) + "@rrwbd__core-foundation-sys-0.8.4//:core_foundation_sys", # cfg(any(target_os = "macos", target_os = "ios")) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") + "@rrwbd__android_system_properties-0.1.5//:android_system_properties", # cfg(target_os = "android") ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-0.48.0//:windows", # cfg(target_os = "windows") + "@rrwbd__windows-0.48.0//:windows", # cfg(target_os = "windows") ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel index 9ba9d7ebf9..ca59cde903 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.iana-time-zone-haiku-0.1.2.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.1.2", deps = [ - "@rules_rust_wasm_bindgen_deps__iana-time-zone-haiku-0.1.2//:build_script_build", + "@rrwbd__iana-time-zone-haiku-0.1.2//:build_script_build", ], ) @@ -132,7 +132,7 @@ cargo_build_script( version = "0.1.2", visibility = ["//visibility:private"], deps = [ - "@rules_rust_wasm_bindgen_deps__cc-1.0.83//:cc", + "@rrwbd__cc-1.0.83//:cc", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.id-arena-2.2.1.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.id-arena-2.2.1.bazel index 9be4da0e93..ed5b06d95f 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.id-arena-2.2.1.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.id-arena-2.2.1.bazel @@ -84,6 +84,6 @@ rust_library( }), version = "2.2.1", deps = [ - "@rules_rust_wasm_bindgen_deps__rayon-1.7.0//:rayon", + "@rrwbd__rayon-1.7.0//:rayon", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.idna-0.4.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.idna-0.4.0.bazel index 3d0aadef2c..ba5b884c56 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.idna-0.4.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.idna-0.4.0.bazel @@ -84,7 +84,7 @@ rust_library( }), version = "0.4.0", deps = [ - "@rules_rust_wasm_bindgen_deps__unicode-bidi-0.3.13//:unicode_bidi", - "@rules_rust_wasm_bindgen_deps__unicode-normalization-0.1.22//:unicode_normalization", + "@rrwbd__unicode-bidi-0.3.13//:unicode_bidi", + "@rrwbd__unicode-normalization-0.1.22//:unicode_normalization", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.indexmap-1.9.3.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.indexmap-1.9.3.bazel index 35619d5b08..a92bc82ef2 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.indexmap-1.9.3.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.indexmap-1.9.3.bazel @@ -80,8 +80,8 @@ rust_library( }), version = "1.9.3", deps = [ - "@rules_rust_wasm_bindgen_deps__hashbrown-0.12.3//:hashbrown", - "@rules_rust_wasm_bindgen_deps__indexmap-1.9.3//:build_script_build", + "@rrwbd__hashbrown-0.12.3//:hashbrown", + "@rrwbd__indexmap-1.9.3//:build_script_build", ], ) @@ -133,7 +133,7 @@ cargo_build_script( version = "1.9.3", visibility = ["//visibility:private"], deps = [ - "@rules_rust_wasm_bindgen_deps__autocfg-1.1.0//:autocfg", + "@rrwbd__autocfg-1.1.0//:autocfg", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.indexmap-2.0.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.indexmap-2.0.0.bazel index 2f4d53afed..0984db3379 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.indexmap-2.0.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.indexmap-2.0.0.bazel @@ -83,7 +83,7 @@ rust_library( }), version = "2.0.0", deps = [ - "@rules_rust_wasm_bindgen_deps__equivalent-1.0.1//:equivalent", - "@rules_rust_wasm_bindgen_deps__hashbrown-0.14.0//:hashbrown", + "@rrwbd__equivalent-1.0.1//:equivalent", + "@rrwbd__hashbrown-0.14.0//:hashbrown", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.instant-0.1.12.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.instant-0.1.12.bazel index f9e8407522..4c44033fb0 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.instant-0.1.12.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.instant-0.1.12.bazel @@ -79,6 +79,6 @@ rust_library( }), version = "0.1.12", deps = [ - "@rules_rust_wasm_bindgen_deps__cfg-if-1.0.0//:cfg_if", + "@rrwbd__cfg-if-1.0.0//:cfg_if", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel index b1d0cf652c..1ae6f2f239 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.io-lifetimes-1.0.11.bazel @@ -86,8 +86,8 @@ rust_library( }), version = "1.0.11", deps = [ - "@rules_rust_wasm_bindgen_deps__io-lifetimes-1.0.11//:build_script_build", - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", + "@rrwbd__io-lifetimes-1.0.11//:build_script_build", + "@rrwbd__libc-0.2.150//:libc", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.itertools-0.10.5.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.itertools-0.10.5.bazel index 67878ab910..d554842d63 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.itertools-0.10.5.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.itertools-0.10.5.bazel @@ -84,6 +84,6 @@ rust_library( }), version = "0.10.5", deps = [ - "@rules_rust_wasm_bindgen_deps__either-1.8.1//:either", + "@rrwbd__either-1.8.1//:either", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.js-sys-0.3.64.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.js-sys-0.3.64.bazel index 2a42889943..cff3a8ef9a 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.js-sys-0.3.64.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.js-sys-0.3.64.bazel @@ -79,6 +79,6 @@ rust_library( }), version = "0.3.64", deps = [ - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-0.2.92//:wasm_bindgen", + "@rrwbd__wasm-bindgen-0.2.92//:wasm_bindgen", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.libc-0.2.150.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.libc-0.2.150.bazel index de10a8c611..3538ebf18e 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.libc-0.2.150.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.libc-0.2.150.bazel @@ -161,7 +161,7 @@ rust_library( }), version = "0.2.150", deps = [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:build_script_build", + "@rrwbd__libc-0.2.150//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.memchr-2.5.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.memchr-2.5.0.bazel index 5e9fa42fc4..8f9fd3ee56 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.memchr-2.5.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.memchr-2.5.0.bazel @@ -85,7 +85,7 @@ rust_library( }), version = "2.5.0", deps = [ - "@rules_rust_wasm_bindgen_deps__memchr-2.5.0//:build_script_build", + "@rrwbd__memchr-2.5.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.memoffset-0.9.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.memoffset-0.9.0.bazel index f69e75acf8..86e32f80a3 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.memoffset-0.9.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.memoffset-0.9.0.bazel @@ -83,7 +83,7 @@ rust_library( }), version = "0.9.0", deps = [ - "@rules_rust_wasm_bindgen_deps__memoffset-0.9.0//:build_script_build", + "@rrwbd__memoffset-0.9.0//:build_script_build", ], ) @@ -138,7 +138,7 @@ cargo_build_script( version = "0.9.0", visibility = ["//visibility:private"], deps = [ - "@rules_rust_wasm_bindgen_deps__autocfg-1.1.0//:autocfg", + "@rrwbd__autocfg-1.1.0//:autocfg", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.mime_guess-2.0.4.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.mime_guess-2.0.4.bazel index 5ebf834655..ad68da3afe 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.mime_guess-2.0.4.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.mime_guess-2.0.4.bazel @@ -84,9 +84,9 @@ rust_library( }), version = "2.0.4", deps = [ - "@rules_rust_wasm_bindgen_deps__mime-0.3.17//:mime", - "@rules_rust_wasm_bindgen_deps__mime_guess-2.0.4//:build_script_build", - "@rules_rust_wasm_bindgen_deps__unicase-2.6.0//:unicase", + "@rrwbd__mime-0.3.17//:mime", + "@rrwbd__mime_guess-2.0.4//:build_script_build", + "@rrwbd__unicase-2.6.0//:unicase", ], ) @@ -142,7 +142,7 @@ cargo_build_script( version = "2.0.4", visibility = ["//visibility:private"], deps = [ - "@rules_rust_wasm_bindgen_deps__unicase-2.6.0//:unicase", + "@rrwbd__unicase-2.6.0//:unicase", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.miniz_oxide-0.7.1.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.miniz_oxide-0.7.1.bazel index 3faac448ea..074f75eacc 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.miniz_oxide-0.7.1.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.miniz_oxide-0.7.1.bazel @@ -82,6 +82,6 @@ rust_library( }), version = "0.7.1", deps = [ - "@rules_rust_wasm_bindgen_deps__adler-1.0.2//:adler", + "@rrwbd__adler-1.0.2//:adler", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.multipart-0.18.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.multipart-0.18.0.bazel index d3d1e1e410..3efe2e99f2 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.multipart-0.18.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.multipart-0.18.0.bazel @@ -87,15 +87,15 @@ rust_library( }), version = "0.18.0", deps = [ - "@rules_rust_wasm_bindgen_deps__buf_redux-0.8.4//:buf_redux", - "@rules_rust_wasm_bindgen_deps__httparse-1.8.0//:httparse", - "@rules_rust_wasm_bindgen_deps__log-0.4.19//:log", - "@rules_rust_wasm_bindgen_deps__mime-0.3.17//:mime", - "@rules_rust_wasm_bindgen_deps__mime_guess-2.0.4//:mime_guess", - "@rules_rust_wasm_bindgen_deps__quick-error-1.2.3//:quick_error", - "@rules_rust_wasm_bindgen_deps__rand-0.8.5//:rand", - "@rules_rust_wasm_bindgen_deps__safemem-0.3.3//:safemem", - "@rules_rust_wasm_bindgen_deps__tempfile-3.6.0//:tempfile", - "@rules_rust_wasm_bindgen_deps__twoway-0.1.8//:twoway", + "@rrwbd__buf_redux-0.8.4//:buf_redux", + "@rrwbd__httparse-1.8.0//:httparse", + "@rrwbd__log-0.4.19//:log", + "@rrwbd__mime-0.3.17//:mime", + "@rrwbd__mime_guess-2.0.4//:mime_guess", + "@rrwbd__quick-error-1.2.3//:quick_error", + "@rrwbd__rand-0.8.5//:rand", + "@rrwbd__safemem-0.3.3//:safemem", + "@rrwbd__tempfile-3.6.0//:tempfile", + "@rrwbd__twoway-0.1.8//:twoway", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.num-traits-0.2.15.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.num-traits-0.2.15.bazel index 8584b6152d..9408e8affa 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.num-traits-0.2.15.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.num-traits-0.2.15.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.2.15", deps = [ - "@rules_rust_wasm_bindgen_deps__num-traits-0.2.15//:build_script_build", + "@rrwbd__num-traits-0.2.15//:build_script_build", ], ) @@ -132,7 +132,7 @@ cargo_build_script( version = "0.2.15", visibility = ["//visibility:private"], deps = [ - "@rules_rust_wasm_bindgen_deps__autocfg-1.1.0//:autocfg", + "@rrwbd__autocfg-1.1.0//:autocfg", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.num_cpus-1.16.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.num_cpus-1.16.0.bazel index a137d3a264..0338bbc638 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.num_cpus-1.16.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.num_cpus-1.16.0.bazel @@ -80,97 +80,97 @@ rust_library( version = "1.16.0", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:thumbv7em-none-eabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "@rules_rust//rust/platform:x86_64-unknown-none": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(not(windows)) + "@rrwbd__libc-0.2.150//:libc", # cfg(not(windows)) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.num_threads-0.1.6.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.num_threads-0.1.6.bazel index 7fda0b561c..908f38de83 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.num_threads-0.1.6.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.num_threads-0.1.6.bazel @@ -80,28 +80,28 @@ rust_library( version = "0.1.6", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "macos", target_os = "ios", target_os = "freebsd")) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-1.0.8.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-1.0.8.bazel index be55cedf5c..076b86b7ce 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-1.0.8.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-1.0.8.bazel @@ -86,10 +86,10 @@ rust_library( }), version = "1.0.8", deps = [ - "@rules_rust_wasm_bindgen_deps__difference-2.0.0//:difference", - "@rules_rust_wasm_bindgen_deps__float-cmp-0.8.0//:float_cmp", - "@rules_rust_wasm_bindgen_deps__normalize-line-endings-0.3.0//:normalize_line_endings", - "@rules_rust_wasm_bindgen_deps__predicates-core-1.0.6//:predicates_core", - "@rules_rust_wasm_bindgen_deps__regex-1.9.1//:regex", + "@rrwbd__difference-2.0.0//:difference", + "@rrwbd__float-cmp-0.8.0//:float_cmp", + "@rrwbd__normalize-line-endings-0.3.0//:normalize_line_endings", + "@rrwbd__predicates-core-1.0.6//:predicates_core", + "@rrwbd__regex-1.9.1//:regex", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-2.1.5.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-2.1.5.bazel index 6166903d34..a7c60c7d06 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-2.1.5.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-2.1.5.bazel @@ -82,8 +82,8 @@ rust_library( }), version = "2.1.5", deps = [ - "@rules_rust_wasm_bindgen_deps__difflib-0.4.0//:difflib", - "@rules_rust_wasm_bindgen_deps__itertools-0.10.5//:itertools", - "@rules_rust_wasm_bindgen_deps__predicates-core-1.0.6//:predicates_core", + "@rrwbd__difflib-0.4.0//:difflib", + "@rrwbd__itertools-0.10.5//:itertools", + "@rrwbd__predicates-core-1.0.6//:predicates_core", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-tree-1.0.9.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-tree-1.0.9.bazel index 88bf1febaf..7d8cf915f3 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-tree-1.0.9.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.predicates-tree-1.0.9.bazel @@ -79,7 +79,7 @@ rust_library( }), version = "1.0.9", deps = [ - "@rules_rust_wasm_bindgen_deps__predicates-core-1.0.6//:predicates_core", - "@rules_rust_wasm_bindgen_deps__termtree-0.4.1//:termtree", + "@rrwbd__predicates-core-1.0.6//:predicates_core", + "@rrwbd__termtree-0.4.1//:termtree", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel index 02994fe9f1..93bbe484ef 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.proc-macro2-1.0.64.bazel @@ -85,8 +85,8 @@ rust_library( }), version = "1.0.64", deps = [ - "@rules_rust_wasm_bindgen_deps__proc-macro2-1.0.64//:build_script_build", - "@rules_rust_wasm_bindgen_deps__unicode-ident-1.0.10//:unicode_ident", + "@rrwbd__proc-macro2-1.0.64//:build_script_build", + "@rrwbd__unicode-ident-1.0.10//:unicode_ident", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.quote-1.0.29.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.quote-1.0.29.bazel index 8e3f228346..c8630a4c2a 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.quote-1.0.29.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.quote-1.0.29.bazel @@ -84,8 +84,8 @@ rust_library( }), version = "1.0.29", deps = [ - "@rules_rust_wasm_bindgen_deps__proc-macro2-1.0.64//:proc_macro2", - "@rules_rust_wasm_bindgen_deps__quote-1.0.29//:build_script_build", + "@rrwbd__proc-macro2-1.0.64//:proc_macro2", + "@rrwbd__quote-1.0.29//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand-0.8.5.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand-0.8.5.bazel index d1bfba4648..e500c6c937 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand-0.8.5.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand-0.8.5.bazel @@ -88,80 +88,80 @@ rust_library( }), version = "0.8.5", deps = [ - "@rules_rust_wasm_bindgen_deps__rand_chacha-0.3.1//:rand_chacha", - "@rules_rust_wasm_bindgen_deps__rand_core-0.6.4//:rand_core", + "@rrwbd__rand_chacha-0.3.1//:rand_chacha", + "@rrwbd__rand_core-0.6.4//:rand_core", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-apple-darwin + "@rrwbd__libc-0.2.150//:libc", # aarch64-apple-darwin ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-apple-ios + "@rrwbd__libc-0.2.150//:libc", # aarch64-apple-ios ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-apple-ios-sim + "@rrwbd__libc-0.2.150//:libc", # aarch64-apple-ios-sim ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-linux-android + "@rrwbd__libc-0.2.150//:libc", # aarch64-linux-android ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-unknown-fuchsia + "@rrwbd__libc-0.2.150//:libc", # aarch64-unknown-fuchsia ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-unknown-linux-gnu + "@rrwbd__libc-0.2.150//:libc", # aarch64-unknown-linux-gnu ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + "@rrwbd__libc-0.2.150//:libc", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-unknown-nto-qnx710 + "@rrwbd__libc-0.2.150//:libc", # aarch64-unknown-nto-qnx710 ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # arm-unknown-linux-gnueabi + "@rrwbd__libc-0.2.150//:libc", # arm-unknown-linux-gnueabi ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # armv7-linux-androideabi + "@rrwbd__libc-0.2.150//:libc", # armv7-linux-androideabi ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # armv7-unknown-linux-gnueabi + "@rrwbd__libc-0.2.150//:libc", # armv7-unknown-linux-gnueabi ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # i686-apple-darwin + "@rrwbd__libc-0.2.150//:libc", # i686-apple-darwin ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # i686-linux-android + "@rrwbd__libc-0.2.150//:libc", # i686-linux-android ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # i686-unknown-freebsd + "@rrwbd__libc-0.2.150//:libc", # i686-unknown-freebsd ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # i686-unknown-linux-gnu + "@rrwbd__libc-0.2.150//:libc", # i686-unknown-linux-gnu ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # powerpc-unknown-linux-gnu + "@rrwbd__libc-0.2.150//:libc", # powerpc-unknown-linux-gnu ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # s390x-unknown-linux-gnu + "@rrwbd__libc-0.2.150//:libc", # s390x-unknown-linux-gnu ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-apple-darwin + "@rrwbd__libc-0.2.150//:libc", # x86_64-apple-darwin ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-apple-ios + "@rrwbd__libc-0.2.150//:libc", # x86_64-apple-ios ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-linux-android + "@rrwbd__libc-0.2.150//:libc", # x86_64-linux-android ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-unknown-freebsd + "@rrwbd__libc-0.2.150//:libc", # x86_64-unknown-freebsd ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-unknown-fuchsia + "@rrwbd__libc-0.2.150//:libc", # x86_64-unknown-fuchsia ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-unknown-linux-gnu + "@rrwbd__libc-0.2.150//:libc", # x86_64-unknown-linux-gnu ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + "@rrwbd__libc-0.2.150//:libc", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand_chacha-0.3.1.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand_chacha-0.3.1.bazel index 4968811489..21834dff3a 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand_chacha-0.3.1.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand_chacha-0.3.1.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "0.3.1", deps = [ - "@rules_rust_wasm_bindgen_deps__ppv-lite86-0.2.17//:ppv_lite86", - "@rules_rust_wasm_bindgen_deps__rand_core-0.6.4//:rand_core", + "@rrwbd__ppv-lite86-0.2.17//:ppv_lite86", + "@rrwbd__rand_core-0.6.4//:rand_core", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand_core-0.6.4.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand_core-0.6.4.bazel index b8f8f2fa57..6f59d93c53 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand_core-0.6.4.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rand_core-0.6.4.bazel @@ -84,6 +84,6 @@ rust_library( }), version = "0.6.4", deps = [ - "@rules_rust_wasm_bindgen_deps__getrandom-0.2.10//:getrandom", + "@rrwbd__getrandom-0.2.10//:getrandom", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rayon-1.7.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rayon-1.7.0.bazel index 2ab5d84cfc..0b245ae200 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rayon-1.7.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rayon-1.7.0.bazel @@ -79,7 +79,7 @@ rust_library( }), version = "1.7.0", deps = [ - "@rules_rust_wasm_bindgen_deps__either-1.8.1//:either", - "@rules_rust_wasm_bindgen_deps__rayon-core-1.11.0//:rayon_core", + "@rrwbd__either-1.8.1//:either", + "@rrwbd__rayon-core-1.11.0//:rayon_core", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rayon-core-1.11.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rayon-core-1.11.0.bazel index aa71fee002..5ed6886ae7 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rayon-core-1.11.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rayon-core-1.11.0.bazel @@ -80,11 +80,11 @@ rust_library( }), version = "1.11.0", deps = [ - "@rules_rust_wasm_bindgen_deps__crossbeam-channel-0.5.8//:crossbeam_channel", - "@rules_rust_wasm_bindgen_deps__crossbeam-deque-0.8.3//:crossbeam_deque", - "@rules_rust_wasm_bindgen_deps__crossbeam-utils-0.8.16//:crossbeam_utils", - "@rules_rust_wasm_bindgen_deps__num_cpus-1.16.0//:num_cpus", - "@rules_rust_wasm_bindgen_deps__rayon-core-1.11.0//:build_script_build", + "@rrwbd__crossbeam-channel-0.5.8//:crossbeam_channel", + "@rrwbd__crossbeam-deque-0.8.3//:crossbeam_deque", + "@rrwbd__crossbeam-utils-0.8.16//:crossbeam_utils", + "@rrwbd__num_cpus-1.16.0//:num_cpus", + "@rrwbd__rayon-core-1.11.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.redox_syscall-0.2.16.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.redox_syscall-0.2.16.bazel index 028b8b76d6..f3e286f8b9 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.redox_syscall-0.2.16.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.redox_syscall-0.2.16.bazel @@ -79,6 +79,6 @@ rust_library( }), version = "0.2.16", deps = [ - "@rules_rust_wasm_bindgen_deps__bitflags-1.3.2//:bitflags", + "@rrwbd__bitflags-1.3.2//:bitflags", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.redox_syscall-0.3.5.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.redox_syscall-0.3.5.bazel index bd0fee3b27..e5ea4ac13b 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.redox_syscall-0.3.5.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.redox_syscall-0.3.5.bazel @@ -79,6 +79,6 @@ rust_library( }), version = "0.3.5", deps = [ - "@rules_rust_wasm_bindgen_deps__bitflags-1.3.2//:bitflags", + "@rrwbd__bitflags-1.3.2//:bitflags", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.regex-1.9.1.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.regex-1.9.1.bazel index 1a8b963892..417d7e8de4 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.regex-1.9.1.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.regex-1.9.1.bazel @@ -98,9 +98,9 @@ rust_library( }), version = "1.9.1", deps = [ - "@rules_rust_wasm_bindgen_deps__aho-corasick-1.0.2//:aho_corasick", - "@rules_rust_wasm_bindgen_deps__memchr-2.5.0//:memchr", - "@rules_rust_wasm_bindgen_deps__regex-automata-0.3.3//:regex_automata", - "@rules_rust_wasm_bindgen_deps__regex-syntax-0.7.4//:regex_syntax", + "@rrwbd__aho-corasick-1.0.2//:aho_corasick", + "@rrwbd__memchr-2.5.0//:memchr", + "@rrwbd__regex-automata-0.3.3//:regex_automata", + "@rrwbd__regex-syntax-0.7.4//:regex_syntax", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.regex-automata-0.3.3.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.regex-automata-0.3.3.bazel index 14215c2b6c..68ed22af23 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.regex-automata-0.3.3.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.regex-automata-0.3.3.bazel @@ -103,8 +103,8 @@ rust_library( }), version = "0.3.3", deps = [ - "@rules_rust_wasm_bindgen_deps__aho-corasick-1.0.2//:aho_corasick", - "@rules_rust_wasm_bindgen_deps__memchr-2.5.0//:memchr", - "@rules_rust_wasm_bindgen_deps__regex-syntax-0.7.4//:regex_syntax", + "@rrwbd__aho-corasick-1.0.2//:aho_corasick", + "@rrwbd__memchr-2.5.0//:memchr", + "@rrwbd__regex-syntax-0.7.4//:regex_syntax", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel index f6b531a8bd..0832b1836e 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.ring-0.17.5.bazel @@ -85,93 +85,93 @@ rust_library( }), version = "0.17.5", deps = [ - "@rules_rust_wasm_bindgen_deps__getrandom-0.2.10//:getrandom", - "@rules_rust_wasm_bindgen_deps__ring-0.17.5//:build_script_build", - "@rules_rust_wasm_bindgen_deps__untrusted-0.9.0//:untrusted", + "@rrwbd__getrandom-0.2.10//:getrandom", + "@rrwbd__ring-0.17.5//:build_script_build", + "@rrwbd__untrusted-0.9.0//:untrusted", ] + select({ "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(all(target_arch = "aarch64", target_os = "windows")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(all(target_arch = "aarch64", target_os = "windows")) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__libc-0.2.150//:libc", # cfg(any(target_os = "android", target_os = "linux")) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "@rules_rust//rust/platform:x86_64-unknown-none": [ - "@rules_rust_wasm_bindgen_deps__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) + "@rrwbd__spin-0.9.8//:spin", # cfg(any(target_arch = "x86", target_arch = "x86_64", all(any(target_arch = "aarch64", target_arch = "arm"), any(target_os = "android", target_os = "fuchsia", target_os = "linux", target_os = "windows")))) ], "//conditions:default": [], }), @@ -231,7 +231,7 @@ cargo_build_script( version = "0.17.5", visibility = ["//visibility:private"], deps = [ - "@rules_rust_wasm_bindgen_deps__cc-1.0.83//:cc", + "@rrwbd__cc-1.0.83//:cc", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rouille-3.6.2.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rouille-3.6.2.bazel index a1f1e9ddfa..0efbf18d3a 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rouille-3.6.2.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rouille-3.6.2.bazel @@ -31,7 +31,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2015", proc_macro_deps = [ - "@rules_rust_wasm_bindgen_deps__serde_derive-1.0.171//:serde_derive", + "@rrwbd__serde_derive-1.0.171//:serde_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -82,18 +82,18 @@ rust_library( }), version = "3.6.2", deps = [ - "@rules_rust_wasm_bindgen_deps__base64-0.13.1//:base64", - "@rules_rust_wasm_bindgen_deps__chrono-0.4.26//:chrono", - "@rules_rust_wasm_bindgen_deps__filetime-0.2.21//:filetime", - "@rules_rust_wasm_bindgen_deps__multipart-0.18.0//:multipart", - "@rules_rust_wasm_bindgen_deps__percent-encoding-2.3.0//:percent_encoding", - "@rules_rust_wasm_bindgen_deps__rand-0.8.5//:rand", - "@rules_rust_wasm_bindgen_deps__serde-1.0.171//:serde", - "@rules_rust_wasm_bindgen_deps__serde_json-1.0.102//:serde_json", - "@rules_rust_wasm_bindgen_deps__sha1_smol-1.0.0//:sha1_smol", - "@rules_rust_wasm_bindgen_deps__threadpool-1.8.1//:threadpool", - "@rules_rust_wasm_bindgen_deps__time-0.3.23//:time", - "@rules_rust_wasm_bindgen_deps__tiny_http-0.12.0//:tiny_http", - "@rules_rust_wasm_bindgen_deps__url-2.4.0//:url", + "@rrwbd__base64-0.13.1//:base64", + "@rrwbd__chrono-0.4.26//:chrono", + "@rrwbd__filetime-0.2.21//:filetime", + "@rrwbd__multipart-0.18.0//:multipart", + "@rrwbd__percent-encoding-2.3.0//:percent_encoding", + "@rrwbd__rand-0.8.5//:rand", + "@rrwbd__serde-1.0.171//:serde", + "@rrwbd__serde_json-1.0.102//:serde_json", + "@rrwbd__sha1_smol-1.0.0//:sha1_smol", + "@rrwbd__threadpool-1.8.1//:threadpool", + "@rrwbd__time-0.3.23//:time", + "@rrwbd__tiny_http-0.12.0//:tiny_http", + "@rrwbd__url-2.4.0//:url", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustix-0.37.23.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustix-0.37.23.bazel index 71fd19850c..26ca7b49ba 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustix-0.37.23.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustix-0.37.23.bazel @@ -19,85 +19,85 @@ rust_library( ), aliases = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:aarch64-apple-ios": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:aarch64-apple-ios-sim": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:aarch64-linux-android": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:aarch64-pc-windows-msvc": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(windows) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(windows) }, "@rules_rust//rust/platform:aarch64-unknown-fuchsia": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:armv7-linux-androideabi": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:i686-apple-darwin": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:i686-linux-android": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:i686-pc-windows-msvc": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(windows) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(windows) }, "@rules_rust//rust/platform:i686-unknown-freebsd": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:s390x-unknown-linux-gnu": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:thumbv7em-none-eabi": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:thumbv8m.main-none-eabi": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:wasm32-unknown-unknown": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:wasm32-wasip1": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-apple-darwin": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-apple-ios": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-linux-android": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-pc-windows-msvc": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(windows) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(windows) }, "@rules_rust//rust/platform:x86_64-unknown-freebsd": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-unknown-fuchsia": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "@rules_rust//rust/platform:x86_64-unknown-none": { - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno": "libc_errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) }, "//conditions:default": {}, }), @@ -172,121 +172,121 @@ rust_library( }), version = "0.37.23", deps = [ - "@rules_rust_wasm_bindgen_deps__bitflags-1.3.2//:bitflags", - "@rules_rust_wasm_bindgen_deps__io-lifetimes-1.0.11//:io_lifetimes", - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:build_script_build", + "@rrwbd__bitflags-1.3.2//:bitflags", + "@rrwbd__io-lifetimes-1.0.11//:io_lifetimes", + "@rrwbd__libc-0.2.150//:libc", + "@rrwbd__rustix-0.37.23//:build_script_build", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(windows) - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__errno-0.3.1//:errno", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(windows) - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__errno-0.3.1//:errno", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:thumbv7em-none-eabi": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:wasm32-unknown-unknown": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(any(target_os = "android", target_os = "linux"), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(windows) - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__errno-0.3.1//:errno", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) + "@rrwbd__linux-raw-sys-0.3.8//:linux_raw_sys", # cfg(all(not(rustix_use_libc), not(miri), target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64"))))) ], "@rules_rust//rust/platform:x86_64-unknown-none": [ - "@rules_rust_wasm_bindgen_deps__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) + "@rrwbd__errno-0.3.1//:errno", # cfg(all(not(windows), any(rustix_use_libc, miri, not(all(target_os = "linux", any(target_arch = "x86", all(target_arch = "x86_64", target_pointer_width = "64"), all(target_endian = "little", any(target_arch = "arm", all(target_arch = "aarch64", target_pointer_width = "64"), target_arch = "powerpc64", target_arch = "riscv64", target_arch = "mips", target_arch = "mips64")))))))) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustls-0.21.8.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustls-0.21.8.bazel index 282d2d8770..3f429e6705 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustls-0.21.8.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustls-0.21.8.bazel @@ -86,11 +86,11 @@ rust_library( }), version = "0.21.8", deps = [ - "@rules_rust_wasm_bindgen_deps__log-0.4.19//:log", - "@rules_rust_wasm_bindgen_deps__ring-0.17.5//:ring", - "@rules_rust_wasm_bindgen_deps__rustls-0.21.8//:build_script_build", - "@rules_rust_wasm_bindgen_deps__rustls-webpki-0.101.7//:webpki", - "@rules_rust_wasm_bindgen_deps__sct-0.7.1//:sct", + "@rrwbd__log-0.4.19//:log", + "@rrwbd__ring-0.17.5//:ring", + "@rrwbd__rustls-0.21.8//:build_script_build", + "@rrwbd__rustls-webpki-0.101.7//:webpki", + "@rrwbd__sct-0.7.1//:sct", ], ) @@ -135,7 +135,7 @@ cargo_build_script( ), edition = "2021", link_deps = [ - "@rules_rust_wasm_bindgen_deps__ring-0.17.5//:ring", + "@rrwbd__ring-0.17.5//:ring", ], pkg_name = "rustls", rustc_flags = [ diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustls-webpki-0.101.7.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustls-webpki-0.101.7.bazel index eacfb3f72b..3ab1679b0c 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustls-webpki-0.101.7.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.rustls-webpki-0.101.7.bazel @@ -84,7 +84,7 @@ rust_library( }), version = "0.101.7", deps = [ - "@rules_rust_wasm_bindgen_deps__ring-0.17.5//:ring", - "@rules_rust_wasm_bindgen_deps__untrusted-0.9.0//:untrusted", + "@rrwbd__ring-0.17.5//:ring", + "@rrwbd__untrusted-0.9.0//:untrusted", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.sct-0.7.1.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.sct-0.7.1.bazel index 24d223cc5d..c945a28f3a 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.sct-0.7.1.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.sct-0.7.1.bazel @@ -79,7 +79,7 @@ rust_library( }), version = "0.7.1", deps = [ - "@rules_rust_wasm_bindgen_deps__ring-0.17.5//:ring", - "@rules_rust_wasm_bindgen_deps__untrusted-0.9.0//:untrusted", + "@rrwbd__ring-0.17.5//:ring", + "@rrwbd__untrusted-0.9.0//:untrusted", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.semver-1.0.17.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.semver-1.0.17.bazel index d0e00f645b..f37bbf924e 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.semver-1.0.17.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.semver-1.0.17.bazel @@ -84,7 +84,7 @@ rust_library( }), version = "1.0.17", deps = [ - "@rules_rust_wasm_bindgen_deps__semver-1.0.17//:build_script_build", + "@rrwbd__semver-1.0.17//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel index 6fc1e43f44..abd15a1243 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde-1.0.171.bazel @@ -38,7 +38,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2015", proc_macro_deps = [ - "@rules_rust_wasm_bindgen_deps__serde_derive-1.0.171//:serde_derive", + "@rrwbd__serde_derive-1.0.171//:serde_derive", ], rustc_flags = [ "--cap-lints=allow", @@ -89,7 +89,7 @@ rust_library( }), version = "1.0.171", deps = [ - "@rules_rust_wasm_bindgen_deps__serde-1.0.171//:build_script_build", + "@rrwbd__serde-1.0.171//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde_derive-1.0.171.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde_derive-1.0.171.bazel index 42ad167931..ee5e5a0444 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde_derive-1.0.171.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde_derive-1.0.171.bazel @@ -82,8 +82,8 @@ rust_proc_macro( }), version = "1.0.171", deps = [ - "@rules_rust_wasm_bindgen_deps__proc-macro2-1.0.64//:proc_macro2", - "@rules_rust_wasm_bindgen_deps__quote-1.0.29//:quote", - "@rules_rust_wasm_bindgen_deps__syn-2.0.25//:syn", + "@rrwbd__proc-macro2-1.0.64//:proc_macro2", + "@rrwbd__quote-1.0.29//:quote", + "@rrwbd__syn-2.0.25//:syn", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel index cfbbcf17f2..cc165ff935 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.serde_json-1.0.102.bazel @@ -84,10 +84,10 @@ rust_library( }), version = "1.0.102", deps = [ - "@rules_rust_wasm_bindgen_deps__itoa-1.0.8//:itoa", - "@rules_rust_wasm_bindgen_deps__ryu-1.0.14//:ryu", - "@rules_rust_wasm_bindgen_deps__serde-1.0.171//:serde", - "@rules_rust_wasm_bindgen_deps__serde_json-1.0.102//:build_script_build", + "@rrwbd__itoa-1.0.8//:itoa", + "@rrwbd__ryu-1.0.14//:ryu", + "@rrwbd__serde-1.0.171//:serde", + "@rrwbd__serde_json-1.0.102//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.syn-1.0.109.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.syn-1.0.109.bazel index daabfb1caa..784cb16ccf 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.syn-1.0.109.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.syn-1.0.109.bazel @@ -90,10 +90,10 @@ rust_library( }), version = "1.0.109", deps = [ - "@rules_rust_wasm_bindgen_deps__proc-macro2-1.0.64//:proc_macro2", - "@rules_rust_wasm_bindgen_deps__quote-1.0.29//:quote", - "@rules_rust_wasm_bindgen_deps__syn-1.0.109//:build_script_build", - "@rules_rust_wasm_bindgen_deps__unicode-ident-1.0.10//:unicode_ident", + "@rrwbd__proc-macro2-1.0.64//:proc_macro2", + "@rrwbd__quote-1.0.29//:quote", + "@rrwbd__syn-1.0.109//:build_script_build", + "@rrwbd__unicode-ident-1.0.10//:unicode_ident", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.syn-2.0.25.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.syn-2.0.25.bazel index dbd3181a7b..f8bbebc4bf 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.syn-2.0.25.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.syn-2.0.25.bazel @@ -90,8 +90,8 @@ rust_library( }), version = "2.0.25", deps = [ - "@rules_rust_wasm_bindgen_deps__proc-macro2-1.0.64//:proc_macro2", - "@rules_rust_wasm_bindgen_deps__quote-1.0.29//:quote", - "@rules_rust_wasm_bindgen_deps__unicode-ident-1.0.10//:unicode_ident", + "@rrwbd__proc-macro2-1.0.64//:proc_macro2", + "@rrwbd__quote-1.0.29//:quote", + "@rrwbd__unicode-ident-1.0.10//:unicode_ident", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.tempfile-3.6.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.tempfile-3.6.0.bazel index 5f608125f9..0759d015cf 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.tempfile-3.6.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.tempfile-3.6.0.bazel @@ -80,93 +80,93 @@ rust_library( }), version = "3.6.0", deps = [ - "@rules_rust_wasm_bindgen_deps__cfg-if-1.0.0//:cfg_if", - "@rules_rust_wasm_bindgen_deps__fastrand-1.9.0//:fastrand", - "@rules_rust_wasm_bindgen_deps__tempfile-3.6.0//:build_script_build", + "@rrwbd__cfg-if-1.0.0//:cfg_if", + "@rrwbd__fastrand-1.9.0//:fastrand", + "@rrwbd__tempfile-3.6.0//:build_script_build", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:wasm32-wasip1": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows-sys-0.48.0//:windows_sys", # cfg(windows) + "@rrwbd__windows-sys-0.48.0//:windows_sys", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) + "@rrwbd__rustix-0.37.23//:rustix", # cfg(any(unix, target_os = "wasi")) ], "//conditions:default": [], }), @@ -220,7 +220,7 @@ cargo_build_script( version = "3.6.0", visibility = ["//visibility:private"], deps = [ - "@rules_rust_wasm_bindgen_deps__autocfg-1.1.0//:autocfg", + "@rrwbd__autocfg-1.1.0//:autocfg", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.termcolor-1.2.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.termcolor-1.2.0.bazel index 053d3b9e15..788193ec5e 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.termcolor-1.2.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.termcolor-1.2.0.bazel @@ -80,13 +80,13 @@ rust_library( version = "1.2.0", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-util-0.1.5//:winapi_util", # cfg(windows) + "@rrwbd__winapi-util-0.1.5//:winapi_util", # cfg(windows) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-util-0.1.5//:winapi_util", # cfg(windows) + "@rrwbd__winapi-util-0.1.5//:winapi_util", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-util-0.1.5//:winapi_util", # cfg(windows) + "@rrwbd__winapi-util-0.1.5//:winapi_util", # cfg(windows) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.threadpool-1.8.1.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.threadpool-1.8.1.bazel index 0bf750ed75..a4311c1989 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.threadpool-1.8.1.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.threadpool-1.8.1.bazel @@ -79,6 +79,6 @@ rust_library( }), version = "1.8.1", deps = [ - "@rules_rust_wasm_bindgen_deps__num_cpus-1.16.0//:num_cpus", + "@rrwbd__num_cpus-1.16.0//:num_cpus", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.time-0.3.23.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.time-0.3.23.bazel index ff24332e44..783c8dc338 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.time-0.3.23.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.time-0.3.23.bazel @@ -85,103 +85,103 @@ rust_library( }), version = "0.3.23", deps = [ - "@rules_rust_wasm_bindgen_deps__time-core-0.1.1//:time_core", + "@rrwbd__time-core-0.1.1//:time_core", ] + select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-apple-darwin - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # aarch64-apple-darwin + "@rrwbd__libc-0.2.150//:libc", # aarch64-apple-darwin + "@rrwbd__num_threads-0.1.6//:num_threads", # aarch64-apple-darwin ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-apple-ios - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # aarch64-apple-ios + "@rrwbd__libc-0.2.150//:libc", # aarch64-apple-ios + "@rrwbd__num_threads-0.1.6//:num_threads", # aarch64-apple-ios ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-apple-ios-sim - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # aarch64-apple-ios-sim + "@rrwbd__libc-0.2.150//:libc", # aarch64-apple-ios-sim + "@rrwbd__num_threads-0.1.6//:num_threads", # aarch64-apple-ios-sim ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-linux-android - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # aarch64-linux-android + "@rrwbd__libc-0.2.150//:libc", # aarch64-linux-android + "@rrwbd__num_threads-0.1.6//:num_threads", # aarch64-linux-android ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-unknown-fuchsia - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # aarch64-unknown-fuchsia + "@rrwbd__libc-0.2.150//:libc", # aarch64-unknown-fuchsia + "@rrwbd__num_threads-0.1.6//:num_threads", # aarch64-unknown-fuchsia ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-unknown-linux-gnu - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # aarch64-unknown-linux-gnu + "@rrwbd__libc-0.2.150//:libc", # aarch64-unknown-linux-gnu + "@rrwbd__num_threads-0.1.6//:num_threads", # aarch64-unknown-linux-gnu ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + "@rrwbd__libc-0.2.150//:libc", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu + "@rrwbd__num_threads-0.1.6//:num_threads", # aarch64-unknown-linux-gnu, aarch64-unknown-nixos-gnu ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # aarch64-unknown-nto-qnx710 - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # aarch64-unknown-nto-qnx710 + "@rrwbd__libc-0.2.150//:libc", # aarch64-unknown-nto-qnx710 + "@rrwbd__num_threads-0.1.6//:num_threads", # aarch64-unknown-nto-qnx710 ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # arm-unknown-linux-gnueabi - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # arm-unknown-linux-gnueabi + "@rrwbd__libc-0.2.150//:libc", # arm-unknown-linux-gnueabi + "@rrwbd__num_threads-0.1.6//:num_threads", # arm-unknown-linux-gnueabi ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # armv7-linux-androideabi - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # armv7-linux-androideabi + "@rrwbd__libc-0.2.150//:libc", # armv7-linux-androideabi + "@rrwbd__num_threads-0.1.6//:num_threads", # armv7-linux-androideabi ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # armv7-unknown-linux-gnueabi - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # armv7-unknown-linux-gnueabi + "@rrwbd__libc-0.2.150//:libc", # armv7-unknown-linux-gnueabi + "@rrwbd__num_threads-0.1.6//:num_threads", # armv7-unknown-linux-gnueabi ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # i686-apple-darwin - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # i686-apple-darwin + "@rrwbd__libc-0.2.150//:libc", # i686-apple-darwin + "@rrwbd__num_threads-0.1.6//:num_threads", # i686-apple-darwin ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # i686-linux-android - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # i686-linux-android + "@rrwbd__libc-0.2.150//:libc", # i686-linux-android + "@rrwbd__num_threads-0.1.6//:num_threads", # i686-linux-android ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # i686-unknown-freebsd - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # i686-unknown-freebsd + "@rrwbd__libc-0.2.150//:libc", # i686-unknown-freebsd + "@rrwbd__num_threads-0.1.6//:num_threads", # i686-unknown-freebsd ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # i686-unknown-linux-gnu - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # i686-unknown-linux-gnu + "@rrwbd__libc-0.2.150//:libc", # i686-unknown-linux-gnu + "@rrwbd__num_threads-0.1.6//:num_threads", # i686-unknown-linux-gnu ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # powerpc-unknown-linux-gnu - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # powerpc-unknown-linux-gnu + "@rrwbd__libc-0.2.150//:libc", # powerpc-unknown-linux-gnu + "@rrwbd__num_threads-0.1.6//:num_threads", # powerpc-unknown-linux-gnu ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # s390x-unknown-linux-gnu - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # s390x-unknown-linux-gnu + "@rrwbd__libc-0.2.150//:libc", # s390x-unknown-linux-gnu + "@rrwbd__num_threads-0.1.6//:num_threads", # s390x-unknown-linux-gnu ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-apple-darwin - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # x86_64-apple-darwin + "@rrwbd__libc-0.2.150//:libc", # x86_64-apple-darwin + "@rrwbd__num_threads-0.1.6//:num_threads", # x86_64-apple-darwin ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-apple-ios - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # x86_64-apple-ios + "@rrwbd__libc-0.2.150//:libc", # x86_64-apple-ios + "@rrwbd__num_threads-0.1.6//:num_threads", # x86_64-apple-ios ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-linux-android - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # x86_64-linux-android + "@rrwbd__libc-0.2.150//:libc", # x86_64-linux-android + "@rrwbd__num_threads-0.1.6//:num_threads", # x86_64-linux-android ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-unknown-freebsd - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # x86_64-unknown-freebsd + "@rrwbd__libc-0.2.150//:libc", # x86_64-unknown-freebsd + "@rrwbd__num_threads-0.1.6//:num_threads", # x86_64-unknown-freebsd ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-unknown-fuchsia - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # x86_64-unknown-fuchsia + "@rrwbd__libc-0.2.150//:libc", # x86_64-unknown-fuchsia + "@rrwbd__num_threads-0.1.6//:num_threads", # x86_64-unknown-fuchsia ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-unknown-linux-gnu - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # x86_64-unknown-linux-gnu + "@rrwbd__libc-0.2.150//:libc", # x86_64-unknown-linux-gnu + "@rrwbd__num_threads-0.1.6//:num_threads", # x86_64-unknown-linux-gnu ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu - "@rules_rust_wasm_bindgen_deps__num_threads-0.1.6//:num_threads", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + "@rrwbd__libc-0.2.150//:libc", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu + "@rrwbd__num_threads-0.1.6//:num_threads", # x86_64-unknown-linux-gnu, x86_64-unknown-nixos-gnu ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.tiny_http-0.12.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.tiny_http-0.12.0.bazel index c70289f186..c8d9156620 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.tiny_http-0.12.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.tiny_http-0.12.0.bazel @@ -79,9 +79,9 @@ rust_library( }), version = "0.12.0", deps = [ - "@rules_rust_wasm_bindgen_deps__ascii-1.1.0//:ascii", - "@rules_rust_wasm_bindgen_deps__chunked_transfer-1.4.1//:chunked_transfer", - "@rules_rust_wasm_bindgen_deps__httpdate-1.0.2//:httpdate", - "@rules_rust_wasm_bindgen_deps__log-0.4.19//:log", + "@rrwbd__ascii-1.1.0//:ascii", + "@rrwbd__chunked_transfer-1.4.1//:chunked_transfer", + "@rrwbd__httpdate-1.0.2//:httpdate", + "@rrwbd__log-0.4.19//:log", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.tinyvec-1.6.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.tinyvec-1.6.0.bazel index 00f18cbfe8..cc8d736ea9 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.tinyvec-1.6.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.tinyvec-1.6.0.bazel @@ -84,6 +84,6 @@ rust_library( }), version = "1.6.0", deps = [ - "@rules_rust_wasm_bindgen_deps__tinyvec_macros-0.1.1//:tinyvec_macros", + "@rrwbd__tinyvec_macros-0.1.1//:tinyvec_macros", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.twoway-0.1.8.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.twoway-0.1.8.bazel index 633a2fa842..444c266af5 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.twoway-0.1.8.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.twoway-0.1.8.bazel @@ -83,6 +83,6 @@ rust_library( }), version = "0.1.8", deps = [ - "@rules_rust_wasm_bindgen_deps__memchr-2.5.0//:memchr", + "@rrwbd__memchr-2.5.0//:memchr", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.unicase-2.6.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.unicase-2.6.0.bazel index 63b13dd156..2a6df491ba 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.unicase-2.6.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.unicase-2.6.0.bazel @@ -82,7 +82,7 @@ rust_library( }), version = "2.6.0", deps = [ - "@rules_rust_wasm_bindgen_deps__unicase-2.6.0//:build_script_build", + "@rrwbd__unicase-2.6.0//:build_script_build", ], ) @@ -134,7 +134,7 @@ cargo_build_script( version = "2.6.0", visibility = ["//visibility:private"], deps = [ - "@rules_rust_wasm_bindgen_deps__version_check-0.9.4//:version_check", + "@rrwbd__version_check-0.9.4//:version_check", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.unicode-normalization-0.1.22.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.unicode-normalization-0.1.22.bazel index 1c57a11251..10daf6088d 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.unicode-normalization-0.1.22.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.unicode-normalization-0.1.22.bazel @@ -82,6 +82,6 @@ rust_library( }), version = "0.1.22", deps = [ - "@rules_rust_wasm_bindgen_deps__tinyvec-1.6.0//:tinyvec", + "@rrwbd__tinyvec-1.6.0//:tinyvec", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.ureq-2.8.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.ureq-2.8.0.bazel index 8a88dfae2c..d35444da60 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.ureq-2.8.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.ureq-2.8.0.bazel @@ -89,14 +89,14 @@ rust_library( }), version = "2.8.0", deps = [ - "@rules_rust_wasm_bindgen_deps__base64-0.21.5//:base64", - "@rules_rust_wasm_bindgen_deps__brotli-decompressor-2.5.1//:brotli_decompressor", - "@rules_rust_wasm_bindgen_deps__flate2-1.0.28//:flate2", - "@rules_rust_wasm_bindgen_deps__log-0.4.19//:log", - "@rules_rust_wasm_bindgen_deps__once_cell-1.18.0//:once_cell", - "@rules_rust_wasm_bindgen_deps__rustls-0.21.8//:rustls", - "@rules_rust_wasm_bindgen_deps__rustls-webpki-0.101.7//:webpki", - "@rules_rust_wasm_bindgen_deps__url-2.4.0//:url", - "@rules_rust_wasm_bindgen_deps__webpki-roots-0.25.2//:webpki_roots", + "@rrwbd__base64-0.21.5//:base64", + "@rrwbd__brotli-decompressor-2.5.1//:brotli_decompressor", + "@rrwbd__flate2-1.0.28//:flate2", + "@rrwbd__log-0.4.19//:log", + "@rrwbd__once_cell-1.18.0//:once_cell", + "@rrwbd__rustls-0.21.8//:rustls", + "@rrwbd__rustls-webpki-0.101.7//:webpki", + "@rrwbd__url-2.4.0//:url", + "@rrwbd__webpki-roots-0.25.2//:webpki_roots", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.url-2.4.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.url-2.4.0.bazel index 9158efa09a..4639a7819d 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.url-2.4.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.url-2.4.0.bazel @@ -82,8 +82,8 @@ rust_library( }), version = "2.4.0", deps = [ - "@rules_rust_wasm_bindgen_deps__form_urlencoded-1.2.0//:form_urlencoded", - "@rules_rust_wasm_bindgen_deps__idna-0.4.0//:idna", - "@rules_rust_wasm_bindgen_deps__percent-encoding-2.3.0//:percent_encoding", + "@rrwbd__form_urlencoded-1.2.0//:form_urlencoded", + "@rrwbd__idna-0.4.0//:idna", + "@rrwbd__percent-encoding-2.3.0//:percent_encoding", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wait-timeout-0.2.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wait-timeout-0.2.0.bazel index beadc03ecb..22de13bf71 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wait-timeout-0.2.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wait-timeout-0.2.0.bazel @@ -80,76 +80,76 @@ rust_library( version = "0.2.0", deps = select({ "@rules_rust//rust/platform:aarch64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-apple-ios-sim": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:aarch64-unknown-nto-qnx710": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-linux-androideabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-darwin": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-apple-ios": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-linux-android": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-freebsd": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-fuchsia": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__libc-0.2.150//:libc", # cfg(unix) + "@rrwbd__libc-0.2.150//:libc", # cfg(unix) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.walrus-0.20.3.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.walrus-0.20.3.bazel index f26dd4f0a0..9020dc39f4 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.walrus-0.20.3.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.walrus-0.20.3.bazel @@ -35,7 +35,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2018", proc_macro_deps = [ - "@rules_rust_wasm_bindgen_deps__walrus-macro-0.19.0//:walrus_macro", + "@rrwbd__walrus-macro-0.19.0//:walrus_macro", ], rustc_flags = [ "--cap-lints=allow", @@ -86,13 +86,13 @@ rust_library( }), version = "0.20.3", deps = [ - "@rules_rust_wasm_bindgen_deps__anyhow-1.0.71//:anyhow", - "@rules_rust_wasm_bindgen_deps__gimli-0.26.2//:gimli", - "@rules_rust_wasm_bindgen_deps__id-arena-2.2.1//:id_arena", - "@rules_rust_wasm_bindgen_deps__leb128-0.2.5//:leb128", - "@rules_rust_wasm_bindgen_deps__log-0.4.19//:log", - "@rules_rust_wasm_bindgen_deps__rayon-1.7.0//:rayon", - "@rules_rust_wasm_bindgen_deps__wasm-encoder-0.29.0//:wasm_encoder", - "@rules_rust_wasm_bindgen_deps__wasmparser-0.80.2//:wasmparser", + "@rrwbd__anyhow-1.0.71//:anyhow", + "@rrwbd__gimli-0.26.2//:gimli", + "@rrwbd__id-arena-2.2.1//:id_arena", + "@rrwbd__leb128-0.2.5//:leb128", + "@rrwbd__log-0.4.19//:log", + "@rrwbd__rayon-1.7.0//:rayon", + "@rrwbd__wasm-encoder-0.29.0//:wasm_encoder", + "@rrwbd__wasmparser-0.80.2//:wasmparser", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.walrus-macro-0.19.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.walrus-macro-0.19.0.bazel index 096b89ba75..ddb9b60e53 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.walrus-macro-0.19.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.walrus-macro-0.19.0.bazel @@ -79,9 +79,9 @@ rust_proc_macro( }), version = "0.19.0", deps = [ - "@rules_rust_wasm_bindgen_deps__heck-0.3.3//:heck", - "@rules_rust_wasm_bindgen_deps__proc-macro2-1.0.64//:proc_macro2", - "@rules_rust_wasm_bindgen_deps__quote-1.0.29//:quote", - "@rules_rust_wasm_bindgen_deps__syn-1.0.109//:syn", + "@rrwbd__heck-0.3.3//:heck", + "@rrwbd__proc-macro2-1.0.64//:proc_macro2", + "@rrwbd__quote-1.0.29//:quote", + "@rrwbd__syn-1.0.109//:syn", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-0.2.92.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-0.2.92.bazel index 7a8d42cf17..f139203c7f 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-0.2.92.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-0.2.92.bazel @@ -37,7 +37,7 @@ rust_library( crate_root = "src/lib.rs", edition = "2018", proc_macro_deps = [ - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-macro-0.2.92//:wasm_bindgen_macro", + "@rrwbd__wasm-bindgen-macro-0.2.92//:wasm_bindgen_macro", ], rustc_flags = [ "--cap-lints=allow", @@ -88,8 +88,8 @@ rust_library( }), version = "0.2.92", deps = [ - "@rules_rust_wasm_bindgen_deps__cfg-if-1.0.0//:cfg_if", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-0.2.92//:build_script_build", + "@rrwbd__cfg-if-1.0.0//:cfg_if", + "@rrwbd__wasm-bindgen-0.2.92//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-backend-0.2.92.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-backend-0.2.92.bazel index 194d038ad1..472385e219 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-backend-0.2.92.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-backend-0.2.92.bazel @@ -82,12 +82,12 @@ rust_library( }), version = "0.2.92", deps = [ - "@rules_rust_wasm_bindgen_deps__bumpalo-3.13.0//:bumpalo", - "@rules_rust_wasm_bindgen_deps__log-0.4.19//:log", - "@rules_rust_wasm_bindgen_deps__once_cell-1.18.0//:once_cell", - "@rules_rust_wasm_bindgen_deps__proc-macro2-1.0.64//:proc_macro2", - "@rules_rust_wasm_bindgen_deps__quote-1.0.29//:quote", - "@rules_rust_wasm_bindgen_deps__syn-2.0.25//:syn", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-shared-0.2.92//:wasm_bindgen_shared", + "@rrwbd__bumpalo-3.13.0//:bumpalo", + "@rrwbd__log-0.4.19//:log", + "@rrwbd__once_cell-1.18.0//:once_cell", + "@rrwbd__proc-macro2-1.0.64//:proc_macro2", + "@rrwbd__quote-1.0.29//:quote", + "@rrwbd__syn-2.0.25//:syn", + "@rrwbd__wasm-bindgen-shared-0.2.92//:wasm_bindgen_shared", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-cli-support-0.2.92.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-cli-support-0.2.92.bazel index a715278ad4..c60fae84b4 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-cli-support-0.2.92.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-cli-support-0.2.92.bazel @@ -79,19 +79,19 @@ rust_library( }), version = "0.2.92", deps = [ - "@rules_rust_wasm_bindgen_deps__anyhow-1.0.71//:anyhow", - "@rules_rust_wasm_bindgen_deps__base64-0.21.5//:base64", - "@rules_rust_wasm_bindgen_deps__log-0.4.19//:log", - "@rules_rust_wasm_bindgen_deps__rustc-demangle-0.1.23//:rustc_demangle", - "@rules_rust_wasm_bindgen_deps__serde_json-1.0.102//:serde_json", - "@rules_rust_wasm_bindgen_deps__tempfile-3.6.0//:tempfile", - "@rules_rust_wasm_bindgen_deps__unicode-ident-1.0.10//:unicode_ident", - "@rules_rust_wasm_bindgen_deps__walrus-0.20.3//:walrus", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-externref-xform-0.2.92//:wasm_bindgen_externref_xform", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-multi-value-xform-0.2.92//:wasm_bindgen_multi_value_xform", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-shared-0.2.92//:wasm_bindgen_shared", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-threads-xform-0.2.92//:wasm_bindgen_threads_xform", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-wasm-conventions-0.2.92//:wasm_bindgen_wasm_conventions", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-wasm-interpreter-0.2.92//:wasm_bindgen_wasm_interpreter", + "@rrwbd__anyhow-1.0.71//:anyhow", + "@rrwbd__base64-0.21.5//:base64", + "@rrwbd__log-0.4.19//:log", + "@rrwbd__rustc-demangle-0.1.23//:rustc_demangle", + "@rrwbd__serde_json-1.0.102//:serde_json", + "@rrwbd__tempfile-3.6.0//:tempfile", + "@rrwbd__unicode-ident-1.0.10//:unicode_ident", + "@rrwbd__walrus-0.20.3//:walrus", + "@rrwbd__wasm-bindgen-externref-xform-0.2.92//:wasm_bindgen_externref_xform", + "@rrwbd__wasm-bindgen-multi-value-xform-0.2.92//:wasm_bindgen_multi_value_xform", + "@rrwbd__wasm-bindgen-shared-0.2.92//:wasm_bindgen_shared", + "@rrwbd__wasm-bindgen-threads-xform-0.2.92//:wasm_bindgen_threads_xform", + "@rrwbd__wasm-bindgen-wasm-conventions-0.2.92//:wasm_bindgen_wasm_conventions", + "@rrwbd__wasm-bindgen-wasm-interpreter-0.2.92//:wasm_bindgen_wasm_interpreter", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-externref-xform-0.2.92.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-externref-xform-0.2.92.bazel index bf243da4cd..62d0fdae94 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-externref-xform-0.2.92.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-externref-xform-0.2.92.bazel @@ -79,7 +79,7 @@ rust_library( }), version = "0.2.92", deps = [ - "@rules_rust_wasm_bindgen_deps__anyhow-1.0.71//:anyhow", - "@rules_rust_wasm_bindgen_deps__walrus-0.20.3//:walrus", + "@rrwbd__anyhow-1.0.71//:anyhow", + "@rrwbd__walrus-0.20.3//:walrus", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-macro-0.2.92.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-macro-0.2.92.bazel index eeb81d0bb1..13ffd16a3f 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-macro-0.2.92.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-macro-0.2.92.bazel @@ -82,7 +82,7 @@ rust_proc_macro( }), version = "0.2.92", deps = [ - "@rules_rust_wasm_bindgen_deps__quote-1.0.29//:quote", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-macro-support-0.2.92//:wasm_bindgen_macro_support", + "@rrwbd__quote-1.0.29//:quote", + "@rrwbd__wasm-bindgen-macro-support-0.2.92//:wasm_bindgen_macro_support", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-macro-support-0.2.92.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-macro-support-0.2.92.bazel index 0f7e270f3f..8a9ae7f090 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-macro-support-0.2.92.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-macro-support-0.2.92.bazel @@ -82,10 +82,10 @@ rust_library( }), version = "0.2.92", deps = [ - "@rules_rust_wasm_bindgen_deps__proc-macro2-1.0.64//:proc_macro2", - "@rules_rust_wasm_bindgen_deps__quote-1.0.29//:quote", - "@rules_rust_wasm_bindgen_deps__syn-2.0.25//:syn", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-backend-0.2.92//:wasm_bindgen_backend", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-shared-0.2.92//:wasm_bindgen_shared", + "@rrwbd__proc-macro2-1.0.64//:proc_macro2", + "@rrwbd__quote-1.0.29//:quote", + "@rrwbd__syn-2.0.25//:syn", + "@rrwbd__wasm-bindgen-backend-0.2.92//:wasm_bindgen_backend", + "@rrwbd__wasm-bindgen-shared-0.2.92//:wasm_bindgen_shared", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-multi-value-xform-0.2.92.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-multi-value-xform-0.2.92.bazel index c7d99b9b8c..de21563929 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-multi-value-xform-0.2.92.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-multi-value-xform-0.2.92.bazel @@ -79,7 +79,7 @@ rust_library( }), version = "0.2.92", deps = [ - "@rules_rust_wasm_bindgen_deps__anyhow-1.0.71//:anyhow", - "@rules_rust_wasm_bindgen_deps__walrus-0.20.3//:walrus", + "@rrwbd__anyhow-1.0.71//:anyhow", + "@rrwbd__walrus-0.20.3//:walrus", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.92.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.92.bazel index d364507a8c..23b3589aaf 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.92.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-shared-0.2.92.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.2.92", deps = [ - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-shared-0.2.92//:build_script_build", + "@rrwbd__wasm-bindgen-shared-0.2.92//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-threads-xform-0.2.92.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-threads-xform-0.2.92.bazel index e06794e0fa..542c7f17b8 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-threads-xform-0.2.92.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-threads-xform-0.2.92.bazel @@ -79,8 +79,8 @@ rust_library( }), version = "0.2.92", deps = [ - "@rules_rust_wasm_bindgen_deps__anyhow-1.0.71//:anyhow", - "@rules_rust_wasm_bindgen_deps__walrus-0.20.3//:walrus", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-wasm-conventions-0.2.92//:wasm_bindgen_wasm_conventions", + "@rrwbd__anyhow-1.0.71//:anyhow", + "@rrwbd__walrus-0.20.3//:walrus", + "@rrwbd__wasm-bindgen-wasm-conventions-0.2.92//:wasm_bindgen_wasm_conventions", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-wasm-conventions-0.2.92.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-wasm-conventions-0.2.92.bazel index ac02b21d04..0557eef013 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-wasm-conventions-0.2.92.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-wasm-conventions-0.2.92.bazel @@ -79,7 +79,7 @@ rust_library( }), version = "0.2.92", deps = [ - "@rules_rust_wasm_bindgen_deps__anyhow-1.0.71//:anyhow", - "@rules_rust_wasm_bindgen_deps__walrus-0.20.3//:walrus", + "@rrwbd__anyhow-1.0.71//:anyhow", + "@rrwbd__walrus-0.20.3//:walrus", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-wasm-interpreter-0.2.92.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-wasm-interpreter-0.2.92.bazel index 0d16d37e3c..46565a410c 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-wasm-interpreter-0.2.92.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-bindgen-wasm-interpreter-0.2.92.bazel @@ -79,9 +79,9 @@ rust_library( }), version = "0.2.92", deps = [ - "@rules_rust_wasm_bindgen_deps__anyhow-1.0.71//:anyhow", - "@rules_rust_wasm_bindgen_deps__log-0.4.19//:log", - "@rules_rust_wasm_bindgen_deps__walrus-0.20.3//:walrus", - "@rules_rust_wasm_bindgen_deps__wasm-bindgen-wasm-conventions-0.2.92//:wasm_bindgen_wasm_conventions", + "@rrwbd__anyhow-1.0.71//:anyhow", + "@rrwbd__log-0.4.19//:log", + "@rrwbd__walrus-0.20.3//:walrus", + "@rrwbd__wasm-bindgen-wasm-conventions-0.2.92//:wasm_bindgen_wasm_conventions", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-encoder-0.29.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-encoder-0.29.0.bazel index 0f3708710b..7dae7f846f 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-encoder-0.29.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasm-encoder-0.29.0.bazel @@ -79,6 +79,6 @@ rust_library( }), version = "0.29.0", deps = [ - "@rules_rust_wasm_bindgen_deps__leb128-0.2.5//:leb128", + "@rrwbd__leb128-0.2.5//:leb128", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmparser-0.102.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmparser-0.102.0.bazel index f147abfe98..d34bd6999c 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmparser-0.102.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmparser-0.102.0.bazel @@ -79,7 +79,7 @@ rust_library( }), version = "0.102.0", deps = [ - "@rules_rust_wasm_bindgen_deps__indexmap-1.9.3//:indexmap", - "@rules_rust_wasm_bindgen_deps__url-2.4.0//:url", + "@rrwbd__indexmap-1.9.3//:indexmap", + "@rrwbd__url-2.4.0//:url", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmparser-0.108.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmparser-0.108.0.bazel index 8185efada5..cffd6c4c93 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmparser-0.108.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmparser-0.108.0.bazel @@ -79,7 +79,7 @@ rust_library( }), version = "0.108.0", deps = [ - "@rules_rust_wasm_bindgen_deps__indexmap-2.0.0//:indexmap", - "@rules_rust_wasm_bindgen_deps__semver-1.0.17//:semver", + "@rrwbd__indexmap-2.0.0//:indexmap", + "@rrwbd__semver-1.0.17//:semver", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmprinter-0.2.60.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmprinter-0.2.60.bazel index 7a4a405aef..32f5137166 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmprinter-0.2.60.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.wasmprinter-0.2.60.bazel @@ -79,7 +79,7 @@ rust_library( }), version = "0.2.60", deps = [ - "@rules_rust_wasm_bindgen_deps__anyhow-1.0.71//:anyhow", - "@rules_rust_wasm_bindgen_deps__wasmparser-0.108.0//:wasmparser", + "@rrwbd__anyhow-1.0.71//:anyhow", + "@rrwbd__wasmparser-0.108.0//:wasmparser", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel index a8c0fc6668..6a12ee7fc1 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-0.3.9.bazel @@ -95,7 +95,7 @@ rust_library( }), version = "0.3.9", deps = [ - "@rules_rust_wasm_bindgen_deps__winapi-0.3.9//:build_script_build", + "@rrwbd__winapi-0.3.9//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel index 4df9eb888f..0b548686f4 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-i686-pc-windows-gnu-0.4.0.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.4.0", deps = [ - "@rules_rust_wasm_bindgen_deps__winapi-i686-pc-windows-gnu-0.4.0//:build_script_build", + "@rrwbd__winapi-i686-pc-windows-gnu-0.4.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-util-0.1.5.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-util-0.1.5.bazel index e9b56c22eb..7eee2088aa 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-util-0.1.5.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-util-0.1.5.bazel @@ -80,13 +80,13 @@ rust_library( version = "0.1.5", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-0.3.9//:winapi", # cfg(windows) + "@rrwbd__winapi-0.3.9//:winapi", # cfg(windows) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-0.3.9//:winapi", # cfg(windows) + "@rrwbd__winapi-0.3.9//:winapi", # cfg(windows) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__winapi-0.3.9//:winapi", # cfg(windows) + "@rrwbd__winapi-0.3.9//:winapi", # cfg(windows) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel index a8143639cf..6b8beb999d 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.winapi-x86_64-pc-windows-gnu-0.4.0.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.4.0", deps = [ - "@rules_rust_wasm_bindgen_deps__winapi-x86_64-pc-windows-gnu-0.4.0//:build_script_build", + "@rrwbd__winapi-x86_64-pc-windows-gnu-0.4.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-0.48.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-0.48.0.bazel index 1513d7061e..a6a39887e7 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-0.48.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-0.48.0.bazel @@ -79,6 +79,6 @@ rust_library( }), version = "0.48.0", deps = [ - "@rules_rust_wasm_bindgen_deps__windows-targets-0.48.1//:windows_targets", + "@rrwbd__windows-targets-0.48.1//:windows_targets", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-sys-0.48.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-sys-0.48.0.bazel index 423a2b406f..3a849207af 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-sys-0.48.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-sys-0.48.0.bazel @@ -92,6 +92,6 @@ rust_library( }), version = "0.48.0", deps = [ - "@rules_rust_wasm_bindgen_deps__windows-targets-0.48.1//:windows_targets", + "@rrwbd__windows-targets-0.48.1//:windows_targets", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-targets-0.48.1.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-targets-0.48.1.bazel index 67fa2874d4..8bf6badeb2 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-targets-0.48.1.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows-targets-0.48.1.bazel @@ -80,22 +80,22 @@ rust_library( version = "0.48.1", deps = select({ "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows_aarch64_msvc-0.48.0//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) + "@rrwbd__windows_aarch64_msvc-0.48.0//:windows_aarch64_msvc", # cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows_i686_msvc-0.48.0//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) + "@rrwbd__windows_i686_msvc-0.48.0//:windows_i686_msvc", # cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:i686-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__windows_i686_gnu-0.48.0//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(windows_raw_dylib))) + "@rrwbd__windows_i686_gnu-0.48.0//:windows_i686_gnu", # cfg(all(target_arch = "x86", target_env = "gnu", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [ - "@rules_rust_wasm_bindgen_deps__windows_x86_64_msvc-0.48.0//:windows_x86_64_msvc", # cfg(all(target_arch = "x86_64", target_env = "msvc", not(windows_raw_dylib))) + "@rrwbd__windows_x86_64_msvc-0.48.0//:windows_x86_64_msvc", # cfg(all(target_arch = "x86_64", target_env = "msvc", not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [ - "@rules_rust_wasm_bindgen_deps__windows_x86_64_gnu-0.48.0//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@rrwbd__windows_x86_64_gnu-0.48.0//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "@rules_rust//rust/platform:x86_64-unknown-nixos-gnu": [ - "@rules_rust_wasm_bindgen_deps__windows_x86_64_gnu-0.48.0//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) + "@rrwbd__windows_x86_64_gnu-0.48.0//:windows_x86_64_gnu", # cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib))) ], "//conditions:default": [], }), diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel index 73377c1e83..9e5b5f0006 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_gnullvm-0.48.0.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.48.0", deps = [ - "@rules_rust_wasm_bindgen_deps__windows_aarch64_gnullvm-0.48.0//:build_script_build", + "@rrwbd__windows_aarch64_gnullvm-0.48.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel index 914de4ffbe..97cd6fb7d3 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_aarch64_msvc-0.48.0.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.48.0", deps = [ - "@rules_rust_wasm_bindgen_deps__windows_aarch64_msvc-0.48.0//:build_script_build", + "@rrwbd__windows_aarch64_msvc-0.48.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel index d5957e0122..770717731d 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_gnu-0.48.0.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.48.0", deps = [ - "@rules_rust_wasm_bindgen_deps__windows_i686_gnu-0.48.0//:build_script_build", + "@rrwbd__windows_i686_gnu-0.48.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel index bd1491a948..b587aa356e 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_i686_msvc-0.48.0.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.48.0", deps = [ - "@rules_rust_wasm_bindgen_deps__windows_i686_msvc-0.48.0//:build_script_build", + "@rrwbd__windows_i686_msvc-0.48.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel index 00d9aa1a2a..e882ed12a4 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnu-0.48.0.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.48.0", deps = [ - "@rules_rust_wasm_bindgen_deps__windows_x86_64_gnu-0.48.0//:build_script_build", + "@rrwbd__windows_x86_64_gnu-0.48.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel index dba1d6349d..e879e05fdc 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_gnullvm-0.48.0.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.48.0", deps = [ - "@rules_rust_wasm_bindgen_deps__windows_x86_64_gnullvm-0.48.0//:build_script_build", + "@rrwbd__windows_x86_64_gnullvm-0.48.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel index 49dcd171d8..0bfaa93f4e 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel +++ b/extensions/wasm_bindgen/3rdparty/crates/BUILD.windows_x86_64_msvc-0.48.0.bazel @@ -80,7 +80,7 @@ rust_library( }), version = "0.48.0", deps = [ - "@rules_rust_wasm_bindgen_deps__windows_x86_64_msvc-0.48.0//:build_script_build", + "@rrwbd__windows_x86_64_msvc-0.48.0//:build_script_build", ], ) diff --git a/extensions/wasm_bindgen/3rdparty/crates/crates.bzl b/extensions/wasm_bindgen/3rdparty/crates/crates.bzl index dd7c0bd069..658e0d13eb 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/crates.bzl +++ b/extensions/wasm_bindgen/3rdparty/crates/crates.bzl @@ -22,11 +22,11 @@ def crate_repositories(): """ maybe( crates_vendor_remote_repository, - name = "rules_rust_wasm_bindgen_deps", + name = "rrwbd", build_file = Label("@rules_rust_wasm_bindgen//3rdparty/crates:BUILD.bazel"), defs_module = Label("@rules_rust_wasm_bindgen//3rdparty/crates:defs.bzl"), ) - direct_deps = [struct(repo = "rules_rust_wasm_bindgen_deps", is_dev_dep = False)] + direct_deps = [struct(repo = "rrwbd", is_dev_dep = False)] direct_deps.extend(_crate_repositories()) return direct_deps diff --git a/extensions/wasm_bindgen/3rdparty/crates/defs.bzl b/extensions/wasm_bindgen/3rdparty/crates/defs.bzl index 7443ef7fda..d14d3daa2a 100644 --- a/extensions/wasm_bindgen/3rdparty/crates/defs.bzl +++ b/extensions/wasm_bindgen/3rdparty/crates/defs.bzl @@ -295,18 +295,18 @@ def aliases( _NORMAL_DEPENDENCIES = { "": { _COMMON_CONDITION: { - "anyhow": Label("@rules_rust_wasm_bindgen_deps__anyhow-1.0.71//:anyhow"), - "docopt": Label("@rules_rust_wasm_bindgen_deps__docopt-1.1.1//:docopt"), - "env_logger": Label("@rules_rust_wasm_bindgen_deps__env_logger-0.8.4//:env_logger"), - "log": Label("@rules_rust_wasm_bindgen_deps__log-0.4.19//:log"), - "rouille": Label("@rules_rust_wasm_bindgen_deps__rouille-3.6.2//:rouille"), - "serde": Label("@rules_rust_wasm_bindgen_deps__serde-1.0.171//:serde"), - "serde_json": Label("@rules_rust_wasm_bindgen_deps__serde_json-1.0.102//:serde_json"), - "ureq": Label("@rules_rust_wasm_bindgen_deps__ureq-2.8.0//:ureq"), - "walrus": Label("@rules_rust_wasm_bindgen_deps__walrus-0.20.3//:walrus"), - "wasm-bindgen": Label("@rules_rust_wasm_bindgen_deps__wasm-bindgen-0.2.92//:wasm_bindgen"), - "wasm-bindgen-cli-support": Label("@rules_rust_wasm_bindgen_deps__wasm-bindgen-cli-support-0.2.92//:wasm_bindgen_cli_support"), - "wasm-bindgen-shared": Label("@rules_rust_wasm_bindgen_deps__wasm-bindgen-shared-0.2.92//:wasm_bindgen_shared"), + "anyhow": Label("@rrwbd__anyhow-1.0.71//:anyhow"), + "docopt": Label("@rrwbd__docopt-1.1.1//:docopt"), + "env_logger": Label("@rrwbd__env_logger-0.8.4//:env_logger"), + "log": Label("@rrwbd__log-0.4.19//:log"), + "rouille": Label("@rrwbd__rouille-3.6.2//:rouille"), + "serde": Label("@rrwbd__serde-1.0.171//:serde"), + "serde_json": Label("@rrwbd__serde_json-1.0.102//:serde_json"), + "ureq": Label("@rrwbd__ureq-2.8.0//:ureq"), + "walrus": Label("@rrwbd__walrus-0.20.3//:walrus"), + "wasm-bindgen": Label("@rrwbd__wasm-bindgen-0.2.92//:wasm_bindgen"), + "wasm-bindgen-cli-support": Label("@rrwbd__wasm-bindgen-cli-support-0.2.92//:wasm_bindgen_cli_support"), + "wasm-bindgen-shared": Label("@rrwbd__wasm-bindgen-shared-0.2.92//:wasm_bindgen_shared"), }, }, } @@ -321,13 +321,13 @@ _NORMAL_ALIASES = { _NORMAL_DEV_DEPENDENCIES = { "": { _COMMON_CONDITION: { - "assert_cmd": Label("@rules_rust_wasm_bindgen_deps__assert_cmd-1.0.8//:assert_cmd"), - "diff": Label("@rules_rust_wasm_bindgen_deps__diff-0.1.13//:diff"), - "predicates": Label("@rules_rust_wasm_bindgen_deps__predicates-1.0.8//:predicates"), - "rayon": Label("@rules_rust_wasm_bindgen_deps__rayon-1.7.0//:rayon"), - "tempfile": Label("@rules_rust_wasm_bindgen_deps__tempfile-3.6.0//:tempfile"), - "wasmparser": Label("@rules_rust_wasm_bindgen_deps__wasmparser-0.102.0//:wasmparser"), - "wasmprinter": Label("@rules_rust_wasm_bindgen_deps__wasmprinter-0.2.60//:wasmprinter"), + "assert_cmd": Label("@rrwbd__assert_cmd-1.0.8//:assert_cmd"), + "diff": Label("@rrwbd__diff-0.1.13//:diff"), + "predicates": Label("@rrwbd__predicates-1.0.8//:predicates"), + "rayon": Label("@rrwbd__rayon-1.7.0//:rayon"), + "tempfile": Label("@rrwbd__tempfile-3.6.0//:tempfile"), + "wasmparser": Label("@rrwbd__wasmparser-0.102.0//:wasmparser"), + "wasmprinter": Label("@rrwbd__wasmprinter-0.2.60//:wasmprinter"), }, }, } @@ -342,7 +342,7 @@ _NORMAL_DEV_ALIASES = { _PROC_MACRO_DEPENDENCIES = { "": { _COMMON_CONDITION: { - "serde_derive": Label("@rules_rust_wasm_bindgen_deps__serde_derive-1.0.171//:serde_derive"), + "serde_derive": Label("@rrwbd__serde_derive-1.0.171//:serde_derive"), }, }, } @@ -461,7 +461,7 @@ def crate_repositories(): """ maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__adler-1.0.2", + name = "rrwbd__adler-1.0.2", sha256 = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe", type = "tar.gz", urls = ["https://static.crates.io/crates/adler/1.0.2/download"], @@ -471,7 +471,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__aho-corasick-1.0.2", + name = "rrwbd__aho-corasick-1.0.2", sha256 = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41", type = "tar.gz", urls = ["https://static.crates.io/crates/aho-corasick/1.0.2/download"], @@ -481,7 +481,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__alloc-no-stdlib-2.0.4", + name = "rrwbd__alloc-no-stdlib-2.0.4", sha256 = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3", type = "tar.gz", urls = ["https://static.crates.io/crates/alloc-no-stdlib/2.0.4/download"], @@ -491,7 +491,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__alloc-stdlib-0.2.2", + name = "rrwbd__alloc-stdlib-0.2.2", sha256 = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece", type = "tar.gz", urls = ["https://static.crates.io/crates/alloc-stdlib/0.2.2/download"], @@ -501,7 +501,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__android-tzdata-0.1.1", + name = "rrwbd__android-tzdata-0.1.1", sha256 = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0", type = "tar.gz", urls = ["https://static.crates.io/crates/android-tzdata/0.1.1/download"], @@ -511,7 +511,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__android_system_properties-0.1.5", + name = "rrwbd__android_system_properties-0.1.5", sha256 = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311", type = "tar.gz", urls = ["https://static.crates.io/crates/android_system_properties/0.1.5/download"], @@ -521,7 +521,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__anyhow-1.0.71", + name = "rrwbd__anyhow-1.0.71", sha256 = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8", type = "tar.gz", urls = ["https://static.crates.io/crates/anyhow/1.0.71/download"], @@ -531,7 +531,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__ascii-1.1.0", + name = "rrwbd__ascii-1.1.0", sha256 = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16", type = "tar.gz", urls = ["https://static.crates.io/crates/ascii/1.1.0/download"], @@ -541,7 +541,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__assert_cmd-1.0.8", + name = "rrwbd__assert_cmd-1.0.8", sha256 = "c98233c6673d8601ab23e77eb38f999c51100d46c5703b17288c57fddf3a1ffe", type = "tar.gz", urls = ["https://static.crates.io/crates/assert_cmd/1.0.8/download"], @@ -551,7 +551,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__atty-0.2.14", + name = "rrwbd__atty-0.2.14", sha256 = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8", type = "tar.gz", urls = ["https://static.crates.io/crates/atty/0.2.14/download"], @@ -561,7 +561,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__autocfg-1.1.0", + name = "rrwbd__autocfg-1.1.0", sha256 = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa", type = "tar.gz", urls = ["https://static.crates.io/crates/autocfg/1.1.0/download"], @@ -571,7 +571,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__base64-0.13.1", + name = "rrwbd__base64-0.13.1", sha256 = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8", type = "tar.gz", urls = ["https://static.crates.io/crates/base64/0.13.1/download"], @@ -581,7 +581,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__base64-0.21.5", + name = "rrwbd__base64-0.21.5", sha256 = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9", type = "tar.gz", urls = ["https://static.crates.io/crates/base64/0.21.5/download"], @@ -591,7 +591,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__bitflags-1.3.2", + name = "rrwbd__bitflags-1.3.2", sha256 = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a", type = "tar.gz", urls = ["https://static.crates.io/crates/bitflags/1.3.2/download"], @@ -601,7 +601,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__brotli-decompressor-2.5.1", + name = "rrwbd__brotli-decompressor-2.5.1", sha256 = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f", type = "tar.gz", urls = ["https://static.crates.io/crates/brotli-decompressor/2.5.1/download"], @@ -611,7 +611,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__bstr-0.2.17", + name = "rrwbd__bstr-0.2.17", sha256 = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223", type = "tar.gz", urls = ["https://static.crates.io/crates/bstr/0.2.17/download"], @@ -621,7 +621,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__buf_redux-0.8.4", + name = "rrwbd__buf_redux-0.8.4", sha256 = "b953a6887648bb07a535631f2bc00fbdb2a2216f135552cb3f534ed136b9c07f", type = "tar.gz", urls = ["https://static.crates.io/crates/buf_redux/0.8.4/download"], @@ -631,7 +631,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__bumpalo-3.13.0", + name = "rrwbd__bumpalo-3.13.0", sha256 = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1", type = "tar.gz", urls = ["https://static.crates.io/crates/bumpalo/3.13.0/download"], @@ -641,7 +641,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__cc-1.0.83", + name = "rrwbd__cc-1.0.83", sha256 = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0", type = "tar.gz", urls = ["https://static.crates.io/crates/cc/1.0.83/download"], @@ -651,7 +651,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__cfg-if-1.0.0", + name = "rrwbd__cfg-if-1.0.0", sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd", type = "tar.gz", urls = ["https://static.crates.io/crates/cfg-if/1.0.0/download"], @@ -661,7 +661,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__chrono-0.4.26", + name = "rrwbd__chrono-0.4.26", sha256 = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5", type = "tar.gz", urls = ["https://static.crates.io/crates/chrono/0.4.26/download"], @@ -671,7 +671,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__chunked_transfer-1.4.1", + name = "rrwbd__chunked_transfer-1.4.1", sha256 = "cca491388666e04d7248af3f60f0c40cfb0991c72205595d7c396e3510207d1a", type = "tar.gz", urls = ["https://static.crates.io/crates/chunked_transfer/1.4.1/download"], @@ -681,7 +681,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__core-foundation-sys-0.8.4", + name = "rrwbd__core-foundation-sys-0.8.4", sha256 = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa", type = "tar.gz", urls = ["https://static.crates.io/crates/core-foundation-sys/0.8.4/download"], @@ -691,7 +691,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__crc32fast-1.3.2", + name = "rrwbd__crc32fast-1.3.2", sha256 = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d", type = "tar.gz", urls = ["https://static.crates.io/crates/crc32fast/1.3.2/download"], @@ -701,7 +701,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__crossbeam-channel-0.5.8", + name = "rrwbd__crossbeam-channel-0.5.8", sha256 = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200", type = "tar.gz", urls = ["https://static.crates.io/crates/crossbeam-channel/0.5.8/download"], @@ -711,7 +711,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__crossbeam-deque-0.8.3", + name = "rrwbd__crossbeam-deque-0.8.3", sha256 = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef", type = "tar.gz", urls = ["https://static.crates.io/crates/crossbeam-deque/0.8.3/download"], @@ -721,7 +721,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__crossbeam-epoch-0.9.15", + name = "rrwbd__crossbeam-epoch-0.9.15", sha256 = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7", type = "tar.gz", urls = ["https://static.crates.io/crates/crossbeam-epoch/0.9.15/download"], @@ -731,7 +731,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__crossbeam-utils-0.8.16", + name = "rrwbd__crossbeam-utils-0.8.16", sha256 = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294", type = "tar.gz", urls = ["https://static.crates.io/crates/crossbeam-utils/0.8.16/download"], @@ -741,7 +741,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__diff-0.1.13", + name = "rrwbd__diff-0.1.13", sha256 = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8", type = "tar.gz", urls = ["https://static.crates.io/crates/diff/0.1.13/download"], @@ -751,7 +751,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__difference-2.0.0", + name = "rrwbd__difference-2.0.0", sha256 = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198", type = "tar.gz", urls = ["https://static.crates.io/crates/difference/2.0.0/download"], @@ -761,7 +761,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__difflib-0.4.0", + name = "rrwbd__difflib-0.4.0", sha256 = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8", type = "tar.gz", urls = ["https://static.crates.io/crates/difflib/0.4.0/download"], @@ -771,7 +771,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__doc-comment-0.3.3", + name = "rrwbd__doc-comment-0.3.3", sha256 = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10", type = "tar.gz", urls = ["https://static.crates.io/crates/doc-comment/0.3.3/download"], @@ -781,7 +781,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__docopt-1.1.1", + name = "rrwbd__docopt-1.1.1", sha256 = "7f3f119846c823f9eafcf953a8f6ffb6ed69bf6240883261a7f13b634579a51f", type = "tar.gz", urls = ["https://static.crates.io/crates/docopt/1.1.1/download"], @@ -791,7 +791,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__either-1.8.1", + name = "rrwbd__either-1.8.1", sha256 = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91", type = "tar.gz", urls = ["https://static.crates.io/crates/either/1.8.1/download"], @@ -801,7 +801,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__env_logger-0.8.4", + name = "rrwbd__env_logger-0.8.4", sha256 = "a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3", type = "tar.gz", urls = ["https://static.crates.io/crates/env_logger/0.8.4/download"], @@ -811,7 +811,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__equivalent-1.0.1", + name = "rrwbd__equivalent-1.0.1", sha256 = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5", type = "tar.gz", urls = ["https://static.crates.io/crates/equivalent/1.0.1/download"], @@ -821,7 +821,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__errno-0.3.1", + name = "rrwbd__errno-0.3.1", sha256 = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a", type = "tar.gz", urls = ["https://static.crates.io/crates/errno/0.3.1/download"], @@ -831,7 +831,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__errno-dragonfly-0.1.2", + name = "rrwbd__errno-dragonfly-0.1.2", sha256 = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf", type = "tar.gz", urls = ["https://static.crates.io/crates/errno-dragonfly/0.1.2/download"], @@ -841,7 +841,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__fallible-iterator-0.2.0", + name = "rrwbd__fallible-iterator-0.2.0", sha256 = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7", type = "tar.gz", urls = ["https://static.crates.io/crates/fallible-iterator/0.2.0/download"], @@ -851,7 +851,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__fastrand-1.9.0", + name = "rrwbd__fastrand-1.9.0", sha256 = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be", type = "tar.gz", urls = ["https://static.crates.io/crates/fastrand/1.9.0/download"], @@ -861,7 +861,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__filetime-0.2.21", + name = "rrwbd__filetime-0.2.21", sha256 = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153", type = "tar.gz", urls = ["https://static.crates.io/crates/filetime/0.2.21/download"], @@ -871,7 +871,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__flate2-1.0.28", + name = "rrwbd__flate2-1.0.28", sha256 = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e", type = "tar.gz", urls = ["https://static.crates.io/crates/flate2/1.0.28/download"], @@ -881,7 +881,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__float-cmp-0.8.0", + name = "rrwbd__float-cmp-0.8.0", sha256 = "e1267f4ac4f343772758f7b1bdcbe767c218bbab93bb432acbf5162bbf85a6c4", type = "tar.gz", urls = ["https://static.crates.io/crates/float-cmp/0.8.0/download"], @@ -891,7 +891,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__form_urlencoded-1.2.0", + name = "rrwbd__form_urlencoded-1.2.0", sha256 = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652", type = "tar.gz", urls = ["https://static.crates.io/crates/form_urlencoded/1.2.0/download"], @@ -901,7 +901,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__getrandom-0.2.10", + name = "rrwbd__getrandom-0.2.10", sha256 = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427", type = "tar.gz", urls = ["https://static.crates.io/crates/getrandom/0.2.10/download"], @@ -911,7 +911,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__gimli-0.26.2", + name = "rrwbd__gimli-0.26.2", sha256 = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d", type = "tar.gz", urls = ["https://static.crates.io/crates/gimli/0.26.2/download"], @@ -921,7 +921,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__hashbrown-0.12.3", + name = "rrwbd__hashbrown-0.12.3", sha256 = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888", type = "tar.gz", urls = ["https://static.crates.io/crates/hashbrown/0.12.3/download"], @@ -931,7 +931,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__hashbrown-0.14.0", + name = "rrwbd__hashbrown-0.14.0", sha256 = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a", type = "tar.gz", urls = ["https://static.crates.io/crates/hashbrown/0.14.0/download"], @@ -941,7 +941,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__heck-0.3.3", + name = "rrwbd__heck-0.3.3", sha256 = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c", type = "tar.gz", urls = ["https://static.crates.io/crates/heck/0.3.3/download"], @@ -951,7 +951,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__hermit-abi-0.1.19", + name = "rrwbd__hermit-abi-0.1.19", sha256 = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33", type = "tar.gz", urls = ["https://static.crates.io/crates/hermit-abi/0.1.19/download"], @@ -961,7 +961,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__hermit-abi-0.3.2", + name = "rrwbd__hermit-abi-0.3.2", sha256 = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b", type = "tar.gz", urls = ["https://static.crates.io/crates/hermit-abi/0.3.2/download"], @@ -971,7 +971,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__httparse-1.8.0", + name = "rrwbd__httparse-1.8.0", sha256 = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904", type = "tar.gz", urls = ["https://static.crates.io/crates/httparse/1.8.0/download"], @@ -981,7 +981,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__httpdate-1.0.2", + name = "rrwbd__httpdate-1.0.2", sha256 = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421", type = "tar.gz", urls = ["https://static.crates.io/crates/httpdate/1.0.2/download"], @@ -991,7 +991,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__humantime-2.1.0", + name = "rrwbd__humantime-2.1.0", sha256 = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4", type = "tar.gz", urls = ["https://static.crates.io/crates/humantime/2.1.0/download"], @@ -1001,7 +1001,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__iana-time-zone-0.1.57", + name = "rrwbd__iana-time-zone-0.1.57", sha256 = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613", type = "tar.gz", urls = ["https://static.crates.io/crates/iana-time-zone/0.1.57/download"], @@ -1011,7 +1011,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__iana-time-zone-haiku-0.1.2", + name = "rrwbd__iana-time-zone-haiku-0.1.2", sha256 = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f", type = "tar.gz", urls = ["https://static.crates.io/crates/iana-time-zone-haiku/0.1.2/download"], @@ -1021,7 +1021,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__id-arena-2.2.1", + name = "rrwbd__id-arena-2.2.1", sha256 = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005", type = "tar.gz", urls = ["https://static.crates.io/crates/id-arena/2.2.1/download"], @@ -1031,7 +1031,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__idna-0.4.0", + name = "rrwbd__idna-0.4.0", sha256 = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c", type = "tar.gz", urls = ["https://static.crates.io/crates/idna/0.4.0/download"], @@ -1041,7 +1041,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__indexmap-1.9.3", + name = "rrwbd__indexmap-1.9.3", sha256 = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99", type = "tar.gz", urls = ["https://static.crates.io/crates/indexmap/1.9.3/download"], @@ -1051,7 +1051,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__indexmap-2.0.0", + name = "rrwbd__indexmap-2.0.0", sha256 = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d", type = "tar.gz", urls = ["https://static.crates.io/crates/indexmap/2.0.0/download"], @@ -1061,7 +1061,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__instant-0.1.12", + name = "rrwbd__instant-0.1.12", sha256 = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c", type = "tar.gz", urls = ["https://static.crates.io/crates/instant/0.1.12/download"], @@ -1071,7 +1071,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__io-lifetimes-1.0.11", + name = "rrwbd__io-lifetimes-1.0.11", sha256 = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2", type = "tar.gz", urls = ["https://static.crates.io/crates/io-lifetimes/1.0.11/download"], @@ -1081,7 +1081,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__itertools-0.10.5", + name = "rrwbd__itertools-0.10.5", sha256 = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473", type = "tar.gz", urls = ["https://static.crates.io/crates/itertools/0.10.5/download"], @@ -1091,7 +1091,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__itoa-1.0.8", + name = "rrwbd__itoa-1.0.8", sha256 = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a", type = "tar.gz", urls = ["https://static.crates.io/crates/itoa/1.0.8/download"], @@ -1101,7 +1101,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__js-sys-0.3.64", + name = "rrwbd__js-sys-0.3.64", sha256 = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a", type = "tar.gz", urls = ["https://static.crates.io/crates/js-sys/0.3.64/download"], @@ -1111,7 +1111,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__lazy_static-1.4.0", + name = "rrwbd__lazy_static-1.4.0", sha256 = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646", type = "tar.gz", urls = ["https://static.crates.io/crates/lazy_static/1.4.0/download"], @@ -1121,7 +1121,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__leb128-0.2.5", + name = "rrwbd__leb128-0.2.5", sha256 = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67", type = "tar.gz", urls = ["https://static.crates.io/crates/leb128/0.2.5/download"], @@ -1131,7 +1131,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__libc-0.2.150", + name = "rrwbd__libc-0.2.150", sha256 = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c", type = "tar.gz", urls = ["https://static.crates.io/crates/libc/0.2.150/download"], @@ -1141,7 +1141,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__linux-raw-sys-0.3.8", + name = "rrwbd__linux-raw-sys-0.3.8", sha256 = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519", type = "tar.gz", urls = ["https://static.crates.io/crates/linux-raw-sys/0.3.8/download"], @@ -1151,7 +1151,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__log-0.4.19", + name = "rrwbd__log-0.4.19", sha256 = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4", type = "tar.gz", urls = ["https://static.crates.io/crates/log/0.4.19/download"], @@ -1161,7 +1161,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__memchr-2.5.0", + name = "rrwbd__memchr-2.5.0", sha256 = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d", type = "tar.gz", urls = ["https://static.crates.io/crates/memchr/2.5.0/download"], @@ -1171,7 +1171,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__memoffset-0.9.0", + name = "rrwbd__memoffset-0.9.0", sha256 = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c", type = "tar.gz", urls = ["https://static.crates.io/crates/memoffset/0.9.0/download"], @@ -1181,7 +1181,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__mime-0.3.17", + name = "rrwbd__mime-0.3.17", sha256 = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a", type = "tar.gz", urls = ["https://static.crates.io/crates/mime/0.3.17/download"], @@ -1191,7 +1191,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__mime_guess-2.0.4", + name = "rrwbd__mime_guess-2.0.4", sha256 = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef", type = "tar.gz", urls = ["https://static.crates.io/crates/mime_guess/2.0.4/download"], @@ -1201,7 +1201,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__miniz_oxide-0.7.1", + name = "rrwbd__miniz_oxide-0.7.1", sha256 = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7", type = "tar.gz", urls = ["https://static.crates.io/crates/miniz_oxide/0.7.1/download"], @@ -1211,7 +1211,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__multipart-0.18.0", + name = "rrwbd__multipart-0.18.0", sha256 = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182", type = "tar.gz", urls = ["https://static.crates.io/crates/multipart/0.18.0/download"], @@ -1221,7 +1221,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__normalize-line-endings-0.3.0", + name = "rrwbd__normalize-line-endings-0.3.0", sha256 = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be", type = "tar.gz", urls = ["https://static.crates.io/crates/normalize-line-endings/0.3.0/download"], @@ -1231,7 +1231,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__num-traits-0.2.15", + name = "rrwbd__num-traits-0.2.15", sha256 = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd", type = "tar.gz", urls = ["https://static.crates.io/crates/num-traits/0.2.15/download"], @@ -1241,7 +1241,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__num_cpus-1.16.0", + name = "rrwbd__num_cpus-1.16.0", sha256 = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43", type = "tar.gz", urls = ["https://static.crates.io/crates/num_cpus/1.16.0/download"], @@ -1251,7 +1251,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__num_threads-0.1.6", + name = "rrwbd__num_threads-0.1.6", sha256 = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44", type = "tar.gz", urls = ["https://static.crates.io/crates/num_threads/0.1.6/download"], @@ -1261,7 +1261,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__once_cell-1.18.0", + name = "rrwbd__once_cell-1.18.0", sha256 = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d", type = "tar.gz", urls = ["https://static.crates.io/crates/once_cell/1.18.0/download"], @@ -1271,7 +1271,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__percent-encoding-2.3.0", + name = "rrwbd__percent-encoding-2.3.0", sha256 = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94", type = "tar.gz", urls = ["https://static.crates.io/crates/percent-encoding/2.3.0/download"], @@ -1281,7 +1281,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__ppv-lite86-0.2.17", + name = "rrwbd__ppv-lite86-0.2.17", sha256 = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de", type = "tar.gz", urls = ["https://static.crates.io/crates/ppv-lite86/0.2.17/download"], @@ -1291,7 +1291,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__predicates-1.0.8", + name = "rrwbd__predicates-1.0.8", sha256 = "f49cfaf7fdaa3bfacc6fa3e7054e65148878354a5cfddcf661df4c851f8021df", type = "tar.gz", urls = ["https://static.crates.io/crates/predicates/1.0.8/download"], @@ -1301,7 +1301,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__predicates-2.1.5", + name = "rrwbd__predicates-2.1.5", sha256 = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd", type = "tar.gz", urls = ["https://static.crates.io/crates/predicates/2.1.5/download"], @@ -1311,7 +1311,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__predicates-core-1.0.6", + name = "rrwbd__predicates-core-1.0.6", sha256 = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174", type = "tar.gz", urls = ["https://static.crates.io/crates/predicates-core/1.0.6/download"], @@ -1321,7 +1321,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__predicates-tree-1.0.9", + name = "rrwbd__predicates-tree-1.0.9", sha256 = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf", type = "tar.gz", urls = ["https://static.crates.io/crates/predicates-tree/1.0.9/download"], @@ -1331,7 +1331,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__proc-macro2-1.0.64", + name = "rrwbd__proc-macro2-1.0.64", sha256 = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da", type = "tar.gz", urls = ["https://static.crates.io/crates/proc-macro2/1.0.64/download"], @@ -1341,7 +1341,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__quick-error-1.2.3", + name = "rrwbd__quick-error-1.2.3", sha256 = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0", type = "tar.gz", urls = ["https://static.crates.io/crates/quick-error/1.2.3/download"], @@ -1351,7 +1351,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__quote-1.0.29", + name = "rrwbd__quote-1.0.29", sha256 = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105", type = "tar.gz", urls = ["https://static.crates.io/crates/quote/1.0.29/download"], @@ -1361,7 +1361,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__rand-0.8.5", + name = "rrwbd__rand-0.8.5", sha256 = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404", type = "tar.gz", urls = ["https://static.crates.io/crates/rand/0.8.5/download"], @@ -1371,7 +1371,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__rand_chacha-0.3.1", + name = "rrwbd__rand_chacha-0.3.1", sha256 = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88", type = "tar.gz", urls = ["https://static.crates.io/crates/rand_chacha/0.3.1/download"], @@ -1381,7 +1381,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__rand_core-0.6.4", + name = "rrwbd__rand_core-0.6.4", sha256 = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c", type = "tar.gz", urls = ["https://static.crates.io/crates/rand_core/0.6.4/download"], @@ -1391,7 +1391,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__rayon-1.7.0", + name = "rrwbd__rayon-1.7.0", sha256 = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b", type = "tar.gz", urls = ["https://static.crates.io/crates/rayon/1.7.0/download"], @@ -1401,7 +1401,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__rayon-core-1.11.0", + name = "rrwbd__rayon-core-1.11.0", sha256 = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d", type = "tar.gz", urls = ["https://static.crates.io/crates/rayon-core/1.11.0/download"], @@ -1411,7 +1411,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__redox_syscall-0.2.16", + name = "rrwbd__redox_syscall-0.2.16", sha256 = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a", type = "tar.gz", urls = ["https://static.crates.io/crates/redox_syscall/0.2.16/download"], @@ -1421,7 +1421,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__redox_syscall-0.3.5", + name = "rrwbd__redox_syscall-0.3.5", sha256 = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29", type = "tar.gz", urls = ["https://static.crates.io/crates/redox_syscall/0.3.5/download"], @@ -1431,7 +1431,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__regex-1.9.1", + name = "rrwbd__regex-1.9.1", sha256 = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575", type = "tar.gz", urls = ["https://static.crates.io/crates/regex/1.9.1/download"], @@ -1441,7 +1441,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__regex-automata-0.1.10", + name = "rrwbd__regex-automata-0.1.10", sha256 = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132", type = "tar.gz", urls = ["https://static.crates.io/crates/regex-automata/0.1.10/download"], @@ -1451,7 +1451,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__regex-automata-0.3.3", + name = "rrwbd__regex-automata-0.3.3", sha256 = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310", type = "tar.gz", urls = ["https://static.crates.io/crates/regex-automata/0.3.3/download"], @@ -1461,7 +1461,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__regex-syntax-0.7.4", + name = "rrwbd__regex-syntax-0.7.4", sha256 = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2", type = "tar.gz", urls = ["https://static.crates.io/crates/regex-syntax/0.7.4/download"], @@ -1471,7 +1471,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__ring-0.17.5", + name = "rrwbd__ring-0.17.5", sha256 = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b", type = "tar.gz", urls = ["https://static.crates.io/crates/ring/0.17.5/download"], @@ -1481,7 +1481,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__rouille-3.6.2", + name = "rrwbd__rouille-3.6.2", sha256 = "3716fbf57fc1084d7a706adf4e445298d123e4a44294c4e8213caf1b85fcc921", type = "tar.gz", urls = ["https://static.crates.io/crates/rouille/3.6.2/download"], @@ -1491,7 +1491,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__rustc-demangle-0.1.23", + name = "rrwbd__rustc-demangle-0.1.23", sha256 = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76", type = "tar.gz", urls = ["https://static.crates.io/crates/rustc-demangle/0.1.23/download"], @@ -1501,7 +1501,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__rustix-0.37.23", + name = "rrwbd__rustix-0.37.23", sha256 = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06", type = "tar.gz", urls = ["https://static.crates.io/crates/rustix/0.37.23/download"], @@ -1511,7 +1511,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__rustls-0.21.8", + name = "rrwbd__rustls-0.21.8", sha256 = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c", type = "tar.gz", urls = ["https://static.crates.io/crates/rustls/0.21.8/download"], @@ -1521,7 +1521,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__rustls-webpki-0.101.7", + name = "rrwbd__rustls-webpki-0.101.7", sha256 = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765", type = "tar.gz", urls = ["https://static.crates.io/crates/rustls-webpki/0.101.7/download"], @@ -1531,7 +1531,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__ryu-1.0.14", + name = "rrwbd__ryu-1.0.14", sha256 = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9", type = "tar.gz", urls = ["https://static.crates.io/crates/ryu/1.0.14/download"], @@ -1541,7 +1541,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__safemem-0.3.3", + name = "rrwbd__safemem-0.3.3", sha256 = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072", type = "tar.gz", urls = ["https://static.crates.io/crates/safemem/0.3.3/download"], @@ -1551,7 +1551,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__scopeguard-1.1.0", + name = "rrwbd__scopeguard-1.1.0", sha256 = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd", type = "tar.gz", urls = ["https://static.crates.io/crates/scopeguard/1.1.0/download"], @@ -1561,7 +1561,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__sct-0.7.1", + name = "rrwbd__sct-0.7.1", sha256 = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414", type = "tar.gz", urls = ["https://static.crates.io/crates/sct/0.7.1/download"], @@ -1571,7 +1571,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__semver-1.0.17", + name = "rrwbd__semver-1.0.17", sha256 = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed", type = "tar.gz", urls = ["https://static.crates.io/crates/semver/1.0.17/download"], @@ -1581,7 +1581,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__serde-1.0.171", + name = "rrwbd__serde-1.0.171", sha256 = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9", type = "tar.gz", urls = ["https://static.crates.io/crates/serde/1.0.171/download"], @@ -1591,7 +1591,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__serde_derive-1.0.171", + name = "rrwbd__serde_derive-1.0.171", sha256 = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682", type = "tar.gz", urls = ["https://static.crates.io/crates/serde_derive/1.0.171/download"], @@ -1601,7 +1601,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__serde_json-1.0.102", + name = "rrwbd__serde_json-1.0.102", sha256 = "b5062a995d481b2308b6064e9af76011f2921c35f97b0468811ed9f6cd91dfed", type = "tar.gz", urls = ["https://static.crates.io/crates/serde_json/1.0.102/download"], @@ -1611,7 +1611,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__sha1_smol-1.0.0", + name = "rrwbd__sha1_smol-1.0.0", sha256 = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012", type = "tar.gz", urls = ["https://static.crates.io/crates/sha1_smol/1.0.0/download"], @@ -1621,7 +1621,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__spin-0.9.8", + name = "rrwbd__spin-0.9.8", sha256 = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67", type = "tar.gz", urls = ["https://static.crates.io/crates/spin/0.9.8/download"], @@ -1631,7 +1631,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__stable_deref_trait-1.2.0", + name = "rrwbd__stable_deref_trait-1.2.0", sha256 = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3", type = "tar.gz", urls = ["https://static.crates.io/crates/stable_deref_trait/1.2.0/download"], @@ -1641,7 +1641,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__strsim-0.10.0", + name = "rrwbd__strsim-0.10.0", sha256 = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623", type = "tar.gz", urls = ["https://static.crates.io/crates/strsim/0.10.0/download"], @@ -1651,7 +1651,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__syn-1.0.109", + name = "rrwbd__syn-1.0.109", sha256 = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237", type = "tar.gz", urls = ["https://static.crates.io/crates/syn/1.0.109/download"], @@ -1661,7 +1661,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__syn-2.0.25", + name = "rrwbd__syn-2.0.25", sha256 = "15e3fc8c0c74267e2df136e5e5fb656a464158aa57624053375eb9c8c6e25ae2", type = "tar.gz", urls = ["https://static.crates.io/crates/syn/2.0.25/download"], @@ -1671,7 +1671,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__tempfile-3.6.0", + name = "rrwbd__tempfile-3.6.0", sha256 = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6", type = "tar.gz", urls = ["https://static.crates.io/crates/tempfile/3.6.0/download"], @@ -1681,7 +1681,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__termcolor-1.2.0", + name = "rrwbd__termcolor-1.2.0", sha256 = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6", type = "tar.gz", urls = ["https://static.crates.io/crates/termcolor/1.2.0/download"], @@ -1691,7 +1691,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__termtree-0.4.1", + name = "rrwbd__termtree-0.4.1", sha256 = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76", type = "tar.gz", urls = ["https://static.crates.io/crates/termtree/0.4.1/download"], @@ -1701,7 +1701,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__threadpool-1.8.1", + name = "rrwbd__threadpool-1.8.1", sha256 = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa", type = "tar.gz", urls = ["https://static.crates.io/crates/threadpool/1.8.1/download"], @@ -1711,7 +1711,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__time-0.3.23", + name = "rrwbd__time-0.3.23", sha256 = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446", type = "tar.gz", urls = ["https://static.crates.io/crates/time/0.3.23/download"], @@ -1721,7 +1721,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__time-core-0.1.1", + name = "rrwbd__time-core-0.1.1", sha256 = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb", type = "tar.gz", urls = ["https://static.crates.io/crates/time-core/0.1.1/download"], @@ -1731,7 +1731,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__tiny_http-0.12.0", + name = "rrwbd__tiny_http-0.12.0", sha256 = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82", type = "tar.gz", urls = ["https://static.crates.io/crates/tiny_http/0.12.0/download"], @@ -1741,7 +1741,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__tinyvec-1.6.0", + name = "rrwbd__tinyvec-1.6.0", sha256 = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50", type = "tar.gz", urls = ["https://static.crates.io/crates/tinyvec/1.6.0/download"], @@ -1751,7 +1751,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__tinyvec_macros-0.1.1", + name = "rrwbd__tinyvec_macros-0.1.1", sha256 = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20", type = "tar.gz", urls = ["https://static.crates.io/crates/tinyvec_macros/0.1.1/download"], @@ -1761,7 +1761,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__twoway-0.1.8", + name = "rrwbd__twoway-0.1.8", sha256 = "59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1", type = "tar.gz", urls = ["https://static.crates.io/crates/twoway/0.1.8/download"], @@ -1771,7 +1771,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__unicase-2.6.0", + name = "rrwbd__unicase-2.6.0", sha256 = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6", type = "tar.gz", urls = ["https://static.crates.io/crates/unicase/2.6.0/download"], @@ -1781,7 +1781,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__unicode-bidi-0.3.13", + name = "rrwbd__unicode-bidi-0.3.13", sha256 = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460", type = "tar.gz", urls = ["https://static.crates.io/crates/unicode-bidi/0.3.13/download"], @@ -1791,7 +1791,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__unicode-ident-1.0.10", + name = "rrwbd__unicode-ident-1.0.10", sha256 = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73", type = "tar.gz", urls = ["https://static.crates.io/crates/unicode-ident/1.0.10/download"], @@ -1801,7 +1801,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__unicode-normalization-0.1.22", + name = "rrwbd__unicode-normalization-0.1.22", sha256 = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921", type = "tar.gz", urls = ["https://static.crates.io/crates/unicode-normalization/0.1.22/download"], @@ -1811,7 +1811,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__unicode-segmentation-1.10.1", + name = "rrwbd__unicode-segmentation-1.10.1", sha256 = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36", type = "tar.gz", urls = ["https://static.crates.io/crates/unicode-segmentation/1.10.1/download"], @@ -1821,7 +1821,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__untrusted-0.9.0", + name = "rrwbd__untrusted-0.9.0", sha256 = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1", type = "tar.gz", urls = ["https://static.crates.io/crates/untrusted/0.9.0/download"], @@ -1831,7 +1831,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__ureq-2.8.0", + name = "rrwbd__ureq-2.8.0", sha256 = "f5ccd538d4a604753ebc2f17cd9946e89b77bf87f6a8e2309667c6f2e87855e3", type = "tar.gz", urls = ["https://static.crates.io/crates/ureq/2.8.0/download"], @@ -1841,7 +1841,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__url-2.4.0", + name = "rrwbd__url-2.4.0", sha256 = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb", type = "tar.gz", urls = ["https://static.crates.io/crates/url/2.4.0/download"], @@ -1851,7 +1851,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__version_check-0.9.4", + name = "rrwbd__version_check-0.9.4", sha256 = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f", type = "tar.gz", urls = ["https://static.crates.io/crates/version_check/0.9.4/download"], @@ -1861,7 +1861,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wait-timeout-0.2.0", + name = "rrwbd__wait-timeout-0.2.0", sha256 = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6", type = "tar.gz", urls = ["https://static.crates.io/crates/wait-timeout/0.2.0/download"], @@ -1871,7 +1871,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__walrus-0.20.3", + name = "rrwbd__walrus-0.20.3", sha256 = "2c03529cd0c4400a2449f640d2f27cd1b48c3065226d15e26d98e4429ab0adb7", type = "tar.gz", urls = ["https://static.crates.io/crates/walrus/0.20.3/download"], @@ -1881,7 +1881,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__walrus-macro-0.19.0", + name = "rrwbd__walrus-macro-0.19.0", sha256 = "0a6e5bd22c71e77d60140b0bd5be56155a37e5bd14e24f5f87298040d0cc40d7", type = "tar.gz", urls = ["https://static.crates.io/crates/walrus-macro/0.19.0/download"], @@ -1891,7 +1891,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasi-0.11.0-wasi-snapshot-preview1", + name = "rrwbd__wasi-0.11.0-wasi-snapshot-preview1", sha256 = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423", type = "tar.gz", urls = ["https://static.crates.io/crates/wasi/0.11.0+wasi-snapshot-preview1/download"], @@ -1901,7 +1901,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-bindgen-0.2.92", + name = "rrwbd__wasm-bindgen-0.2.92", sha256 = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen/0.2.92/download"], @@ -1911,7 +1911,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-bindgen-backend-0.2.92", + name = "rrwbd__wasm-bindgen-backend-0.2.92", sha256 = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-backend/0.2.92/download"], @@ -1921,7 +1921,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-bindgen-cli-support-0.2.92", + name = "rrwbd__wasm-bindgen-cli-support-0.2.92", sha256 = "ca821da8c1ae6c87c5e94493939a206daa8587caff227c6032e0061a3d80817f", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-cli-support/0.2.92/download"], @@ -1931,7 +1931,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-bindgen-externref-xform-0.2.92", + name = "rrwbd__wasm-bindgen-externref-xform-0.2.92", sha256 = "102582726b35a30d53157fbf8de3d0f0fed4c40c0c7951d69a034e9ef01da725", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-externref-xform/0.2.92/download"], @@ -1941,7 +1941,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-bindgen-macro-0.2.92", + name = "rrwbd__wasm-bindgen-macro-0.2.92", sha256 = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-macro/0.2.92/download"], @@ -1951,7 +1951,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-bindgen-macro-support-0.2.92", + name = "rrwbd__wasm-bindgen-macro-support-0.2.92", sha256 = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-macro-support/0.2.92/download"], @@ -1961,7 +1961,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-bindgen-multi-value-xform-0.2.92", + name = "rrwbd__wasm-bindgen-multi-value-xform-0.2.92", sha256 = "3498e4799f43523d780ceff498f04d882a8dbc9719c28020034822e5952f32a4", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-multi-value-xform/0.2.92/download"], @@ -1971,7 +1971,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-bindgen-shared-0.2.92", + name = "rrwbd__wasm-bindgen-shared-0.2.92", sha256 = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-shared/0.2.92/download"], @@ -1981,7 +1981,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-bindgen-threads-xform-0.2.92", + name = "rrwbd__wasm-bindgen-threads-xform-0.2.92", sha256 = "2d5add359b7f7d09a55299a9d29be54414264f2b8cf84f8c8fda5be9269b5dd9", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-threads-xform/0.2.92/download"], @@ -1991,7 +1991,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-bindgen-wasm-conventions-0.2.92", + name = "rrwbd__wasm-bindgen-wasm-conventions-0.2.92", sha256 = "8c04e3607b810e76768260db3a5f2e8beb477cb089ef8726da85c8eb9bd3b575", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-wasm-conventions/0.2.92/download"], @@ -2001,7 +2001,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-bindgen-wasm-interpreter-0.2.92", + name = "rrwbd__wasm-bindgen-wasm-interpreter-0.2.92", sha256 = "9ea966593c8243a33eb4d643254eb97a69de04e89462f46cf6b4f506aae89b3a", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-bindgen-wasm-interpreter/0.2.92/download"], @@ -2011,7 +2011,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasm-encoder-0.29.0", + name = "rrwbd__wasm-encoder-0.29.0", sha256 = "18c41dbd92eaebf3612a39be316540b8377c871cb9bde6b064af962984912881", type = "tar.gz", urls = ["https://static.crates.io/crates/wasm-encoder/0.29.0/download"], @@ -2021,7 +2021,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasmparser-0.102.0", + name = "rrwbd__wasmparser-0.102.0", sha256 = "48134de3d7598219ab9eaf6b91b15d8e50d31da76b8519fe4ecfcec2cf35104b", type = "tar.gz", urls = ["https://static.crates.io/crates/wasmparser/0.102.0/download"], @@ -2031,7 +2031,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasmparser-0.108.0", + name = "rrwbd__wasmparser-0.108.0", sha256 = "76c956109dcb41436a39391139d9b6e2d0a5e0b158e1293ef352ec977e5e36c5", type = "tar.gz", urls = ["https://static.crates.io/crates/wasmparser/0.108.0/download"], @@ -2041,7 +2041,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasmparser-0.80.2", + name = "rrwbd__wasmparser-0.80.2", sha256 = "449167e2832691a1bff24cde28d2804e90e09586a448c8e76984792c44334a6b", type = "tar.gz", urls = ["https://static.crates.io/crates/wasmparser/0.80.2/download"], @@ -2051,7 +2051,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__wasmprinter-0.2.60", + name = "rrwbd__wasmprinter-0.2.60", sha256 = "b76cb909fe3d9b0de58cee1f4072247e680ff5cc1558ccad2790a9de14a23993", type = "tar.gz", urls = ["https://static.crates.io/crates/wasmprinter/0.2.60/download"], @@ -2061,7 +2061,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__webpki-roots-0.25.2", + name = "rrwbd__webpki-roots-0.25.2", sha256 = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc", type = "tar.gz", urls = ["https://static.crates.io/crates/webpki-roots/0.25.2/download"], @@ -2071,7 +2071,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__winapi-0.3.9", + name = "rrwbd__winapi-0.3.9", sha256 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419", type = "tar.gz", urls = ["https://static.crates.io/crates/winapi/0.3.9/download"], @@ -2081,7 +2081,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__winapi-i686-pc-windows-gnu-0.4.0", + name = "rrwbd__winapi-i686-pc-windows-gnu-0.4.0", sha256 = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6", type = "tar.gz", urls = ["https://static.crates.io/crates/winapi-i686-pc-windows-gnu/0.4.0/download"], @@ -2091,7 +2091,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__winapi-util-0.1.5", + name = "rrwbd__winapi-util-0.1.5", sha256 = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178", type = "tar.gz", urls = ["https://static.crates.io/crates/winapi-util/0.1.5/download"], @@ -2101,7 +2101,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__winapi-x86_64-pc-windows-gnu-0.4.0", + name = "rrwbd__winapi-x86_64-pc-windows-gnu-0.4.0", sha256 = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f", type = "tar.gz", urls = ["https://static.crates.io/crates/winapi-x86_64-pc-windows-gnu/0.4.0/download"], @@ -2111,7 +2111,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__windows-0.48.0", + name = "rrwbd__windows-0.48.0", sha256 = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f", type = "tar.gz", urls = ["https://static.crates.io/crates/windows/0.48.0/download"], @@ -2121,7 +2121,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__windows-sys-0.48.0", + name = "rrwbd__windows-sys-0.48.0", sha256 = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-sys/0.48.0/download"], @@ -2131,7 +2131,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__windows-targets-0.48.1", + name = "rrwbd__windows-targets-0.48.1", sha256 = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f", type = "tar.gz", urls = ["https://static.crates.io/crates/windows-targets/0.48.1/download"], @@ -2141,7 +2141,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__windows_aarch64_gnullvm-0.48.0", + name = "rrwbd__windows_aarch64_gnullvm-0.48.0", sha256 = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_gnullvm/0.48.0/download"], @@ -2151,7 +2151,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__windows_aarch64_msvc-0.48.0", + name = "rrwbd__windows_aarch64_msvc-0.48.0", sha256 = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_aarch64_msvc/0.48.0/download"], @@ -2161,7 +2161,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__windows_i686_gnu-0.48.0", + name = "rrwbd__windows_i686_gnu-0.48.0", sha256 = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_gnu/0.48.0/download"], @@ -2171,7 +2171,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__windows_i686_msvc-0.48.0", + name = "rrwbd__windows_i686_msvc-0.48.0", sha256 = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_i686_msvc/0.48.0/download"], @@ -2181,7 +2181,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__windows_x86_64_gnu-0.48.0", + name = "rrwbd__windows_x86_64_gnu-0.48.0", sha256 = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnu/0.48.0/download"], @@ -2191,7 +2191,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__windows_x86_64_gnullvm-0.48.0", + name = "rrwbd__windows_x86_64_gnullvm-0.48.0", sha256 = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_gnullvm/0.48.0/download"], @@ -2201,7 +2201,7 @@ def crate_repositories(): maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps__windows_x86_64_msvc-0.48.0", + name = "rrwbd__windows_x86_64_msvc-0.48.0", sha256 = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a", type = "tar.gz", urls = ["https://static.crates.io/crates/windows_x86_64_msvc/0.48.0/download"], @@ -2210,24 +2210,24 @@ def crate_repositories(): ) return [ - struct(repo = "rules_rust_wasm_bindgen_deps__anyhow-1.0.71", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__docopt-1.1.1", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__env_logger-0.8.4", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__log-0.4.19", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__rouille-3.6.2", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__serde-1.0.171", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__serde_derive-1.0.171", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__serde_json-1.0.102", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__ureq-2.8.0", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__walrus-0.20.3", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__wasm-bindgen-0.2.92", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__wasm-bindgen-cli-support-0.2.92", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__wasm-bindgen-shared-0.2.92", is_dev_dep = False), - struct(repo = "rules_rust_wasm_bindgen_deps__assert_cmd-1.0.8", is_dev_dep = True), - struct(repo = "rules_rust_wasm_bindgen_deps__diff-0.1.13", is_dev_dep = True), - struct(repo = "rules_rust_wasm_bindgen_deps__predicates-1.0.8", is_dev_dep = True), - struct(repo = "rules_rust_wasm_bindgen_deps__rayon-1.7.0", is_dev_dep = True), - struct(repo = "rules_rust_wasm_bindgen_deps__tempfile-3.6.0", is_dev_dep = True), - struct(repo = "rules_rust_wasm_bindgen_deps__wasmparser-0.102.0", is_dev_dep = True), - struct(repo = "rules_rust_wasm_bindgen_deps__wasmprinter-0.2.60", is_dev_dep = True), + struct(repo = "rrwbd__anyhow-1.0.71", is_dev_dep = False), + struct(repo = "rrwbd__docopt-1.1.1", is_dev_dep = False), + struct(repo = "rrwbd__env_logger-0.8.4", is_dev_dep = False), + struct(repo = "rrwbd__log-0.4.19", is_dev_dep = False), + struct(repo = "rrwbd__rouille-3.6.2", is_dev_dep = False), + struct(repo = "rrwbd__serde-1.0.171", is_dev_dep = False), + struct(repo = "rrwbd__serde_derive-1.0.171", is_dev_dep = False), + struct(repo = "rrwbd__serde_json-1.0.102", is_dev_dep = False), + struct(repo = "rrwbd__ureq-2.8.0", is_dev_dep = False), + struct(repo = "rrwbd__walrus-0.20.3", is_dev_dep = False), + struct(repo = "rrwbd__wasm-bindgen-0.2.92", is_dev_dep = False), + struct(repo = "rrwbd__wasm-bindgen-cli-support-0.2.92", is_dev_dep = False), + struct(repo = "rrwbd__wasm-bindgen-shared-0.2.92", is_dev_dep = False), + struct(repo = "rrwbd__assert_cmd-1.0.8", is_dev_dep = True), + struct(repo = "rrwbd__diff-0.1.13", is_dev_dep = True), + struct(repo = "rrwbd__predicates-1.0.8", is_dev_dep = True), + struct(repo = "rrwbd__rayon-1.7.0", is_dev_dep = True), + struct(repo = "rrwbd__tempfile-3.6.0", is_dev_dep = True), + struct(repo = "rrwbd__wasmparser-0.102.0", is_dev_dep = True), + struct(repo = "rrwbd__wasmprinter-0.2.60", is_dev_dep = True), ] diff --git a/extensions/wasm_bindgen/DEVELOPMENT.md b/extensions/wasm_bindgen/DEVELOPMENT.md index d134c34eff..1378a5b352 100644 --- a/extensions/wasm_bindgen/DEVELOPMENT.md +++ b/extensions/wasm_bindgen/DEVELOPMENT.md @@ -5,7 +5,7 @@ Use the followign steps to update to new versions of [wasm-bindgen][wb]. 1. Update `WASM_BINDGEN_VERSION` in `@rules_rust_wasm_bindgen//:repositories.bzl` -2. Update the sha256 value for the `rules_rust_wasm_bindgen_deps_cli` repository defined in `@rules_rust_wasm_bindgen//:repositories.bzl` to match the artifact from the updated `WASM_BINDGEN_VERSION` value. +2. Update the sha256 value for the `rules_rust_wasm_bindgen_cli` repository defined in `@rules_rust_wasm_bindgen//:repositories.bzl` to match the artifact from the updated `WASM_BINDGEN_VERSION` value. 3. Regenerate dependencies by running `bazel run ///3rdparty:crates_vendor -- --repin` from the root of `rules_rust`. 4. Verify your changes by running `bazel test //wasm/...` from the `rules_rust/examples` directory. diff --git a/extensions/wasm_bindgen/MODULE.bazel b/extensions/wasm_bindgen/MODULE.bazel index 0fdb145abe..a0e3e4920c 100644 --- a/extensions/wasm_bindgen/MODULE.bazel +++ b/extensions/wasm_bindgen/MODULE.bazel @@ -34,28 +34,28 @@ bazel_dep( rust_ext_wasm_bindgen = use_extension("//:extensions.bzl", "rust_ext_wasm_bindgen") use_repo( rust_ext_wasm_bindgen, - "rules_rust_wasm_bindgen_deps", - "rules_rust_wasm_bindgen_deps__anyhow-1.0.71", - "rules_rust_wasm_bindgen_deps__assert_cmd-1.0.8", - "rules_rust_wasm_bindgen_deps__diff-0.1.13", - "rules_rust_wasm_bindgen_deps__docopt-1.1.1", - "rules_rust_wasm_bindgen_deps__env_logger-0.8.4", - "rules_rust_wasm_bindgen_deps__log-0.4.19", - "rules_rust_wasm_bindgen_deps__predicates-1.0.8", - "rules_rust_wasm_bindgen_deps__rayon-1.7.0", - "rules_rust_wasm_bindgen_deps__rouille-3.6.2", - "rules_rust_wasm_bindgen_deps__serde-1.0.171", - "rules_rust_wasm_bindgen_deps__serde_derive-1.0.171", - "rules_rust_wasm_bindgen_deps__serde_json-1.0.102", - "rules_rust_wasm_bindgen_deps__tempfile-3.6.0", - "rules_rust_wasm_bindgen_deps__ureq-2.8.0", - "rules_rust_wasm_bindgen_deps__walrus-0.20.3", - "rules_rust_wasm_bindgen_deps__wasm-bindgen-0.2.92", - "rules_rust_wasm_bindgen_deps__wasm-bindgen-cli-support-0.2.92", - "rules_rust_wasm_bindgen_deps__wasm-bindgen-shared-0.2.92", - "rules_rust_wasm_bindgen_deps__wasmparser-0.102.0", - "rules_rust_wasm_bindgen_deps__wasmprinter-0.2.60", - "rules_rust_wasm_bindgen_deps_cli", + "rrwbd", + "rrwbd__anyhow-1.0.71", + "rrwbd__assert_cmd-1.0.8", + "rrwbd__diff-0.1.13", + "rrwbd__docopt-1.1.1", + "rrwbd__env_logger-0.8.4", + "rrwbd__log-0.4.19", + "rrwbd__predicates-1.0.8", + "rrwbd__rayon-1.7.0", + "rrwbd__rouille-3.6.2", + "rrwbd__serde-1.0.171", + "rrwbd__serde_derive-1.0.171", + "rrwbd__serde_json-1.0.102", + "rrwbd__tempfile-3.6.0", + "rrwbd__ureq-2.8.0", + "rrwbd__walrus-0.20.3", + "rrwbd__wasm-bindgen-0.2.92", + "rrwbd__wasm-bindgen-cli-support-0.2.92", + "rrwbd__wasm-bindgen-shared-0.2.92", + "rrwbd__wasmparser-0.102.0", + "rrwbd__wasmprinter-0.2.60", + "rules_rust_wasm_bindgen_cli", ) register_toolchains( diff --git a/extensions/wasm_bindgen/repositories.bzl b/extensions/wasm_bindgen/repositories.bzl index 8f16b2d1d1..9a1ddfafab 100644 --- a/extensions/wasm_bindgen/repositories.bzl +++ b/extensions/wasm_bindgen/repositories.bzl @@ -32,11 +32,11 @@ def rust_wasm_bindgen_dependencies(): """ direct_deps = [ - struct(repo = "rules_rust_wasm_bindgen_deps_cli", is_dev_dep = False), + struct(repo = "rules_rust_wasm_bindgen_cli", is_dev_dep = False), ] maybe( http_archive, - name = "rules_rust_wasm_bindgen_deps_cli", + name = "rules_rust_wasm_bindgen_cli", sha256 = "08f61e21873f51e3059a8c7c3eef81ede7513d161cfc60751c7b2ffa6ed28270", urls = ["https://static.crates.io/crates/wasm-bindgen-cli/wasm-bindgen-cli-{}.crate".format(WASM_BINDGEN_VERSION)], type = "tar.gz",