forked from proxy-wasm/proxy-wasm-cpp-host
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.thiserror-impl-1.0.63.bazel
46 lines (42 loc) · 1.17 KB
/
BUILD.thiserror-impl-1.0.63.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
###############################################################################
# @generated
# DO NOT MODIFY: This file is auto-generated by a crate_universe tool. To
# regenerate this file, run the following:
#
# bazel run @//bazel/cargo/wasmsign:crates_vendor
###############################################################################
load("@rules_rust//rust:defs.bzl", "rust_proc_macro")
package(default_visibility = ["//visibility:public"])
# licenses([
# "TODO", # MIT OR Apache-2.0
# ])
rust_proc_macro(
name = "thiserror_impl",
srcs = glob(["**/*.rs"]),
compile_data = glob(
include = ["**"],
exclude = [
"**/* *",
"BUILD",
"BUILD.bazel",
"WORKSPACE",
"WORKSPACE.bazel",
],
),
crate_root = "src/lib.rs",
edition = "2021",
rustc_flags = ["--cap-lints=allow"],
tags = [
"cargo-bazel",
"crate-name=thiserror-impl",
"manual",
"noclippy",
"norustfmt",
],
version = "1.0.63",
deps = [
"@cu__proc-macro2-1.0.86//:proc_macro2",
"@cu__quote-1.0.36//:quote",
"@cu__syn-2.0.72//:syn",
],
)