2020-08-04 20:05:04 +00:00
|
|
|
[package]
|
|
|
|
name = "implot"
|
2020-10-18 14:22:37 +00:00
|
|
|
version = "0.2.0"
|
2020-08-04 20:05:04 +00:00
|
|
|
edition = "2018"
|
|
|
|
authors = ["Sandro Merkli", "implot-rs contributors"]
|
2020-10-12 15:57:00 +00:00
|
|
|
description = "Rust bindings to https://github.com/epezent/implot"
|
2020-08-04 20:05:04 +00:00
|
|
|
homepage = "https://github.com/4bb4/implot-rs"
|
|
|
|
repository = "https://github.com/4bb4/implot-rs"
|
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
categories = ["gui", "api-bindings"]
|
2020-10-12 16:00:27 +00:00
|
|
|
readme = "README.md"
|
2020-08-04 20:05:04 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
implot-sys = { version = "0.1.0", path = "implot-sys" }
|
2020-10-26 17:54:48 +00:00
|
|
|
imgui = { version = "0.5.0" }
|
2020-08-23 18:10:24 +00:00
|
|
|
bitflags = "1.0"
|
2020-10-11 13:42:30 +00:00
|
|
|
parking_lot = "0.11"
|
|
|
|
lazy_static = "1.1"
|
2020-08-04 20:05:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"implot-sys",
|
|
|
|
]
|
|
|
|
exclude = [
|
|
|
|
"implot-sys-bindgen",
|
2020-08-08 14:01:51 +00:00
|
|
|
"implot-examples",
|
2020-10-12 22:36:31 +00:00
|
|
|
"implot-wgpu-examples",
|
2020-08-04 20:05:04 +00:00
|
|
|
]
|