mirror of
https://github.com/bevyengine/bevy
synced 2025-01-11 04:38:57 +00:00
18 lines
601 B
TOML
18 lines
601 B
TOML
|
[package]
|
||
|
name = "bevy_sprite"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Carter Anderson <mcanders1@gmail.com>"]
|
||
|
edition = "2018"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
bevy_app = { path = "../bevy_app" }
|
||
|
bevy_core = { path = "../bevy_core" }
|
||
|
bevy_asset = { path = "../bevy_asset" }
|
||
|
bevy_type_registry = { path = "../bevy_type_registry" }
|
||
|
bevy_derive = { path = "../bevy_derive" }
|
||
|
bevy_render = { path = "../bevy_render" }
|
||
|
glam = { path = "../bevy_glam" }
|
||
|
legion = { path = "../bevy_legion", features = ["serialize"] }
|
||
|
zerocopy = "0.3.0"
|