implot-rs/Cargo.toml
4bb4 6bb1809690 Updated versions and fixed build errors. See comments.
- This commit fixes the regular build and the glium example. The WGPU
  example needs an updated imgui-wgpu to point to the new imgui-sys
  version for things to work.
- The im_str and ImString usage deprecations are not fixed yet.
- There is no version bump for cimplot yet.
2021-10-03 12:34:38 +02:00

29 lines
663 B
TOML

[package]
name = "implot"
version = "0.6.0"
edition = "2018"
authors = ["Sandro Merkli", "implot-rs contributors"]
description = "Rust bindings to https://github.com/epezent/implot"
homepage = "https://github.com/4bb4/implot-rs"
repository = "https://github.com/4bb4/implot-rs"
license = "MIT/Apache-2.0"
categories = ["gui", "api-bindings"]
readme = "README.md"
[dependencies]
implot-sys = { version = "0.6.0", path = "implot-sys" }
imgui = { version = "=0.8.0" }
bitflags = "1.0"
parking_lot = "0.11"
rustversion = "1.0.4"
[workspace]
members = [
"implot-sys",
]
exclude = [
"implot-sys-bindgen",
"implot-examples",
"implot-wgpu-examples",
]