-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathWORKSPACE
42 lines (34 loc) · 919 Bytes
/
WORKSPACE
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
workspace(name = "bamtofastq")
load(
"@bazel_tools//tools/build_defs/repo:git.bzl",
"git_repository",
)
# When debugging iteratively, it's useful to switch to a local repo rather
# than repeated pushes to github. To do this, run with
# --override_repository=tenx_bazel_rules=/path/to/repository
git_repository(
name = "tenx_bazel_rules",
commit = "69af1bc334dc631d16c928af61ef0e27d8157d91",
remote = "https://github.com/10XDev/tenx_bazel_rules.git",
)
load(
"@tenx_bazel_rules//:deps.bzl",
"toolchain_dependencies",
)
toolchain_dependencies()
load(
"@tenx_bazel_rules//:toolchains.bzl",
"register_pipeline_toolchains",
)
register_pipeline_toolchains()
load(
"@tenx_bazel_rules//rules:cargo_repository.bzl",
"cargo_repository",
)
cargo_repository(
name = "bamtofastq_cargo_dependencies",
lockfile = ":Cargo.lock",
srcs = [
":Cargo.toml",
],
)