mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
36 lines
No EOL
971 B
TOML
36 lines
No EOL
971 B
TOML
[package]
|
|
name = "bevy"
|
|
version = "0.1.0"
|
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
# Modified to use std::any::type_name instead of std::any::TypeId
|
|
legion = { path = "bevy_legion", features = ["serialize"] }
|
|
wgpu = { git = "https://github.com/gfx-rs/wgpu-rs.git", rev = "a7b0d5ae5bc0934439ef559ed145e93f0117c39a"}
|
|
glam = "0.8.4"
|
|
winit = "0.21.0"
|
|
zerocopy = "0.2"
|
|
log = "0.4"
|
|
env_logger = "0.7"
|
|
rand = "0.7.2"
|
|
gltf = "0.14.0"
|
|
serde = { version = "1", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
erased-serde = "0.3"
|
|
type-uuid = "0.1"
|
|
shaderc = "0.6"
|
|
libloading = "0.5.2"
|
|
png = "0.16.0"
|
|
# rspirv = { git = "https://github.com/gfx-rs/rspirv.git", rev = "baa469eae2932271174593eb066894d7a7a38439" }
|
|
spirv-reflect = "0.2.3"
|
|
bevy_derive = { path = "bevy_derive" }
|
|
bevy_transform = { path = "bevy_transform" }
|
|
|
|
[profile.release]
|
|
debug = true
|
|
incremental = true
|
|
|
|
[profile.dev]
|
|
opt-level = 3 |