diff --git a/.gitignore b/.gitignore index 30b62bfcf9..09d625d12e 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,6 @@ /localhost.pem /localhost-key.pem /serve_header.yml + +# Ignore Bazel generated files +bazel-* diff --git a/MODULE.bazel b/MODULE.bazel new file mode 100644 index 0000000000..de9dcb29a4 --- /dev/null +++ b/MODULE.bazel @@ -0,0 +1,5 @@ +module( + name = "nlohmann_json", + version = "3.11.2", # Keep in sync with NLOHMANN_JSON_VERSION_MAJOR, NLOHMANN_JSON_VERSION_MINOR, NLOHMANN_JSON_VERSION_PATCH + compatibility_level = 1, +)