Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ cc_library(
"@boost.uuid",
"@com_github_HowardHinnant_date//:date",
"@com_github_LiamBindle_mqtt-c//:libmqtt",
"@com_github_biojppm_rapidyaml//:ryml",
"@rapidyaml//:rapidyaml",
"@com_github_everest_liblog//:liblog",
"@com_github_everest_everest-sqlite//:everest-sqlite",
"@com_github_fmtlib_fmt//:fmt",
Expand Down Expand Up @@ -86,7 +86,7 @@ cc_binary(
),
cxxopts = ["-std=c++17"],
deps = [
"@com_github_biojppm_rapidyaml//:ryml",
"@rapidyaml//:rapidyaml",
"@com_github_everest_liblog//:liblog",
"@com_github_fmtlib_fmt//:fmt",
"@com_github_warmcatt_libwebsockets//:libwebsockets",
Expand Down
5 changes: 2 additions & 3 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,15 @@ bazel_dep(name = "sqlite3", version = "3.49.1")

bazel_dep(name = "openssl", version = "3.3.1.bcr.6")

bazel_dep(name = "rapidyaml", version = "0.10.0")

deps = use_extension("//third-party/bazel:extension.bzl", "deps")
use_repo(
deps,
"com_github_everest_liblog",
"com_github_everest_everest-sqlite",
"com_github_pboettch_json-schema-validator",
"com_github_HowardHinnant_date",
"com_github_biojppm_rapidyaml",
"com_github_biojppm_c4core",
"com_github_biojppm_debugbreak",
"com_github_warmcatt_libwebsockets",
"com_github_LiamBindle_mqtt-c",
"libcap",
Expand Down
16 changes: 0 additions & 16 deletions third-party/bazel/BUILD.c4core.bazel

This file was deleted.

8 changes: 0 additions & 8 deletions third-party/bazel/BUILD.debugbreak.bazel

This file was deleted.

12 changes: 0 additions & 12 deletions third-party/bazel/BUILD.rapidyaml.bazel

This file was deleted.

27 changes: 0 additions & 27 deletions third-party/bazel/extension.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -40,33 +40,6 @@ def _deps_impl(module_ctx):
build_file = "@everest-framework//third-party/bazel:BUILD.date.bazel",
)

maybe(
http_archive,
name = "com_github_biojppm_rapidyaml",
url = "https://github.com/biojppm/rapidyaml/archive/653eac9741c7728f2a87435b981737894149e002.tar.gz",
sha256 = "f0fe32e47a4f378753fb65edef07ae3cc3a8db870daf847e6055799330e988c6",
strip_prefix = "rapidyaml-653eac9741c7728f2a87435b981737894149e002",
build_file = "@everest-framework//third-party/bazel:BUILD.rapidyaml.bazel",
)

maybe(
http_archive,
name = "com_github_biojppm_c4core",
url = "https://github.com/biojppm/c4core/archive/f6acc1d3eb5b61b4cfe75ec67c5a7a2beee59e8a.tar.gz",
sha256 = "397f69ef8d0588807c8c5ef7a1f84ba6ac77e7229f81d1e06997d3b8dd675af3",
strip_prefix = "c4core-f6acc1d3eb5b61b4cfe75ec67c5a7a2beee59e8a",
build_file = "@everest-framework//third-party/bazel:BUILD.c4core.bazel",
)

maybe(
http_archive,
name = "com_github_biojppm_debugbreak",
url = "https://github.com/biojppm/debugbreak/archive/328e4abca3384cbd0a69e70f263cc7b2794bff09.tar.gz",
sha256 = "e90bc63f50e516af1a65991ffa0410fd2698fd0936041f387824b2114e72a549",
strip_prefix = "debugbreak-328e4abca3384cbd0a69e70f263cc7b2794bff09",
build_file = "@everest-framework//third-party/bazel:BUILD.debugbreak.bazel",
)

maybe(
http_archive,
name = "com_github_warmcatt_libwebsockets",
Expand Down