Files
space-game/engine/prefabs/Cargo.toml
Amatsugu 634fd5430c
Some checks failed
CI / Clippy lints (push) Failing after 1m10s
CI / Tests (push) Failing after 1m7s
CI / Bevy lints (push) Failing after 1m50s
update bevy; waiting for rapier update
2026-02-08 14:11:06 -05:00

24 lines
635 B
TOML

[package]
name = "prefabs"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = "0.18.0"
serde = "1.0.219"
typetag = "0.2.20"
[dev-dependencies]
ron = "0.10.1"
[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"
needless_return = "allow"