Skip to content
Snippets Groups Projects
Cargo.toml 800 B
Newer Older
Louis's avatar
Louis committed
[package]
name = "micro_banimate"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
description = "Easily manage complex Bevy 2D sprite animations"
authors = [
	"Louis Capitanchik <louis@microhacks.co.uk>"
]
Louis's avatar
Louis committed
repository = "https://lab.lcr.gr/microhacks/micro-banimate"
Louis's avatar
Louis committed

[features]
default = ["json_loader", "ecs_tilemap"]
json_loader = ["serde", "dep:serde_json"]
toml_loader = ["serde", "dep:toml"]
ecs_tilemap = ["dep:bevy_ecs_tilemap"]
serde = ["dep:serde"]

[dependencies]
anyhow = "1.0.65"
serde = { version = "1.0.145", optional = true }
serde_json = { version = "1.0.85", optional = true }
toml = { version = "0.5.9", optional = true }
bevy = { version = "0.8.1", default-features = false, features = ["bevy_asset", "render"] }
bevy_ecs_tilemap = { version = "0.7.0", optional = true }