Skip to content

Commit

Permalink
Update wasm_bindgen to 0.2.82
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJeremyHe committed Aug 15, 2022
1 parent 078c690 commit 1d83075
Show file tree
Hide file tree
Showing 66 changed files with 991 additions and 407 deletions.
171 changes: 104 additions & 67 deletions wasm_bindgen/3rdparty/Cargo.Bazel.lock

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# bazel run //wasm_bindgen/3rdparty:crates_vendor
###############################################################################

load(
"@bazel_skylib//lib:selects.bzl",
"selects",
)

# buildifier: disable=bzl-visibility
load("@rules_rust//crate_universe/private:selects.bzl", "select_with_or")
load(
"@rules_rust//rust:defs.bzl",
"rust_library",
)

package(default_visibility = ["//visibility:public"])

# licenses([
# "TODO", # MIT/Apache-2.0
# ])

rust_library(
name = "android_system_properties",
srcs = glob(
include = [
"**/*.rs",
],
exclude = [
],
),
aliases = selects.with_or({
"//conditions:default": {
},
}),
compile_data = glob(
include = ["**"],
exclude = [
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
) + select_with_or({
"//conditions:default": [
],
}),
crate_features = [
],
crate_root = "src/lib.rs",
data = select_with_or({
"//conditions:default": [
],
}),
edition = "2018",
proc_macro_deps = [
] + select_with_or({
"//conditions:default": [
],
}),
rustc_env = {
},
rustc_env_files = select_with_or({
"//conditions:default": [
],
}),
rustc_flags = [
# In most cases, warnings in 3rd party crates are not interesting as
# they're out of the control of consumers. The flag here silences
# warnings. For more details see:
# https://doc.rust-lang.org/rustc/lints/levels.html
"--cap-lints=allow",
],
tags = [
"cargo-bazel",
"manual",
"noclippy",
"norustfmt",
],
version = "0.1.4",
deps = [
] + select_with_or({
"//conditions:default": [
"@rules_rust_wasm_bindgen__libc-0.2.131//:libc",
],
}),
)
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ rust_library(
"noclippy",
"norustfmt",
],
version = "1.0.58",
version = "1.0.61",
deps = [
] + select_with_or({
"//conditions:default": [
"@rules_rust_wasm_bindgen__anyhow-1.0.58//:build_script_build",
"@rules_rust_wasm_bindgen__anyhow-1.0.61//:build_script_build",
],
}),
)
Expand Down Expand Up @@ -155,7 +155,7 @@ cargo_build_script(
"//conditions:default": [
],
}),
version = "1.0.58",
version = "1.0.61",
visibility = ["//visibility:private"],
deps = [
] + select_with_or({
Expand Down
2 changes: 1 addition & 1 deletion wasm_bindgen/3rdparty/crates/BUILD.atty-0.2.14.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ rust_library(
"@rules_rust//rust/platform:x86_64-unknown-linux-gnu",
): [
# Target Deps
"@rules_rust_wasm_bindgen__libc-0.2.126//:libc",
"@rules_rust_wasm_bindgen__libc-0.2.131//:libc",

# Common Deps
],
Expand Down
16 changes: 8 additions & 8 deletions wasm_bindgen/3rdparty/crates/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ filegroup(
# Workspace Member Dependencies
alias(
name = "anyhow",
actual = "@rules_rust_wasm_bindgen__anyhow-1.0.58//:anyhow",
actual = "@rules_rust_wasm_bindgen__anyhow-1.0.61//:anyhow",
tags = ["manual"],
)

Expand All @@ -41,7 +41,7 @@ alias(

alias(
name = "curl",
actual = "@rules_rust_wasm_bindgen__curl-0.4.43//:curl",
actual = "@rules_rust_wasm_bindgen__curl-0.4.44//:curl",
tags = ["manual"],
)

Expand Down Expand Up @@ -89,19 +89,19 @@ alias(

alias(
name = "serde",
actual = "@rules_rust_wasm_bindgen__serde-1.0.139//:serde",
actual = "@rules_rust_wasm_bindgen__serde-1.0.143//:serde",
tags = ["manual"],
)

alias(
name = "serde_derive",
actual = "@rules_rust_wasm_bindgen__serde_derive-1.0.139//:serde_derive",
actual = "@rules_rust_wasm_bindgen__serde_derive-1.0.143//:serde_derive",
tags = ["manual"],
)

alias(
name = "serde_json",
actual = "@rules_rust_wasm_bindgen__serde_json-1.0.82//:serde_json",
actual = "@rules_rust_wasm_bindgen__serde_json-1.0.83//:serde_json",
tags = ["manual"],
)

Expand All @@ -119,19 +119,19 @@ alias(

alias(
name = "wasm-bindgen",
actual = "@rules_rust_wasm_bindgen__wasm-bindgen-0.2.81//:wasm_bindgen",
actual = "@rules_rust_wasm_bindgen__wasm-bindgen-0.2.82//:wasm_bindgen",
tags = ["manual"],
)

alias(
name = "wasm-bindgen-cli-support",
actual = "@rules_rust_wasm_bindgen__wasm-bindgen-cli-support-0.2.81//:wasm_bindgen_cli_support",
actual = "@rules_rust_wasm_bindgen__wasm-bindgen-cli-support-0.2.82//:wasm_bindgen_cli_support",
tags = ["manual"],
)

alias(
name = "wasm-bindgen-shared",
actual = "@rules_rust_wasm_bindgen__wasm-bindgen-shared-0.2.81//:wasm_bindgen_shared",
actual = "@rules_rust_wasm_bindgen__wasm-bindgen-shared-0.2.82//:wasm_bindgen_shared",
tags = ["manual"],
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ rust_library(
}),
crate_features = [
"clock",
"libc",
"iana-time-zone",
"std",
"winapi",
],
Expand All @@ -60,7 +60,7 @@ rust_library(
"//conditions:default": [
],
}),
edition = "2015",
edition = "2018",
proc_macro_deps = [
] + select_with_or({
"//conditions:default": [
Expand All @@ -85,7 +85,7 @@ rust_library(
"noclippy",
"norustfmt",
],
version = "0.4.19",
version = "0.4.22",
deps = [
] + select_with_or({
# cfg(windows)
Expand All @@ -97,12 +97,12 @@ rust_library(
"@rules_rust_wasm_bindgen__winapi-0.3.9//:winapi",

# Common Deps
"@rules_rust_wasm_bindgen__libc-0.2.126//:libc",
"@rules_rust_wasm_bindgen__iana-time-zone-0.1.44//:iana_time_zone",
"@rules_rust_wasm_bindgen__num-integer-0.1.45//:num_integer",
"@rules_rust_wasm_bindgen__num-traits-0.2.15//:num_traits",
],
"//conditions:default": [
"@rules_rust_wasm_bindgen__libc-0.2.126//:libc",
"@rules_rust_wasm_bindgen__iana-time-zone-0.1.44//:iana_time_zone",
"@rules_rust_wasm_bindgen__num-integer-0.1.45//:num_integer",
"@rules_rust_wasm_bindgen__num-traits-0.2.15//:num_traits",
],
Expand Down
Loading

0 comments on commit 1d83075

Please sign in to comment.