[package]
name = "bevy_plot"
version = "0.1.0"
edition = "2021"
authors = ["Eliot Bolduc"]
description = "A Bevy plugin for plotting data and explicit functions."
license = "MIT"
[dependencies]
bevy = { git = "https://github.com/bevyengine/bevy.git", version = "0.6", rev = "e749ee786c3a3ca11718b08f0545aa90e4b5aae6" }
itertools-num = "0.1"
bytemuck = "1.7"
rand = "0.8"
[[example]]
name = "bevy"
path = "examples/bevy.rs"
[[example]]
name = "markers"
path = "examples/markers.rs"
[[example]]
name = "minimal"
path = "examples/minimal.rs"
[[example]]
name = "func"
path = "examples/func.rs"
[[example]]
name = "animate"
path = "examples/animate.rs"
[[example]]
name = "runtime_setter"
path = "examples/runtime_setter.rs"