Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream' into 598_fix_no_debug_render_…
Browse files Browse the repository at this point in the history
…compile
  • Loading branch information
Vrixyz committed Dec 4, 2024
2 parents ed91a9e + 953dccb commit 2d58eae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ rust.unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(feature, values("dim2", "dim3"))',
] }

[workspace.lints.clippy]
needless_lifetimes = "allow"

[profile.dev]
# Use slightly better optimization by default, as examples otherwise seem laggy.
opt-level = 1
Expand Down
1 change: 1 addition & 0 deletions src/plugin/systems/collider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,7 @@ pub fn update_colliding_entities(
}

#[cfg(test)]
#[allow(missing_docs)]
pub mod test {
#[test]
#[cfg(all(feature = "dim3", feature = "async-collider"))]
Expand Down
1 change: 1 addition & 0 deletions src/plugin/systems/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ pub fn step_simulation<Hooks>(
}

#[cfg(test)]
#[allow(missing_docs)]
pub mod tests {
use bevy::{
asset::AssetPlugin,
Expand Down

0 comments on commit 2d58eae

Please sign in to comment.