blob: 41289dcbab40f358439af39f087ff263f8c8ec9e [file] [log] [blame]
"""
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
package(default_visibility = [
# Public for visibility by "@raze__crate__version//" targets.
#
# Prefer access through "//wasm_bindgen/raze", which limits external
# visibility to explicit Cargo.toml dependencies.
"//visibility:public",
])
licenses([
"restricted", # "Apache-2.0 WITH LLVM-exception"
])
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
# Unsupported target "benchmark" with type "bench" omitted
# Unsupported target "dump" with type "example" omitted
# Unsupported target "simple" with type "example" omitted
rust_library(
name = "wasmparser",
srcs = glob(["**/*.rs"]),
crate_features = [
"default",
"std",
],
crate_root = "src/lib.rs",
crate_type = "lib",
edition = "2015",
rustc_flags = [
"--cap-lints=allow",
],
version = "0.30.0",
deps = [
],
)