[package]
edition = "2021"
name = "bevy_polyline"
version = "0.14.0"
authors = [
"Foresight Mining Software Corporation",
"Jonas Matser",
"Aevyrie Roessler",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Polyline Rendering for Bevy"
homepage = "https://github.com/ForesightMiningSoftwareCorporation/bevy_polyline"
documentation = "https://docs.rs/bevy_polyline"
readme = "README.md"
keywords = [
"bevy",
"gamedev",
"polyline",
"graphics",
]
categories = [
"rendering",
"game-development",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ForesightMiningSoftwareCorporation/bevy_polyline"
[lib]
name = "bevy_polyline"
path = "src/lib.rs"
[[example]]
name = "depth_bias"
path = "examples/depth_bias.rs"
[[example]]
name = "linestrip"
path = "examples/linestrip.rs"
[[example]]
name = "minimal"
path = "examples/minimal.rs"
[[example]]
name = "nbody"
path = "examples/nbody.rs"
[[example]]
name = "perspective"
path = "examples/perspective.rs"
[dependencies.bevy]
version = "0.18"
features = [
"bevy_core_pipeline",
"bevy_render",
"bevy_asset",
]
default-features = false
[dependencies.bevy_post_process]
version = "0.18"
[dependencies.bitflags]
version = "2.3"
[dependencies.bytemuck]
version = "1.16.1"
[dev-dependencies.bevy]
version = "0.18"
features = [
"bevy_window",
"bevy_winit",
"bevy_pbr",
"x11",
"tonemapping_luts",
"ktx2",
"zstd_rust",
]
default-features = false
[dev-dependencies.lazy_static]
version = "1.4.0"
[dev-dependencies.rand]
version = "0.8.4"
[dev-dependencies.ringbuffer]
version = "0.15"