blob: 051a5363c57bfe8e75b90bcabc39e86a05bc7e14 [file] [log] [blame]
Adam Snaider1c095c92023-07-08 02:09:58 -04001###############################################################################
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 @//bindgen/3rdparty:crates_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 ".tmp_git_root/**/*",
25 "BUILD",
26 "BUILD.bazel",
27 "WORKSPACE",
28 "WORKSPACE.bazel",
29 ],
30 ),
31 crate_features = [
32 "clone-impls",
33 "default",
34 "derive",
35 "extra-traits",
36 "full",
37 "parsing",
38 "printing",
39 "proc-macro",
40 "quote",
41 "visit-mut",
42 ],
43 crate_root = "src/lib.rs",
44 edition = "2021",
45 rustc_flags = ["--cap-lints=allow"],
46 tags = [
47 "cargo-bazel",
48 "crate-name=syn",
49 "manual",
50 "noclippy",
51 "norustfmt",
52 ],
53 target_compatible_with = select({
54 "@rules_rust//rust/platform:aarch64-apple-darwin": [],
55 "@rules_rust//rust/platform:aarch64-apple-ios": [],
56 "@rules_rust//rust/platform:aarch64-apple-ios-sim": [],
57 "@rules_rust//rust/platform:aarch64-fuchsia": [],
58 "@rules_rust//rust/platform:aarch64-linux-android": [],
59 "@rules_rust//rust/platform:aarch64-pc-windows-msvc": [],
60 "@rules_rust//rust/platform:aarch64-unknown-linux-gnu": [],
61 "@rules_rust//rust/platform:arm-unknown-linux-gnueabi": [],
62 "@rules_rust//rust/platform:armv7-linux-androideabi": [],
63 "@rules_rust//rust/platform:armv7-unknown-linux-gnueabi": [],
64 "@rules_rust//rust/platform:i686-apple-darwin": [],
65 "@rules_rust//rust/platform:i686-linux-android": [],
66 "@rules_rust//rust/platform:i686-pc-windows-msvc": [],
67 "@rules_rust//rust/platform:i686-unknown-freebsd": [],
68 "@rules_rust//rust/platform:i686-unknown-linux-gnu": [],
69 "@rules_rust//rust/platform:powerpc-unknown-linux-gnu": [],
70 "@rules_rust//rust/platform:riscv32imc-unknown-none-elf": [],
71 "@rules_rust//rust/platform:riscv64gc-unknown-none-elf": [],
72 "@rules_rust//rust/platform:s390x-unknown-linux-gnu": [],
73 "@rules_rust//rust/platform:thumbv7em-none-eabi": [],
74 "@rules_rust//rust/platform:thumbv8m.main-none-eabi": [],
75 "@rules_rust//rust/platform:wasm32-unknown-unknown": [],
76 "@rules_rust//rust/platform:wasm32-wasi": [],
77 "@rules_rust//rust/platform:x86_64-apple-darwin": [],
78 "@rules_rust//rust/platform:x86_64-apple-ios": [],
79 "@rules_rust//rust/platform:x86_64-fuchsia": [],
80 "@rules_rust//rust/platform:x86_64-linux-android": [],
81 "@rules_rust//rust/platform:x86_64-pc-windows-msvc": [],
82 "@rules_rust//rust/platform:x86_64-unknown-freebsd": [],
83 "@rules_rust//rust/platform:x86_64-unknown-linux-gnu": [],
84 "@rules_rust//rust/platform:x86_64-unknown-none": [],
85 "//conditions:default": ["@platforms//:incompatible"],
86 }),
87 version = "2.0.18",
88 deps = [
89 "@rules_rust_bindgen__proc-macro2-1.0.60//:proc_macro2",
90 "@rules_rust_bindgen__quote-1.0.28//:quote",
91 "@rules_rust_bindgen__unicode-ident-1.0.9//:unicode_ident",
92 ],
93)