Skip to content

Commit 9ec3f8d

Browse files
authored
Bump dependency versions (#19)
* Bump dependency versions and fix signed/unsigned comparison - platforms 0.0.10 -> 1.0.0 - coroutines 3.1.0 -> 3.2.1 - rules_cc 0.2.16 -> 0.2.17 - cpp_toolbelt 2.0.1 -> 2.0.2 Also fix signed/unsigned comparison warning in BitSet::IsEmpty by using std::size_t for the loop index to match kNumWords. Made-with: Cursor * Ignore CMake build artifacts Made-with: Cursor
1 parent 6a12fe8 commit 9ec3f8d

4 files changed

Lines changed: 197 additions & 36 deletions

File tree

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
bazel-*
22
.vscode/*
3+
4+
# CMake build artifacts
5+
build/
6+
CMakeCache.txt
7+
CMakeFiles/
8+
cmake_install.cmake
9+
Makefile
10+
_deps/
11+
lib/
12+
*.a
13+
*.o

MODULE.bazel

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
module(
22
name = "cpp_toolbelt",
3-
version = "2.0.1",
3+
version = "2.0.2",
44
)
55

6-
bazel_dep(name = "platforms", version = "0.0.10")
6+
bazel_dep(name = "platforms", version = "1.0.0")
77
bazel_dep(name = "bazel_skylib", version = "1.9.0")
88
bazel_dep(name = "abseil-cpp", version = "20250814.1")
99
bazel_dep(name = "googletest", version = "1.17.0.bcr.2")
10-
bazel_dep(name = "coroutines", version = "3.1.0")
11-
bazel_dep(name = "rules_cc", version = "0.2.16")
10+
bazel_dep(name = "coroutines", version = "3.2.1")
11+
bazel_dep(name = "rules_cc", version = "0.2.17")
1212

1313
# For local debugging of co coroutine library.
1414
# local_path_override(

0 commit comments

Comments
 (0)