implot-rs/Cargo.toml

30 lines
689 B
TOML
Raw Normal View History

[package]
name = "implot"
version = "0.11.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"]
2020-10-12 16:00:27 +00:00
readme = "README.md"
[dependencies]
implot-sys = { version = "0.11.0", path = "implot-sys" }
imgui = { version = "0.11.0", features = ["docking"] }
2020-08-23 18:10:24 +00:00
bitflags = "1.0"
parking_lot = "0.11"
rustversion = "1.0.4"
[workspace]
members = [
"implot-sys",
]
exclude = [
"implot-sys-bindgen",
2020-08-08 14:01:51 +00:00
"implot-examples",
"implot-wgpu-examples",
]