-
Notifications
You must be signed in to change notification settings - Fork 442
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update wasm_bindgen to 0.2.82 (#1513)
- Loading branch information
1 parent
078c690
commit 3a69ce0
Showing
66 changed files
with
991 additions
and
407 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
91 changes: 91 additions & 0 deletions
91
wasm_bindgen/3rdparty/crates/BUILD.android_system_properties-0.1.4.bazel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
], | ||
}), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.