[package]
edition = "2024"
name = "dear-imgui-sys"
version = "0.16.0"
authors = ["Mingzhen Zhuang <superfrankie621@gmail.com>"]
build = "build.rs"
links = "dear-imgui"
exclude = [
"third-party/cimgui/imgui/.github/**",
"third-party/cimgui/imgui/docs/**",
"third-party/cimgui/imgui/examples/**",
"third-party/cimgui/imgui/misc/cpp/**",
"third-party/cimgui/imgui/misc/debuggers/**",
"third-party/cimgui/imgui/misc/fonts/**",
"third-party/cimgui/imgui/misc/single_file/**",
"third-party/cimgui/.github/**",
"third-party/cimgui/backend_test/**",
"third-party/cimgui/generator/**",
"third-party/cimgui/test/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level FFI bindings to Dear ImGui v1.92.9b (docking branch) via cimgui (C API)"
homepage = "https://github.com/Latias94/dear-imgui-rs"
documentation = "https://docs.rs/dear-imgui-sys"
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.dear-imgui-sources]
cimgui-revision = "bf9b984ef74470996fc6c9a6963d9e988e310101"
imgui-revision = "b48d1afbe8ee8b238e2961dc363a949dd7304e23"
[package.metadata.docs.rs]
no-default-features = true
all-features = false
features = []
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
abi-probe = ["build-from-source"]
backend-shim-android = []
backend-shim-dx11 = []
backend-shim-opengl3 = []
backend-shim-win32 = []
bindgen = ["dep:bindgen"]
build-from-source = []
default = []
freetype = [
"pkg-config",
"vcpkg",
]
glam = ["dep:glam"]
package-bin = [
"dep:flate2",
"dep:tar",
]
pkg-config = ["build-support/pkg-config"]
prebuilt = ["build-support/download"]
stack-layout = []
test-engine = ["build-from-source"]
vcpkg = ["build-support/vcpkg"]
wasm = []
[lib]
name = "dear_imgui_sys"
path = "src/lib.rs"
[[bin]]
name = "package"
path = "bin/package/main.rs"
required-features = ["package-bin"]
[[test]]
name = "numeric_contract"
path = "tests/numeric_contract.rs"
[[test]]
name = "platform_io_invocation_abi"
path = "tests/platform_io_invocation_abi.rs"
[dependencies.flate2]
version = "1"
optional = true
[dependencies.glam]
version = "0.32"
optional = true
[dependencies.mint]
version = "0.5.9"
[dependencies.tar]
version = "0.4"
optional = true
[build-dependencies.bindgen]
version = "0.72"
optional = true
[build-dependencies.build-support]
version = "0.16"
features = ["binding-spec"]
package = "dear-imgui-build-support"
[build-dependencies.cc]
version = "1.2"