2022-06-10 21:29:51 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_mod_outline"
|
2022-10-12 17:44:05 +00:00
|
|
|
version = "0.2.4"
|
2022-06-10 21:29:51 +00:00
|
|
|
edition = "2021"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
description = "A mesh outlining plugin for Bevy."
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://github.com/komadori/bevy_mod_outline/"
|
|
|
|
repository = "https://github.com/komadori/bevy_mod_outline/"
|
|
|
|
keywords = ["gamedev", "bevy", "outline"]
|
|
|
|
categories = ["game-engines", "rendering"]
|
|
|
|
|
|
|
|
[dependencies]
|
2022-08-01 21:10:53 +00:00
|
|
|
bevy = { version = "0.8", default-features = false, features = [
|
|
|
|
"bevy_asset",
|
2022-08-21 23:37:34 +00:00
|
|
|
"bevy_render",
|
|
|
|
"bevy_pbr",
|
|
|
|
"bevy_core_pipeline",
|
2022-06-10 21:29:51 +00:00
|
|
|
] }
|
2022-08-07 21:16:39 +00:00
|
|
|
thiserror = "1.0"
|
2022-06-10 21:29:51 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-01 21:10:53 +00:00
|
|
|
bevy = { version = "0.8", default-features = false, features = [
|
2022-06-10 21:29:51 +00:00
|
|
|
"bevy_winit",
|
|
|
|
"x11",
|
|
|
|
] }
|
|
|
|
|
2022-08-21 23:37:34 +00:00
|
|
|
[features]
|
2022-08-23 21:16:59 +00:00
|
|
|
default = ["align16", "bevy_ui"]
|
|
|
|
align16 = []
|
2022-08-23 00:25:40 +00:00
|
|
|
bevy_ui = ["bevy/bevy_ui", "bevy/bevy_sprite", "bevy/bevy_text"]
|
2022-08-21 23:37:34 +00:00
|
|
|
|
2022-06-10 21:29:51 +00:00
|
|
|
[[example]]
|
2022-08-05 01:40:04 +00:00
|
|
|
name = "shapes"
|
2022-08-21 23:37:34 +00:00
|
|
|
path = "examples/shapes.rs"
|
2022-10-12 17:31:02 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "animated_fox"
|
|
|
|
path = "examples/animated_fox.rs"
|
|
|
|
required-features = [
|
|
|
|
"bevy/animation", "bevy/bevy_gltf", "bevy/png", "bevy/bevy_scene"
|
|
|
|
]
|