forked from cloudflare/workerd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
32 lines (20 loc) · 775 Bytes
/
Copy pathWORKSPACE
File metadata and controls
32 lines (20 loc) · 775 Bytes
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
workspace(name = "workerd")
load("@//build/deps:gen/build_deps.bzl", build_deps_gen = "deps_gen")
build_deps_gen()
load("@//build/deps:gen/shared_deps.bzl", shared_deps_gen = "deps_gen")
shared_deps_gen()
load("@//build/deps:gen/deps.bzl", "deps_gen")
deps_gen()
# ========================================================================================
# Rust bootstrap
load("//:build/rust_toolchains.bzl", "rust_toolchains")
rust_toolchains()
# rust-based lolhtml dependency, including the API header.
# Presented as a separate repository to allow overrides.
new_local_repository(
name = "com_cloudflare_lol_html",
build_file = "@workerd//deps/rust:BUILD.lolhtml",
path = "empty",
)
load("//build/deps:dep_pyodide.bzl", "dep_pyodide")
dep_pyodide()