summaryrefslogtreecommitdiff
path: root/MODULE.bazel
blob: 914ce88c1a54eea4b4c008f3db469eba29971679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module(
  name = "compiler",
  version = "0.0.1",
)

bazel_dep(name = "rules_cc", version = "0.2.16")
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 = "abb61a688167623088f8768cc9264798df6a9d10",
)
bazel_dep(name = "catch2", version = "3.12.0")
bazel_dep(name = "argparse", version = "3.2.0")
bazel_dep(name = "willow", version = "0.0.1")

local_path_override(
  module_name = "willow",
  path = "willow",
)