xref: /freebsd/contrib/libcbor/examples/bazel/MODULE.bazel (revision b5b9517bfe394e55088f5a05882eabae7e9b7b29)
1*b5b9517bSEd Mastemodule(
2*b5b9517bSEd Maste    name = "libcbor_bazel_example",
3*b5b9517bSEd Maste    version = "0.1.0",
4*b5b9517bSEd Maste)
5*b5b9517bSEd Maste
6*b5b9517bSEd Mastebazel_dep(name = "rules_cc", version = "0.1.1")
7*b5b9517bSEd Mastebazel_dep(name = "googletest", version = "1.15.2")
8*b5b9517bSEd Maste
9*b5b9517bSEd Mastebazel_dep(name = "libcbor")
10*b5b9517bSEd Mastelocal_path_override(
11*b5b9517bSEd Maste    module_name = "libcbor",
12*b5b9517bSEd Maste    path = "../..",
13*b5b9517bSEd Maste)
14