-
Notifications
You must be signed in to change notification settings - Fork 565
Expand file tree
/
Copy pathMODULE.bazel
More file actions
69 lines (63 loc) · 1.74 KB
/
MODULE.bazel
File metadata and controls
69 lines (63 loc) · 1.74 KB
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
67
68
69
"""bazelbuild/rules_rust/extensions/wasm_bindgen"""
module(
name = "rules_rust_wasm_bindgen",
version = "0.69.0",
)
bazel_dep(name = "rules_rust", version = "0.69.0")
bazel_dep(name = "bazel_features", version = "1.32.0")
bazel_dep(name = "bazel_skylib", version = "1.8.2")
bazel_dep(name = "platforms", version = "1.0.0")
bazel_dep(name = "rules_cc", version = "0.2.4")
bazel_dep(name = "apple_support", version = "1.24.1")
rust_ext = use_extension("//:extensions.bzl", "rust_ext")
use_repo(
rust_ext,
"chrome",
"chrome_headless_shell",
"chrome_headless_shell_linux64",
"chrome_headless_shell_mac_arm64",
"chrome_headless_shell_mac_x64",
"chrome_headless_shell_win32",
"chrome_headless_shell_win64",
"chrome_linux64",
"chrome_mac_arm64",
"chrome_mac_x64",
"chrome_win32",
"chrome_win64",
"chromedriver",
"chromedriver_linux64",
"chromedriver_mac_arm64",
"chromedriver_mac_x64",
"chromedriver_win32",
"chromedriver_win64",
"firefox",
"firefox_linux_aarch64",
"firefox_linux_x86_64",
"firefox_local",
"firefox_mac",
"geckodriver",
"geckodriver_linux64",
"geckodriver_linux_aarch64",
"geckodriver_macos",
"geckodriver_macos_aarch64",
"geckodriver_win64",
"rrwbd",
"rrwbd__serde_json-1.0.145",
"rrwbd__wasm-bindgen-0.2.105",
"rrwbd__wasm-bindgen-cli-0.2.105",
"rrwbd__wasm-bindgen-test-0.3.55",
"safaridriver",
)
register_toolchains(
"//:default_wasm_bindgen_toolchain",
)
bazel_dep(name = "bazel_ci_rules", version = "1.0.0", dev_dependency = True)
rust_ext_dev = use_extension(
"//private:internal_extensions.bzl",
"rust_ext_dev",
dev_dependency = True,
)
use_repo(
rust_ext_dev,
"buildkite_config",
)