[package]
edition = "2024"
name = "dear-implot-sys"
version = "0.10.1"
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/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level FFI bindings for ImPlot via cimplot (C API)"
homepage = "https://github.com/Latias94/dear-imgui-rs"
readme = "README.md"
keywords = [
"imgui",
"ui",
"graphics",
"docking",
"multiview",
]
categories = [
"gui",
"api-bindings",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Latias94/dear-imgui-rs"
resolver = "2"
[package.metadata.docs.rs]
no-default-features = true
all-features = false
features = []
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
build-from-source = []
default = []
freetype = ["dear-imgui-sys/freetype"]
package-bin = [
"dep:flate2",
"dep:tar",
"dep:build-support",
]
prebuilt = ["build-support/download"]
wasm = ["dear-imgui-sys/wasm"]
[lib]
name = "dear_implot_sys"
path = "src/lib.rs"
[[bin]]
name = "package"
path = "bin/package/main.rs"
required-features = ["package-bin"]
[dependencies.build-support]
version = "0.2"
optional = true
package = "dear-imgui-build-support"
[dependencies.dear-imgui-sys]
version = "0.10"
[dependencies.flate2]
version = "1"
optional = true
[dependencies.tar]
version = "0.4"
optional = true
[build-dependencies.bindgen]
version = "0.72"
[build-dependencies.build-support]
version = "0.2"
package = "dear-imgui-build-support"
[build-dependencies.cc]
version = "1.2"
[build-dependencies.cmake]
version = "0.1"
[build-dependencies.pkg-config]
version = "0.3"
[build-dependencies.xshell]
version = "0.2"