forked from imgui-rs/imgui-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (34 loc) · 947 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "imgui"
version = "0.1.0-pre"
edition = "2018"
authors = ["Joonas Javanainen <[email protected]>", "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"
[badges]
travis-ci = { repository = "Gekkio/imgui-rs" }
[dependencies]
bitflags = "1.0"
glium = { version = "0.25", default-features = false, optional = true }
gfx = { version = "0.18", optional = true }
imgui-sys = { version = "0.1.0-pre", path = "imgui-sys" }
lazy_static = "1.1"
parking_lot = "0.8"
[dev-dependencies]
memoffset = "0.3"
[workspace]
members = [
"imgui-sys",
"imgui-gfx-renderer",
"imgui-glium-renderer",
"imgui-winit-support"
]
exclude = [
"imgui-examples",
"imgui-gfx-examples",
"imgui-sys-bindgen"
]