27 lines
602 B
TOML
27 lines
602 B
TOML
[package]
|
|
name = "implot"
|
|
version = "0.1.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.1.0", path = "implot-sys" }
|
|
bitflags = "1.0"
|
|
parking_lot = "0.11"
|
|
lazy_static = "1.1"
|
|
|
|
|
|
[workspace]
|
|
members = [
|
|
"implot-sys",
|
|
]
|
|
exclude = [
|
|
"implot-sys-bindgen",
|
|
"implot-examples",
|
|
]
|