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//rust:defs.bzl", "rust_library")
10
11package(default_visibility = ["//visibility:public"])
12
13# licenses([
14#     "TODO",  # MIT OR Apache-2.0
15# ])
16
17rust_library(
18    name = "syn",
19    srcs = glob(["**/*.rs"]),
20    compile_data = glob(
21        include = ["**"],
22        exclude = [
23            "**/* *",
24            "BUILD",
25            "BUILD.bazel",
26            "WORKSPACE",
27            "WORKSPACE.bazel",
28        ],
29    ),
30    crate_features = [
31        "clone-impls",
32        "default",
33        "derive",
34        "full",
35        "parsing",
36        "printing",
37        "proc-macro",
38        "quote",
39    ],
40    crate_root = "src/lib.rs",
41    edition = "2021",
42    rustc_flags = ["--cap-lints=allow"],
43    tags = [
44        "cargo-bazel",
45        "crate-name=syn",
46        "manual",
47        "noclippy",
48        "norustfmt",
49    ],
50    version = "2.0.17",
51    deps = [
52        "@vendor__proc-macro2-1.0.59//:proc_macro2",
53        "@vendor__quote-1.0.28//:quote",
54        "@vendor__unicode-ident-1.0.9//:unicode_ident",
55    ],
56)
57