imgui-rs/imgui/Cargo.toml
dbr fca87575fd Add freetype feature
Uses the upstream "imgui_freetype" to "Build font atlases using FreeType instead of stb_truetype (which is the default font rasterizer)"

Closes #359
2021-09-09 12:12:43 +10:00

26 lines
594 B
TOML

[package]
name = "imgui"
version = "0.7.0"
edition = "2018"
authors = ["The imgui-rs Developers"]
description = "High-level Rust 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", "api-bindings"]
readme = "../README.markdown"
exclude = ["/resources"]
[dependencies]
bitflags = "1"
imgui-sys = { version = "0.7.0", path = "../imgui-sys" }
parking_lot = "0.11"
[features]
wasm = ["imgui-sys/wasm"]
freetype = ["imgui-sys/freetype"]
[dev-dependencies]
memoffset = "0.6"