mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 05:28:35 +00:00
40 lines
717 B
TOML
40 lines
717 B
TOML
[package]
|
|
name = "imgui"
|
|
version = "0.0.3-pre"
|
|
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>"]
|
|
description = "Experimental bindings to ocornut/imgui"
|
|
readme = "README.markdown"
|
|
homepage = "https://github.com/gekkio/imgui-rs"
|
|
repository = "https://github.com/gekkio/imgui-rs"
|
|
license = "MIT"
|
|
|
|
[features]
|
|
default = ["glium"]
|
|
|
|
[dependencies]
|
|
libc = "0.1"
|
|
|
|
[dependencies.glium]
|
|
version = "0.8"
|
|
default-features = false
|
|
optional = true
|
|
|
|
[dependencies.imgui-sys]
|
|
path = "imgui-sys"
|
|
version = "0.0.2"
|
|
|
|
[dependencies.sdl2]
|
|
version = "0.7"
|
|
optional = true
|
|
|
|
[build-dependencies]
|
|
gcc = "0.3"
|
|
|
|
[dev-dependencies]
|
|
time = "0.1"
|
|
|
|
[dev-dependencies.glium]
|
|
version = "0.8"
|
|
features = ["glutin"]
|
|
default-features = false
|