2023-09-28 12:10:45 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_gltf_components"
|
2024-07-18 23:24:24 +00:00
|
|
|
version = "0.6.0"
|
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."
|
2023-09-28 14:53:21 +00:00
|
|
|
homepage = "https://github.com/kaosat-dev/Blender_bevy_components_workflow"
|
|
|
|
repository = "https://github.com/kaosat-dev/Blender_bevy_components_workflow"
|
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-07-18 23:24:24 +00:00
|
|
|
bevy = { version = "0.14", default-features = false, features = ["bevy_asset", "bevy_scene", "bevy_gltf"] }
|
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-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"] }
|