updates?
This commit is contained in:
parent
e7d6b74aab
commit
35413b563c
33 changed files with 10238 additions and 1891 deletions
23
Cargo.toml
23
Cargo.toml
|
|
@ -1,23 +1,32 @@
|
|||
[workspace]
|
||||
resolver = "2"
|
||||
members = [".", "macros"]
|
||||
members = [".", "macros", "models"]
|
||||
|
||||
[package]
|
||||
name = "proxisim"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
edition = "2024"
|
||||
|
||||
[features]
|
||||
default = ["json"]
|
||||
debug = ["bevy_ecs/bevy_debug_stepping"]
|
||||
json = ["dep:serde", "dep:serde_json"]
|
||||
|
||||
[dependencies]
|
||||
bevy_ecs = "0.12.1"
|
||||
rand = { version = "0.8.5", default-features = false, features = ["std", "alloc", "small_rng"] }
|
||||
rand_distr = "0.4.3"
|
||||
strum = { version = "0.25.0", features = ["derive"] }
|
||||
serde = { version = "1", features = [ "derive" ], optional = true }
|
||||
bevy_ecs = { version = "0.17.2", features = [] }
|
||||
rand = { version = "0.9.2", default-features = false, features = [
|
||||
"std",
|
||||
"alloc",
|
||||
"small_rng",
|
||||
"os_rng",
|
||||
] }
|
||||
rand_distr = "0.5.1"
|
||||
strum = { version = "0.27.2", features = ["derive"] }
|
||||
serde = { version = "1", features = ["derive"], optional = true }
|
||||
serde_json = { version = "1", optional = true }
|
||||
|
||||
[dependencies.macros]
|
||||
path = "macros"
|
||||
|
||||
[dependencies.proxisim_models]
|
||||
path = "models"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue