initial commit
This commit is contained in:
commit
86f9333aec
21 changed files with 6449 additions and 0 deletions
23
Cargo.toml
Normal file
23
Cargo.toml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
[workspace]
|
||||
resolver = "2"
|
||||
members = [".", "macros"]
|
||||
|
||||
[package]
|
||||
name = "proxisim"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[features]
|
||||
default = ["json"]
|
||||
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 }
|
||||
serde_json = { version = "1", optional = true }
|
||||
|
||||
[dependencies.macros]
|
||||
path = "macros"
|
||||
Loading…
Add table
Add a link
Reference in a new issue