imgui-rs/Cargo.toml
dependabot-preview[bot] 814515ec1c
Update memoffset requirement from 0.5 to 0.6
Updates the requirements on [memoffset](https://github.com/Gilnaa/memoffset) to permit the latest version.
- [Release notes](https://github.com/Gilnaa/memoffset/releases)
- [Commits](https://github.com/Gilnaa/memoffset/compare/v0.5.0...v0.6.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-10-26 03:21:25 +00:00

43 lines
953 B
TOML

[package]
name = "imgui"
version = "0.5.0"
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.5.0", path = "imgui-sys" }
lazy_static = "1.1"
parking_lot = "0.11"
[features]
wasm = ["imgui-sys/wasm"]
[dev-dependencies]
memoffset = "0.6"
[workspace]
members = [
"imgui-sys",
"imgui-gfx-renderer",
"imgui-glium-renderer",
"imgui-winit-support"
]
exclude = [
"imgui-examples",
"imgui-gfx-examples",
"imgui-sys-bindgen"
]