Skip to content

Commit b754175

Browse files
committed
add-missing-files
Signed-off-by: Ryan Northey <[email protected]>
1 parent de0e6b0 commit b754175

20 files changed

+1512
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
"""
2+
@generated
3+
cargo-raze crate build file.
4+
5+
DO NOT EDIT! Replaced on runs of cargo-raze
6+
"""
7+
8+
# buildifier: disable=load
9+
load("@bazel_skylib//lib:selects.bzl", "selects")
10+
11+
# buildifier: disable=load
12+
load(
13+
"@rules_rust//rust:defs.bzl",
14+
"rust_binary",
15+
"rust_library",
16+
"rust_proc_macro",
17+
"rust_test",
18+
)
19+
20+
package(default_visibility = [
21+
# Public for visibility by "@raze__crate__version//" targets.
22+
#
23+
# Prefer access through "//bazel/cargo/wasmtime", which limits external
24+
# visibility to explicit Cargo.toml dependencies.
25+
"//visibility:public",
26+
])
27+
28+
licenses([
29+
"notice", # Apache-2.0 from expression "Apache-2.0"
30+
])
31+
32+
# Generated Targets
33+
34+
rust_library(
35+
name = "cranelift_bforest",
36+
srcs = glob(["**/*.rs"]),
37+
crate_features = [
38+
],
39+
crate_root = "src/lib.rs",
40+
data = [],
41+
edition = "2021",
42+
rustc_flags = [
43+
"--cap-lints=allow",
44+
],
45+
tags = [
46+
"cargo-raze",
47+
"crate-name=cranelift-bforest",
48+
"manual",
49+
],
50+
version = "0.96.3",
51+
# buildifier: leave-alone
52+
deps = [
53+
"@wasmtime__cranelift_entity__0_96_3//:cranelift_entity",
54+
],
55+
)
Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
"""
2+
@generated
3+
cargo-raze crate build file.
4+
5+
DO NOT EDIT! Replaced on runs of cargo-raze
6+
"""
7+
8+
# buildifier: disable=load
9+
load("@bazel_skylib//lib:selects.bzl", "selects")
10+
11+
# buildifier: disable=load
12+
load(
13+
"@rules_rust//rust:defs.bzl",
14+
"rust_binary",
15+
"rust_library",
16+
"rust_proc_macro",
17+
"rust_test",
18+
)
19+
20+
package(default_visibility = [
21+
# Public for visibility by "@raze__crate__version//" targets.
22+
#
23+
# Prefer access through "//bazel/cargo/wasmtime", which limits external
24+
# visibility to explicit Cargo.toml dependencies.
25+
"//visibility:public",
26+
])
27+
28+
licenses([
29+
"notice", # Apache-2.0 from expression "Apache-2.0"
30+
])
31+
32+
# Generated Targets
33+
# buildifier: disable=out-of-order-load
34+
# buildifier: disable=load-on-top
35+
load(
36+
"@rules_rust//cargo:cargo_build_script.bzl",
37+
"cargo_build_script",
38+
)
39+
40+
cargo_build_script(
41+
name = "cranelift_codegen_build_script",
42+
srcs = glob(["**/*.rs"]),
43+
build_script_env = {
44+
},
45+
crate_features = [
46+
"default",
47+
"gimli",
48+
"std",
49+
"trace-log",
50+
"unwind",
51+
],
52+
crate_root = "build.rs",
53+
data = glob(["**"]),
54+
edition = "2021",
55+
rustc_flags = [
56+
"--cap-lints=allow",
57+
],
58+
tags = [
59+
"cargo-raze",
60+
"manual",
61+
],
62+
version = "0.96.3",
63+
visibility = ["//visibility:private"],
64+
deps = [
65+
"@wasmtime__cranelift_codegen_meta__0_96_3//:cranelift_codegen_meta",
66+
"@wasmtime__cranelift_isle__0_96_3//:cranelift_isle",
67+
],
68+
)
69+
70+
# Unsupported target "x64-evex-encoding" with type "bench" omitted
71+
72+
rust_library(
73+
name = "cranelift_codegen",
74+
srcs = glob(["**/*.rs"]),
75+
crate_features = [
76+
"default",
77+
"gimli",
78+
"std",
79+
"trace-log",
80+
"unwind",
81+
],
82+
crate_root = "src/lib.rs",
83+
data = [],
84+
edition = "2021",
85+
rustc_flags = [
86+
"--cap-lints=allow",
87+
],
88+
tags = [
89+
"cargo-raze",
90+
"crate-name=cranelift-codegen",
91+
"manual",
92+
],
93+
version = "0.96.3",
94+
# buildifier: leave-alone
95+
deps = [
96+
":cranelift_codegen_build_script",
97+
"@wasmtime__bumpalo__3_13_0//:bumpalo",
98+
"@wasmtime__cranelift_bforest__0_96_3//:cranelift_bforest",
99+
"@wasmtime__cranelift_codegen_shared__0_96_3//:cranelift_codegen_shared",
100+
"@wasmtime__cranelift_control__0_96_3//:cranelift_control",
101+
"@wasmtime__cranelift_entity__0_96_3//:cranelift_entity",
102+
"@wasmtime__gimli__0_27_2//:gimli",
103+
"@wasmtime__hashbrown__0_13_2//:hashbrown",
104+
"@wasmtime__log__0_4_18//:log",
105+
"@wasmtime__regalloc2__0_8_1//:regalloc2",
106+
"@wasmtime__smallvec__1_10_0//:smallvec",
107+
"@wasmtime__target_lexicon__0_12_7//:target_lexicon",
108+
],
109+
)
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
"""
2+
@generated
3+
cargo-raze crate build file.
4+
5+
DO NOT EDIT! Replaced on runs of cargo-raze
6+
"""
7+
8+
# buildifier: disable=load
9+
load("@bazel_skylib//lib:selects.bzl", "selects")
10+
11+
# buildifier: disable=load
12+
load(
13+
"@rules_rust//rust:defs.bzl",
14+
"rust_binary",
15+
"rust_library",
16+
"rust_proc_macro",
17+
"rust_test",
18+
)
19+
20+
package(default_visibility = [
21+
# Public for visibility by "@raze__crate__version//" targets.
22+
#
23+
# Prefer access through "//bazel/cargo/wasmtime", which limits external
24+
# visibility to explicit Cargo.toml dependencies.
25+
"//visibility:public",
26+
])
27+
28+
licenses([
29+
"notice", # Apache-2.0 from expression "Apache-2.0"
30+
])
31+
32+
# Generated Targets
33+
34+
rust_library(
35+
name = "cranelift_codegen_meta",
36+
srcs = glob(["**/*.rs"]),
37+
crate_features = [
38+
],
39+
crate_root = "src/lib.rs",
40+
data = [],
41+
edition = "2021",
42+
rustc_flags = [
43+
"--cap-lints=allow",
44+
],
45+
tags = [
46+
"cargo-raze",
47+
"crate-name=cranelift-codegen-meta",
48+
"manual",
49+
],
50+
version = "0.96.3",
51+
# buildifier: leave-alone
52+
deps = [
53+
"@wasmtime__cranelift_codegen_shared__0_96_3//:cranelift_codegen_shared",
54+
],
55+
)
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
"""
2+
@generated
3+
cargo-raze crate build file.
4+
5+
DO NOT EDIT! Replaced on runs of cargo-raze
6+
"""
7+
8+
# buildifier: disable=load
9+
load("@bazel_skylib//lib:selects.bzl", "selects")
10+
11+
# buildifier: disable=load
12+
load(
13+
"@rules_rust//rust:defs.bzl",
14+
"rust_binary",
15+
"rust_library",
16+
"rust_proc_macro",
17+
"rust_test",
18+
)
19+
20+
package(default_visibility = [
21+
# Public for visibility by "@raze__crate__version//" targets.
22+
#
23+
# Prefer access through "//bazel/cargo/wasmtime", which limits external
24+
# visibility to explicit Cargo.toml dependencies.
25+
"//visibility:public",
26+
])
27+
28+
licenses([
29+
"notice", # Apache-2.0 from expression "Apache-2.0"
30+
])
31+
32+
# Generated Targets
33+
34+
rust_library(
35+
name = "cranelift_codegen_shared",
36+
srcs = glob(["**/*.rs"]),
37+
crate_features = [
38+
],
39+
crate_root = "src/lib.rs",
40+
data = [],
41+
edition = "2021",
42+
rustc_flags = [
43+
"--cap-lints=allow",
44+
],
45+
tags = [
46+
"cargo-raze",
47+
"crate-name=cranelift-codegen-shared",
48+
"manual",
49+
],
50+
version = "0.96.3",
51+
# buildifier: leave-alone
52+
deps = [
53+
],
54+
)
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
"""
2+
@generated
3+
cargo-raze crate build file.
4+
5+
DO NOT EDIT! Replaced on runs of cargo-raze
6+
"""
7+
8+
# buildifier: disable=load
9+
load("@bazel_skylib//lib:selects.bzl", "selects")
10+
11+
# buildifier: disable=load
12+
load(
13+
"@rules_rust//rust:defs.bzl",
14+
"rust_binary",
15+
"rust_library",
16+
"rust_proc_macro",
17+
"rust_test",
18+
)
19+
20+
package(default_visibility = [
21+
# Public for visibility by "@raze__crate__version//" targets.
22+
#
23+
# Prefer access through "//bazel/cargo/wasmtime", which limits external
24+
# visibility to explicit Cargo.toml dependencies.
25+
"//visibility:public",
26+
])
27+
28+
licenses([
29+
"notice", # Apache-2.0 from expression "Apache-2.0"
30+
])
31+
32+
# Generated Targets
33+
34+
rust_library(
35+
name = "cranelift_control",
36+
srcs = glob(["**/*.rs"]),
37+
crate_features = [
38+
],
39+
crate_root = "src/lib.rs",
40+
data = [],
41+
edition = "2021",
42+
rustc_flags = [
43+
"--cap-lints=allow",
44+
],
45+
tags = [
46+
"cargo-raze",
47+
"crate-name=cranelift-control",
48+
"manual",
49+
],
50+
version = "0.96.3",
51+
# buildifier: leave-alone
52+
deps = [
53+
"@wasmtime__arbitrary__1_3_0//:arbitrary",
54+
],
55+
)
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
"""
2+
@generated
3+
cargo-raze crate build file.
4+
5+
DO NOT EDIT! Replaced on runs of cargo-raze
6+
"""
7+
8+
# buildifier: disable=load
9+
load("@bazel_skylib//lib:selects.bzl", "selects")
10+
11+
# buildifier: disable=load
12+
load(
13+
"@rules_rust//rust:defs.bzl",
14+
"rust_binary",
15+
"rust_library",
16+
"rust_proc_macro",
17+
"rust_test",
18+
)
19+
20+
package(default_visibility = [
21+
# Public for visibility by "@raze__crate__version//" targets.
22+
#
23+
# Prefer access through "//bazel/cargo/wasmtime", which limits external
24+
# visibility to explicit Cargo.toml dependencies.
25+
"//visibility:public",
26+
])
27+
28+
licenses([
29+
"notice", # Apache-2.0 from expression "Apache-2.0"
30+
])
31+
32+
# Generated Targets
33+
34+
rust_library(
35+
name = "cranelift_entity",
36+
srcs = glob(["**/*.rs"]),
37+
crate_features = [
38+
"enable-serde",
39+
"serde",
40+
],
41+
crate_root = "src/lib.rs",
42+
data = [],
43+
edition = "2021",
44+
rustc_flags = [
45+
"--cap-lints=allow",
46+
],
47+
tags = [
48+
"cargo-raze",
49+
"crate-name=cranelift-entity",
50+
"manual",
51+
],
52+
version = "0.96.3",
53+
# buildifier: leave-alone
54+
deps = [
55+
"@wasmtime__serde__1_0_163//:serde",
56+
],
57+
)

0 commit comments

Comments
 (0)