Skip to content

Update to nightly 2024-06-13 #630

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 13, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ env:
# END AUTOMATICALLY GENERATED

# The current nightly Rust version. Keep this synced with `rust-toolchain.toml`
CURRENT_NIGHTLY: nightly-2024-05-01
CURRENT_NIGHTLY: nightly-2024-06-13
# Various features that we'd usually want to test with
#
# Note: The `exception` feature is not enabled here, since it requires
Expand Down
109 changes: 54 additions & 55 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "deny"

[workspace.lints.clippy]
cargo = "warn"
cargo = { level = "warn", priority = -1 } # Because of `lint_groups_priority`
ptr_as_ptr = "warn"

[profile.assembly-tests]
Expand Down
1 change: 1 addition & 0 deletions crates/block2/src/global.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ impl<F: ?Sized> GlobalBlock<F> {
BlockFlags(BlockFlags::BLOCK_IS_GLOBAL.0 | BlockFlags::BLOCK_USE_STRET.0);

#[doc(hidden)]
#[allow(clippy::declare_interior_mutable_const)]
pub const __DEFAULT_HEADER: BlockHeader = BlockHeader {
// Populated in `global_block!`
isa: ptr::null_mut(),
Expand Down
4 changes: 2 additions & 2 deletions crates/header-translator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ fn main() -> Result<(), BoxError> {

// Ensure directories exist
let generated_dir = workspace_dir.join("generated").join(library_name);
fs::create_dir_all(&generated_dir)?;
fs::create_dir_all(&crate_dir.join("src"))?;
fs::create_dir_all(generated_dir)?;
fs::create_dir_all(crate_dir.join("src"))?;

// Recreate symlink to generated directory
let symlink_path = crate_dir.join("src").join("generated");
Expand Down
Loading