mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 21:48:36 +00:00
- Various links now point at the new imgui-rs/imgui-rs github repo. - As discussed, the `authors` entry in Cargo.toml now uses same text that appears in `LICENSE-MIT`, and doesn't list anybody directly.
15 lines
464 B
TOML
15 lines
464 B
TOML
[package]
|
|
name = "imgui-glium-renderer"
|
|
version = "0.6.0"
|
|
edition = "2018"
|
|
authors = ["The imgui-rs Developers"]
|
|
description = "Glium renderer for the imgui crate"
|
|
homepage = "https://github.com/imgui-rs/imgui-rs"
|
|
repository = "https://github.com/imgui-rs/imgui-rs"
|
|
license = "MIT/Apache-2.0"
|
|
categories = ["gui", "rendering"]
|
|
|
|
[dependencies]
|
|
glium = { version = "0.28", default-features = false }
|
|
imgui = { version = "0.6.0", path = "../", features = ["glium"] }
|