bevy_mod_outline/Cargo.toml

51 lines
1.1 KiB
TOML
Raw Normal View History

2022-06-10 21:29:51 +00:00
[package]
name = "bevy_mod_outline"
version = "0.3.2"
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-11-22 00:05:47 +00:00
bevy = { version = "0.9", default-features = false, features = [
2022-08-01 21:10:53 +00:00
"bevy_asset",
"bevy_render",
"bevy_pbr",
"bevy_core_pipeline",
2022-06-10 21:29:51 +00:00
] }
bitfield = "0.14"
interpolation = "0.2"
thiserror = "1.0"
2022-06-10 21:29:51 +00:00
[dev-dependencies]
2022-11-22 00:05:47 +00:00
bevy = { version = "0.9", default-features = false, features = [
2022-06-10 21:29:51 +00:00
"bevy_winit",
"x11",
] }
[features]
default = ["bevy_ui"]
bevy_ui = ["bevy/bevy_ui", "bevy/bevy_sprite", "bevy/bevy_text"]
2022-06-10 21:29:51 +00:00
[[example]]
name = "shapes"
path = "examples/shapes.rs"
[[example]]
name = "pieces"
path = "examples/pieces.rs"
2023-01-14 02:02:14 +00:00
[[example]]
name = "render_layers"
path = "examples/render_layers.rs"
[[example]]
name = "animated_fox"
path = "examples/animated_fox.rs"
required-features = [
"bevy/animation", "bevy/bevy_gltf", "bevy/png", "bevy/bevy_scene"
2023-01-14 02:02:14 +00:00
]