mirror of https://github.com/Leinnan/rpack.git
23 lines
575 B
TOML
23 lines
575 B
TOML
[package]
|
|
name = "bevy_rpack"
|
|
description = "Bevy plugin with rpack atlas support"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
repository = "https://github.com/Leinnan/rpack"
|
|
authors = ["Piotr Siuszko <siuszko@zoho.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["bevy", "2d", "plugin"]
|
|
|
|
[features]
|
|
default = ["bevy"]
|
|
bevy = ["dep:bevy"]
|
|
|
|
[dependencies]
|
|
bevy = { version = "0.15", optional = true, default-features = false, features = [
|
|
"bevy_asset",
|
|
"bevy_sprite",
|
|
"bevy_image",
|
|
] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2.0" |