2022-06-10 21:29:51 +00:00
|
|
|
[package]
|
|
|
|
name = "bevy_mod_outline"
|
2023-11-08 21:38:20 +00:00
|
|
|
version = "0.6.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]
|
2023-11-08 22:29:32 +00:00
|
|
|
bevy = { version = "0.12", default-features = false, features = [
|
2022-08-01 21:10:53 +00:00
|
|
|
"bevy_asset",
|
2022-08-21 23:37:34 +00:00
|
|
|
"bevy_render",
|
|
|
|
"bevy_pbr",
|
2023-08-14 00:51:43 +00:00
|
|
|
"ktx2",
|
|
|
|
"tonemapping_luts",
|
|
|
|
"zstd",
|
2022-08-21 23:37:34 +00:00
|
|
|
"bevy_core_pipeline",
|
2022-06-10 21:29:51 +00:00
|
|
|
] }
|
2022-11-20 21:40:22 +00:00
|
|
|
bitfield = "0.14"
|
2022-12-31 04:57:13 +00:00
|
|
|
interpolation = "0.2"
|
2022-08-07 21:16:39 +00:00
|
|
|
thiserror = "1.0"
|
2023-11-08 22:29:32 +00:00
|
|
|
wgpu-types = "0.17"
|
2022-06-10 21:29:51 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-11-08 22:29:32 +00:00
|
|
|
bevy = { version = "0.12", default-features = false, features = [
|
2023-03-17 22:28:08 +00:00
|
|
|
"animation",
|
|
|
|
"bevy_gltf",
|
2023-08-14 00:51:43 +00:00
|
|
|
"bevy_pbr",
|
2023-03-17 22:28:08 +00:00
|
|
|
"bevy_scene",
|
2022-06-10 21:29:51 +00:00
|
|
|
"bevy_winit",
|
2023-03-17 22:28:08 +00:00
|
|
|
"png",
|
2022-06-10 21:29:51 +00:00
|
|
|
"x11",
|
|
|
|
] }
|
|
|
|
|
2022-08-21 23:37:34 +00:00
|
|
|
[features]
|
2022-11-17 00:25:54 +00:00
|
|
|
default = ["bevy_ui"]
|
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
|
|
|
|
2022-11-17 00:25:54 +00:00
|
|
|
[[example]]
|
|
|
|
name = "pieces"
|
|
|
|
path = "examples/pieces.rs"
|
|
|
|
|
2023-10-27 20:34:40 +00:00
|
|
|
[[example]]
|
|
|
|
name = "flying_objects"
|
|
|
|
path = "examples/flying_objects.rs"
|
|
|
|
|
2023-01-14 02:02:14 +00:00
|
|
|
[[example]]
|
|
|
|
name = "render_layers"
|
|
|
|
path = "examples/render_layers.rs"
|
|
|
|
|
2022-10-12 17:31:02 +00:00
|
|
|
[[example]]
|
|
|
|
name = "animated_fox"
|
2023-03-21 18:35:10 +00:00
|
|
|
path = "examples/animated_fox.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "hollow"
|
2023-05-30 21:07:45 +00:00
|
|
|
path = "examples/hollow.rs"
|
2023-08-14 00:51:43 +00:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "morph_targets"
|
|
|
|
path = "examples/morph_targets.rs"
|