bevy/Cargo.toml

36 lines
971 B
TOML
Raw Normal View History

2019-11-13 03:36:02 +00:00
[package]
name = "bevy"
version = "0.1.0"
authors = ["Carter Anderson <mcanders1@gmail.com>"]
edition = "2018"
[dependencies]
2020-01-21 04:10:40 +00:00
# Modified to use std::any::type_name instead of std::any::TypeId
2020-03-09 07:46:38 +00:00
legion = { path = "bevy_legion", features = ["serialize"] }
2020-03-09 03:31:40 +00:00
wgpu = { git = "https://github.com/gfx-rs/wgpu-rs.git", rev = "a7b0d5ae5bc0934439ef559ed145e93f0117c39a"}
2019-12-27 21:35:07 +00:00
glam = "0.8.4"
2020-02-16 09:02:05 +00:00
winit = "0.21.0"
2019-12-01 01:42:27 +00:00
zerocopy = "0.2"
log = "0.4"
2019-12-03 08:30:30 +00:00
env_logger = "0.7"
rand = "0.7.2"
2020-01-08 07:03:09 +00:00
gltf = "0.14.0"
2020-01-15 06:19:28 +00:00
serde = { version = "1", features = ["derive"]}
serde_json = "1.0"
uuid = { version = "0.8", features = ["v4"] }
erased-serde = "0.3"
type-uuid = "0.1"
2020-01-15 08:51:32 +00:00
shaderc = "0.6"
2020-01-21 04:10:40 +00:00
libloading = "0.5.2"
png = "0.16.0"
2020-02-16 20:12:55 +00:00
# rspirv = { git = "https://github.com/gfx-rs/rspirv.git", rev = "baa469eae2932271174593eb066894d7a7a38439" }
spirv-reflect = "0.2.3"
2020-01-19 10:02:12 +00:00
bevy_derive = { path = "bevy_derive" }
bevy_transform = { path = "bevy_transform" }
[profile.release]
debug = true
incremental = true
[profile.dev]
opt-level = 3