-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathBUILD.bazel
66 lines (57 loc) · 1.13 KB
/
BUILD.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""
@generated
cargo-raze generated Bazel file.
DO NOT EDIT! Replaced on runs of cargo-raze
"""
package(default_visibility = ["//visibility:public"])
licenses([
"notice", # See individual crates for specific licenses
])
# Aliased targets
alias(
name = "anyhow",
actual = "@wasmtime__anyhow__1_0_75//:anyhow",
tags = [
"cargo-raze",
"manual",
],
)
alias(
name = "env_logger",
actual = "@wasmtime__env_logger__0_10_0//:env_logger",
tags = [
"cargo-raze",
"manual",
],
)
alias(
name = "once_cell",
actual = "@wasmtime__once_cell__1_18_0//:once_cell",
tags = [
"cargo-raze",
"manual",
],
)
alias(
name = "wasmtime",
actual = "@wasmtime__wasmtime__9_0_4//:wasmtime",
tags = [
"cargo-raze",
"manual",
],
)
alias(
name = "wasmtime_c_api_macros",
actual = "@wasmtime__wasmtime_c_api_macros__0_0_0//:wasmtime_c_api_macros",
tags = [
"cargo-raze",
"manual",
],
)
# Export file for Stardoc support
exports_files(
[
"crates.bzl",
],
visibility = ["//visibility:public"],
)