bevy_mod_outline/Cargo.toml

27 lines
668 B
TOML
Raw Normal View History

2022-06-10 21:29:51 +00:00
[package]
name = "bevy_mod_outline"
2022-08-05 01:38:44 +00:00
version = "0.2.0"
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-06-10 21:29:51 +00:00
"render",
] }
[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",
] }
[[example]]
name = "shapes"
path = "examples/shapes.rs"