• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1###############################################################################
2# @generated
3# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
4# regenerate this file, run the following:
5#
6#     bazel run @//third-party:vendor
7###############################################################################
8
9load("@rules_rust//cargo:defs.bzl", "cargo_build_script")
10load("@rules_rust//rust:defs.bzl", "rust_library")
11
12package(default_visibility = ["//visibility:public"])
13
14# licenses([
15#     "TODO",  # MIT OR Apache-2.0
16# ])
17
18rust_library(
19    name = "quote",
20    srcs = glob(["**/*.rs"]),
21    compile_data = glob(
22        include = ["**"],
23        exclude = [
24            "**/* *",
25            "BUILD",
26            "BUILD.bazel",
27            "WORKSPACE",
28            "WORKSPACE.bazel",
29        ],
30    ),
31    crate_features = [
32        "default",
33        "proc-macro",
34    ],
35    crate_root = "src/lib.rs",
36    edition = "2018",
37    rustc_flags = ["--cap-lints=allow"],
38    tags = [
39        "cargo-bazel",
40        "crate-name=quote",
41        "manual",
42        "noclippy",
43        "norustfmt",
44    ],
45    version = "1.0.23",
46    deps = [
47        "@vendor__proc-macro2-1.0.51//:proc_macro2",
48        "@vendor__quote-1.0.23//:build_script_build",
49    ],
50)
51
52cargo_build_script(
53    name = "quote_build_script",
54    srcs = glob(["**/*.rs"]),
55    crate_features = [
56        "default",
57        "proc-macro",
58    ],
59    crate_name = "build_script_build",
60    crate_root = "build.rs",
61    data = glob(
62        include = ["**"],
63        exclude = [
64            "**/* *",
65            "BUILD",
66            "BUILD.bazel",
67            "WORKSPACE",
68            "WORKSPACE.bazel",
69        ],
70    ),
71    edition = "2018",
72    rustc_flags = [
73        "--cap-lints=allow",
74    ],
75    tags = [
76        "cargo-bazel",
77        "crate-name=quote",
78        "manual",
79        "noclippy",
80        "norustfmt",
81    ],
82    version = "1.0.23",
83    visibility = ["//visibility:private"],
84)
85
86alias(
87    name = "build_script_build",
88    actual = "quote_build_script",
89    tags = ["manual"],
90)
91