blob: 3050e537cce834acaa274cfdb240a48c8c59680d [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([
"notice", # "MIT"
])
load(
"@io_bazel_rules_rust//rust:rust.bzl",
"rust_binary",
"rust_library",
"rust_test",
)
rust_library(
name = "synstructure",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
crate_type = "lib",
edition = "2015",
rustc_flags = [
"--cap-lints=allow",
],
version = "0.10.2",
deps = [
"@raze__proc_macro2__0_4_30//:proc_macro2",
"@raze__quote__0_6_12//:quote",
"@raze__syn__0_15_43//:syn",
"@raze__unicode_xid__0_1_0//:unicode_xid",
],
)