Skip to content
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 .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repos:
args: ["--maxkb=1024"]

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.16.4
rev: v0.16.6
hooks:
- id: ruff-format

Expand Down Expand Up @@ -50,7 +50,7 @@ repos:
- id: clang-format
name: clang-format
language: python
additional_dependencies: ["clang-format==22.1.8"]
additional_dependencies: ["clang-format==23.1.0"]
entry: python3 tools/format_cpp.py
pass_filenames: false
files: '\.(h|ixx|cpp|md)$'
4 changes: 2 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ bazel_dep(name = "platforms", version = "1.1.0")
bazel_dep(name = "rules_cc", version = "0.2.22")
bazel_dep(name = "bazel_skylib", version = "1.9.2")

bazel_dep(name = "googletest", version = "1.18.0", dev_dependency = True)
bazel_dep(name = "googletest", version = "1.18.0.bcr.1", dev_dependency = True)
bazel_dep(name = "google_benchmark", version = "1.9.5", dev_dependency = True)
bazel_dep(name = "fmt", version = "12.1.0", dev_dependency = True)
bazel_dep(name = "rules_python", version = "2.3.2", dev_dependency = True)
bazel_dep(name = "rules_python", version = "2.3.3", dev_dependency = True)

python = use_extension("@rules_python//python/extensions:python.bzl", "python", dev_dependency = True)
python.toolchain(
Expand Down
10 changes: 5 additions & 5 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ The library is not yet published to the [Bazel Central Registry](https://registr

With **Bzlmod** (Bazel 7+), add to your `MODULE.bazel`:

```python
```starlark
bazel_dep(name = "proxy", version = "4.1.0")
git_override(
module_name = "proxy",
Expand All @@ -289,7 +289,7 @@ git_override(

With **legacy WORKSPACE mode** (Bazel 5.1+ without Bzlmod), add to your `WORKSPACE`:

```python
```starlark
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "proxy",
Expand Down
Loading