-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
42 lines (35 loc) · 1.16 KB
/
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
39
40
41
42
[package]
name = "amethyst-imgui"
version = "0.7.1"
description = "imgui library for amethyst"
license = "CC0-1.0"
authors = ["Awpteamoose <[email protected]>", "Walter Pearce <[email protected]>"]
repository = "https://github.com/jaynus/amethyst-imgui"
readme = "README.md"
edition = "2018"
[features]
vulkan = ["amethyst/vulkan"]
metal = ["amethyst/metal"]
empty = ["amethyst/empty"]
shader-compiler = ["amethyst/shader-compiler"]
docking = []
[dependencies]
imgui = { version = "0.2" }
imgui-winit-support = { version = "0.2" }
amethyst = { version = "0.15" }
# Development dependencies
#amethyst = { path = "../amethyst", features = ["saveload", "vulkan", "gltf", "experimental-spirv-reflection", "shader-compiler", "tiles"] }
#imgui = { path = "../imgui-rs" }
#imgui-winit-support = { path = "../imgui-rs/imgui-winit-support" }
# Docking dependencies
#imgui = { git = "https://github.com/jaynus/imgui-rs.git" }
#imgui-winit-support = { git = "https://github.com/jaynus/imgui-rs.git" }
lazy_static = "1.4"
derivative = "1.0"
failure = "0.1"
[[example]]
name = "demo_window"
path = "examples/demo_window.rs"
[[example]]
name = "demo_overlay"
path = "examples/demo_overlay.rs"