41 lines
908 B
TOML
41 lines
908 B
TOML
[package]
|
|
name = "distributed_physics_test"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Experimental distributed physics system"
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 3
|
|
codegen-units = 1
|
|
incremental = false
|
|
debug = false
|
|
|
|
[dependencies]
|
|
avian2d = { version = "0.3.0", features = ["serialize", "simd"] }
|
|
bevy = { version = "0.16.0", default-features = false, features = [
|
|
"bevy_color",
|
|
"bevy_core_pipeline",
|
|
"bevy_render",
|
|
"bevy_ui",
|
|
"bevy_window",
|
|
"bevy_winit",
|
|
"dynamic_linking",
|
|
"multi_threaded",
|
|
"std",
|
|
"wayland",
|
|
] }
|
|
bevy_rand = { version = "0.11.0", features = ["wyrand", "std"] }
|
|
clap = { version = "4.5.32", features = ["derive"] }
|
|
log = { version = "*", features = [
|
|
"max_level_debug",
|
|
"release_max_level_warn",
|
|
] }
|
|
rand = { version = "0.9.1", default-features = false, features = ["std"] }
|
|
wyrand = "0.3.2"
|