imgui-rs/Cargo.toml
Gabriel Smith bdf65d181e Update to glium 0.27
This also forces the update to glutin 0.24.0 and winit 0.22.1 in
imgui-example's lock file.
2020-05-18 15:12:38 -04:00

43 lines
961 B
TOML

[package]
name = "imgui"
version = "0.4.0-pre"
edition = "2018"
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
description = "High-level Rust bindings to dear imgui"
homepage = "https://github.com/Gekkio/imgui-rs"
repository = "https://github.com/Gekkio/imgui-rs"
license = "MIT/Apache-2.0"
categories = ["gui", "api-bindings"]
readme = "README.markdown"
exclude = [
"/resources"
]
[dependencies]
bitflags = "1.0"
glium = { version = "0.27", default-features = false, optional = true }
gfx = { version = "0.18", optional = true }
imgui-sys = { version = "0.4.0-pre", path = "imgui-sys" }
lazy_static = "1.1"
parking_lot = "0.10"
[features]
wasm = ["imgui-sys/wasm"]
[dev-dependencies]
memoffset = "0.5"
[workspace]
members = [
"imgui-sys",
"imgui-gfx-renderer",
"imgui-glium-renderer",
"imgui-winit-support"
]
exclude = [
"imgui-examples",
"imgui-gfx-examples",
"imgui-sys-bindgen"
]