Switch back to nightly, update deps
This commit is contained in:
parent
1a5a628000
commit
e013fb427a
7 changed files with 57 additions and 28 deletions
28
Cargo.toml
28
Cargo.toml
|
|
@ -5,12 +5,32 @@ edition = "2024"
|
|||
description = "Experimental distributed physics system"
|
||||
license = "AGPL-3.0-only"
|
||||
|
||||
[lints.rust]
|
||||
# Mark `bevy_lint` as a valid `cfg`, as it is set when the Bevy linter runs.
|
||||
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(bevy_lint)"] }
|
||||
|
||||
[lints.clippy]
|
||||
# Bevy supplies arguments to systems via dependency injection, so it's natural for systems to
|
||||
# request more than 7 arguments, which would undesirably trigger this lint.
|
||||
too_many_arguments = "allow"
|
||||
# Queries may access many components, which would undesirably trigger this lint.
|
||||
type_complexity = "allow"
|
||||
# Make sure macros use their standard braces, such as `[]` for `bevy_ecs::children!`.
|
||||
nonstandard_macro_braces = "warn"
|
||||
|
||||
[package.metadata.bevy_lint]
|
||||
panicking_methods = "deny"
|
||||
pedantic = "warn"
|
||||
|
||||
[profile.dev]
|
||||
opt-level = 1
|
||||
|
||||
[profile.dev.package."*"]
|
||||
opt-level = 3
|
||||
|
||||
[profile.dev.package.wgpu-types]
|
||||
debug-assertions = false
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
opt-level = 3
|
||||
|
|
@ -35,14 +55,14 @@ bevy = { version = "0.16.1", default-features = false, features = [
|
|||
"wayland",
|
||||
] }
|
||||
bevy_rand = { version = "0.11.0", features = ["wyrand", "std"] }
|
||||
clap = { version = "4.5.39", features = ["derive"] }
|
||||
clap = { version = "4.5.48", features = ["derive"] }
|
||||
crossbeam-channel = "0.5.15"
|
||||
log = { version = "0.4.27", features = ["release_max_level_warn"] }
|
||||
rand = { version = "0.9.1", default-features = false, features = [
|
||||
log = { version = "0.4.28", features = ["release_max_level_warn"] }
|
||||
rand = { version = "0.9.2", default-features = false, features = [
|
||||
"std",
|
||||
"thread_rng",
|
||||
] }
|
||||
uuid = { version = "1.17.0", features = ["v4"] }
|
||||
uuid = { version = "1.18.1", features = ["v4"] }
|
||||
wyrand = "0.3.2"
|
||||
|
||||
[features]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue