Skip to content
Open
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
14 changes: 14 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,20 @@ build --@rules_go//go/config:pure
build:gofips --//bazel:gofips=True --@rules_go//go/toolchain:sdk_name=go_sdk_with_systemcrypto
build:gofips --@rules_go//go/config:pure=false

#################
# Rust settings #
#################

# Use rules_rust's Rust-side allocator_library that defines the
# mangled `__rustc::*` allocator shim symbols (rust_alloc,
# rust_dealloc, etc.). The default cc_allocator_library predates the
# allocator-symbol mangling in rustc 1.87+ and leaves those symbols
# undefined when a Rust staticlib is linked into a cc_binary via
# cc_common.link. See bazelbuild/rules_rust#3459.
build --@rules_rust//rust/settings:experimental_use_allocator_libraries_with_mangled_symbols=True

# end of rust settings #

# Improve caching and readability of filepaths that the compiler uses by not using
# absolute paths, and instead use paths that are relative to the redpanda repo.
# https://github.com/bazel-contrib/toolchains_llvm/pull/445#issuecomment-2605443516
Expand Down
8 changes: 4 additions & 4 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use_repo(

bazel_dep(name = "gazelle", version = "0.45.0")
bazel_dep(name = "abseil-cpp", version = "20250814.0")
bazel_dep(name = "bazel_skylib", version = "1.8.1")
bazel_dep(name = "bazel_skylib", version = "1.8.2")
bazel_dep(name = "crc32c", version = "1.1.0")
bazel_dep(name = "fmt", version = "12.1.0")
bazel_dep(name = "googletest", version = "1.17.0")
Expand Down Expand Up @@ -52,7 +52,7 @@ bazel_dep(name = "rules_go", version = "0.59.0")
bazel_dep(name = "rules_pkg", version = "1.0.1")
bazel_dep(name = "rules_proto", version = "7.1.0")
bazel_dep(name = "rules_python", version = "1.6.0")
bazel_dep(name = "rules_rust", version = "0.60.0")
bazel_dep(name = "rules_rust", version = "0.70.0")
bazel_dep(name = "snappy", version = "1.2.1")
bazel_dep(name = "yaml-cpp", version = "0.8.0")
bazel_dep(name = "zlib", version = "1.3.1.bcr.6")
Expand All @@ -69,7 +69,7 @@ single_version_override(
],
)

bazel_dep(name = "rules_shell", version = "0.4.1", dev_dependency = True)
bazel_dep(name = "rules_shell", version = "0.6.1", dev_dependency = True)

bazel_dep(name = "protovalidate", version = "1.0.0")

Expand Down Expand Up @@ -350,7 +350,7 @@ rust.toolchain(
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-gnu",
],
versions = ["1.86.0"],
versions = ["1.91.0"],
)
use_repo(rust, "rust_toolchains")

Expand Down
1,297 changes: 553 additions & 744 deletions MODULE.bazel.lock

Large diffs are not rendered by default.

Loading
Loading