[package]
name = "dear-implot-sys"
version = "0.8.0"
edition.workspace = true
description = "Low-level FFI bindings for ImPlot via cimplot (C API)"
license.workspace = true
repository.workspace = true
homepage.workspace = true
categories.workspace = true
keywords.workspace = true
build = "build.rs"
links = "dear_implot"
exclude = [
"third-party/cimplot/example_glfw_opengl3/**",
"third-party/cimplot/generator/**",
"third-party/cimplot/implot/.github/**",
"third-party/cimplot/implot/examples/**",
"third-party/cimplot/implot/misc/**",
"third-party/cimplot/implot/docs/**",
]
[package.metadata.docs.rs]
no-default-features = true
all-features = false
features = []
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
dear-imgui-sys = { path = "../../dear-imgui-sys", version = "0.8" }
flate2 = { workspace = true, optional = true }
tar = { workspace = true, optional = true }
build-support = { package = "dear-imgui-build-support", version = "0.1", path = "../../tools/build-support", optional = true }
[build-dependencies]
bindgen.workspace = true
cc.workspace = true
xshell = "0.2"
pkg-config = "0.3"
flate2.workspace = true
tar.workspace = true
cmake = "0.1"
build-support = { package = "dear-imgui-build-support", version = "0.1", path = "../../tools/build-support" }
[[bin]]
name = "package"
path = "bin/package/main.rs"
required-features = ["package-bin"]
[features]
package-bin = ["dep:flate2", "dep:tar", "dep:build-support"]
default = []
freetype = ["dear-imgui-sys/freetype"]
wasm = ["dear-imgui-sys/wasm"]
prebuilt = []
build-from-source = []