mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 13:38:35 +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.
19 lines
559 B
TOML
19 lines
559 B
TOML
[package]
|
|
name = "imgui-examples"
|
|
version = "0.0.0"
|
|
edition = "2018"
|
|
authors = ["The imgui-rs Developers"]
|
|
description = "imgui crate examples using Glium backend"
|
|
homepage = "https://github.com/imgui-rs/imgui-rs"
|
|
repository = "https://github.com/imgui-rs/imgui-rs"
|
|
license = "MIT/Apache-2.0"
|
|
publish = false
|
|
|
|
[dev-dependencies]
|
|
clipboard = "0.5"
|
|
glium = { version = "0.28", default-features = true }
|
|
image = "0.23"
|
|
imgui = { path = "../" }
|
|
imgui-glium-renderer = { path = "../imgui-glium-renderer" }
|
|
imgui-winit-support = { path = "../imgui-winit-support" }
|