blob: 46cf5258b90c04c53c7baf72185efe5730f70962 [file] [log] [blame]
"""
@generated
cargo-raze crate build file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
# buildifier: disable=load
load("@bazel_skylib//lib:selects.bzl", "selects")
# buildifier: disable=load
load(
"@rules_rust//rust:defs.bzl",
"rust_binary",
"rust_library",
"rust_proc_macro",
"rust_test",
)
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([
"unencumbered", # Unlicense from expression "Unlicense OR MIT"
])
# Generated Targets
rust_binary(
# Prefix bin name to disambiguate from (probable) collision with lib name
# N.B.: The exact form of this is subject to change.
name = "cargo_bin_docopt_wordlist",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/wordlist.rs",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"crate-name=docopt-wordlist",
"manual",
],
version = "1.1.1",
# buildifier: leave-alone
deps = [
":docopt",
"@rules_rust_wasm_bindgen__lazy_static__1_4_0//:lazy_static",
"@rules_rust_wasm_bindgen__regex__1_5_4//:regex",
"@rules_rust_wasm_bindgen__serde__1_0_130//:serde",
"@rules_rust_wasm_bindgen__strsim__0_10_0//:strsim",
],
)
# Unsupported target "cargo" with type "example" omitted
# Unsupported target "cp" with type "example" omitted
# Unsupported target "decode" with type "example" omitted
# Unsupported target "hashmap" with type "example" omitted
# Unsupported target "optional_command" with type "example" omitted
# Unsupported target "verbose_multiple" with type "example" omitted
rust_library(
name = "docopt",
srcs = glob(["**/*.rs"]),
crate_features = [
],
crate_root = "src/lib.rs",
data = [],
edition = "2018",
rustc_flags = [
"--cap-lints=allow",
],
tags = [
"cargo-raze",
"crate-name=docopt",
"manual",
],
version = "1.1.1",
# buildifier: leave-alone
deps = [
"@rules_rust_wasm_bindgen__lazy_static__1_4_0//:lazy_static",
"@rules_rust_wasm_bindgen__regex__1_5_4//:regex",
"@rules_rust_wasm_bindgen__serde__1_0_130//:serde",
"@rules_rust_wasm_bindgen__strsim__0_10_0//:strsim",
],
)