2023-09-28 12:10:45 +00:00
|
|
|
[package]
|
2024-08-14 14:40:59 +00:00
|
|
|
name = "blenvy"
|
|
|
|
version = "0.1.0-alpha.1"
|
2023-09-28 12:10:45 +00:00
|
|
|
authors = ["Mark 'kaosat-dev' Moissette"]
|
2024-03-18 17:00:19 +00:00
|
|
|
description = "Allows you to define Bevy components direclty inside gltf files and instanciate the components on the Bevy side."
|
2024-08-14 14:40:59 +00:00
|
|
|
homepage = "https://github.com/kaosat-dev/Blenvy"
|
|
|
|
repository = "https://github.com/kaosat-dev/Blenvy"
|
2023-09-28 12:10:45 +00:00
|
|
|
keywords = ["gamedev", "bevy", "assets", "gltf", "components"]
|
|
|
|
categories = ["game-development"]
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
|
2024-01-19 21:23:47 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2023-09-28 12:10:45 +00:00
|
|
|
[dependencies]
|
2024-08-14 14:40:59 +00:00
|
|
|
bevy = { version = "0.14", default-features = false, features = ["bevy_asset", "bevy_scene", "bevy_gltf", "animation"] }
|
2023-09-28 12:10:45 +00:00
|
|
|
serde = "1.0.188"
|
2023-09-29 10:59:07 +00:00
|
|
|
ron = "0.8.1"
|
2024-08-14 14:40:59 +00:00
|
|
|
serde_json = "1.0.108"
|
|
|
|
bevy_common_assets = {version = "0.11", features = ["ron"]}
|
|
|
|
|
2024-03-04 21:16:31 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-07-18 23:24:24 +00:00
|
|
|
bevy = { version = "0.14", default-features = false, features = ["dynamic_linking"] }
|