imgui-rs/imgui-sys/Cargo.toml
dbr 9128066f01 Fix up glob patterns in imgui-sys
Were set based on old pre-docking-branch-support paths

Closes #596
2022-01-05 14:47:41 +11:00

30 lines
747 B
TOML

[package]
name = "imgui-sys"
version = "0.8.1-alpha.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "Raw FFI bindings to dear imgui"
homepage = "https://github.com/imgui-rs/imgui-rs"
repository = "https://github.com/imgui-rs/imgui-rs"
license = "MIT/Apache-2.0"
categories = ["gui", "external-ffi-bindings"]
build = "build.rs"
links = "imgui"
# exclude .json, .lua from imgui dirs - they are intermediate artifacts from cimgui generator
exclude = ["third-party/imgui-*/*.json", "third-party/imgui-*/*.lua"]
[dependencies]
chlorine = "1.0.7"
mint = "0.5.6"
cfg-if = "1"
[build-dependencies]
cc = "1.0"
pkg-config = { version="0.3", optional=true }
[features]
default = []
wasm = []
freetype = ["pkg-config"]
docking = []