forked from MatchaChoco010/egui-ash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
66 lines (62 loc) · 1.97 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "egui-ash"
version = "0.3.0"
authors = ["ORITO Itsuki <orito.itsuki@gmail.com>"]
description = "egui integration for ash (Vulkan)."
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/MatchaChoco010/egui-ash"
readme = "README.md"
documentation = "https://docs.rs/egui-ash"
repository = "https://github.com/MatchaChoco010/egui-ash"
categories = ["gui"]
keywords = ["gui", "egui", "ash", "vulkan", "winit"]
include = [
"/LICENSE-*",
"/src/*.rs",
"/src/shaders/spv/*.spv",
"/Cargo.toml",
]
[features]
default = ["egui-winit/default"]
gpu-allocator = [ "dep:gpu-allocator" ]
persistence = [
"egui/persistence",
"egui-winit/serde",
"directories-next",
"dep:serde",
"ron",
]
## Underlying egui-winit features
accesskit = ["egui-winit/accesskit"]
android-game-activity = ["egui-winit/android-game-activity"]
android-native-activity = ["egui-winit/android-native-activity"]
bytemuck = ["egui-winit/bytemuck"]
clipboard = ["egui-winit/clipboard"]
links = ["egui-winit/links"]
puffin = ["egui-winit/puffin"]
serde = ["egui-winit/serde"]
wayland = ["egui-winit/wayland"]
x11 = ["egui-winit/x11"]
[dependencies]
anyhow = "1.0.75"
ash = { version = "0.37.3", default-features = false }
ash-window = "0.12.0"
bytemuck = "1.14.0"
directories-next = { version = "2.0.0", optional = true }
egui = "0.24.1"
egui-winit = "0.24.1"
gpu-allocator = { version = "0.25.0", default-features = false, features = ["vulkan"], optional = true }
log = "0.4.20"
raw-window-handle = "0.5"
ron = { version = "0.8.1", optional = true }
serde = { version = "1.0.193", optional = true }
[dev-dependencies]
ash = { version = "0.37.3", default-features = false, features = ["linked", "debug"] }
egui_extras = { version = "0.24.2", features = ["all_loaders"] }
egui-ash = { path = ".", features = ["gpu-allocator", "persistence"] }
egui_tiles = "0.5.0"
glam = "0.25.0"
image = { version = "0.24.7", default-features = false, features = ["png", "jpeg", "bmp"] }
log = "0.4.20"
tobj = "4.0.0"