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
3 changes: 0 additions & 3 deletions .bazelrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@

# Enable bzlmod support.
common --enable_bzlmod

# Add the platform name to the output directory.
build --experimental_platform_in_output_dir

Expand Down
2 changes: 1 addition & 1 deletion .bazelversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.2.1
9.0.0
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[package]
name = "all_crate_deps"
version = "0.0.0"
edition = "2021"
edition = "2024"
publish = false

[lib]
Expand Down
18 changes: 9 additions & 9 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,31 @@ module(

bazel_dep(
name = "platforms",
version = "0.0.11",
version = "1.0.0",
)
bazel_dep(
name = "bazel_skylib",
version = "1.7.1",
version = "1.8.2",
)
bazel_dep(
name = "rules_shell",
version = "0.4.0",
version = "0.6.1",
)
bazel_dep(
name = "rules_multirun",
version = "0.11.0",
version = "0.13.0",
)

bazel_dep(
name = "buildifier_prebuilt",
version = "8.0.3",
version = "8.2.1.2",
dev_dependency = True,
)

###############################################################################
# C++
###############################################################################
bazel_dep(name = "toolchains_llvm", version = "1.4.0")
bazel_dep(name = "toolchains_llvm", version = "1.6.0")

# Configure and register the toolchain.
llvm = use_extension("@toolchains_llvm//toolchain/extensions:llvm.bzl", "llvm")
Expand All @@ -47,12 +47,12 @@ register_toolchains("@llvm_toolchain//:all")
###############################################################################
# Rust
###############################################################################
bazel_dep(name = "rules_rust", version = "0.60.0")
bazel_dep(name = "rules_rust", version = "0.69.0")

# Rust toolchain
RUST_EDITION = "2021"
RUST_EDITION = "2024"

RUST_VERSION = "1.86.0"
RUST_VERSION = "1.94.0"

rust = use_extension("@rules_rust//rust:extensions.bzl", "rust")
rust.toolchain(
Expand Down
3,900 changes: 362 additions & 3,538 deletions MODULE.bazel.lock

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions WORKSPACE.bazel

This file was deleted.

2 changes: 1 addition & 1 deletion rust_example/macros/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

use proc_macro::TokenStream;
use quote::quote;
use syn::{parse_macro_input, ItemFn};
use syn::{ItemFn, parse_macro_input};

/// A proc macro attribute that logs function entry and exit.
#[proc_macro_attribute]
Expand Down
Loading