-
Notifications
You must be signed in to change notification settings - Fork 8
/
MODULE.bazel
27 lines (21 loc) · 986 Bytes
/
MODULE.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
module(
name = "toktok-stack",
version = "0.1",
)
# https://github.com/bazelbuild/platforms/releases
bazel_dep(name = "platforms", version = "0.0.10")
bazel_dep(name = "rules_license", version = "1.0.0")
# https://github.com/bazelbuild/bazel-central-registry/tree/main/modules/curl
bazel_dep(name = "curl", version = "8.8.0")
# https://github.com/bazelbuild/bazel-central-registry/tree/main/modules/libconfig
bazel_dep(name = "libconfig", version = "1.7.3")
# https://github.com/bazelbuild/bazel-central-registry/tree/main/modules/protobuf
bazel_dep(name = "protobuf", version = "28.3")
# Hedron's Compile Commands Extractor for Bazel
# https://github.com/hedronvision/bazel-compile-commands-extractor
bazel_dep(name = "hedron_compile_commands", dev_dependency = True)
git_override(
module_name = "hedron_compile_commands",
remote = "https://github.com/hedronvision/bazel-compile-commands-extractor.git",
commit = "4f28899228fb3ad0126897876f147ca15026151e",
)