You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
minimum-viable-game-engine/Cargo.toml

50 lines
1.3 KiB

[package]
name = "minimal-viable-game-engine"
version = "0.1.0"
authors = ["mitchellhansen <mitchellhansen0@gmail.com>"]
edition = "2018"
[dependencies]
arrayvec = "0.5"
futures = "0.3"
parking_lot = "0.11"
raw-window-handle = "0.3"
smallvec = "1"
tracing = { version = "0.1", default-features = false, features = ["std"] }
typed-arena = "2.0.1"
serde = "1.0.123"
serde_derive = "1.0.123"
log = "0.4"
env_logger = "0.8.3"
png = "0.16"
#winit = { version = "0.24.0"}
rand = { version = "0.7.2", features = ["wasm-bindgen"] }
bytemuck = "1"
noise = "0.6"
ddsfile = "0.4"
wgpu-subscriber = "0.1.0"
tobj = "2.0.3"
gilrs = "0.8.0"
gfx-backend-vulkan = { version = "0.6", features = ["x11"] }
lazy_static = "1.4.0"
crossbeam = "0.8.0"
toml = "0.5.8"
cgmath = "0.18.0"
rapier3d = { version = "0.5.0", features = ["simd-nightly", "parallel"] }
nalgebra = "0.24.1"
legion = "0.3.1"
wgpu = "0.7.0"
imgui = "0.7.0"
imgui-wgpu = "0.14.0"
winit-19 = { version = ">= 0.16, < 0.20", package = "winit", optional = true }
winit-20 = { version = ">= 0.20, < 0.22", package = "winit", optional = true }
winit-22 = { version = "0.22", package = "winit", optional = true }
winit-23 = { version = "0.23", package = "winit", optional = true }
winit-24 = { version = "0.24", package = "winit", optional = true }
[features]
default = ["winit-24"]
debug = ["winit-24"]