initial commit

This commit is contained in:
TotallyNot 2023-12-31 21:26:43 +01:00
commit 86f9333aec
21 changed files with 6449 additions and 0 deletions

23
Cargo.toml Normal file
View 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"