-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 1.31 KB
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 1.31 KB
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
[package]
name = "egui-ash-renderer"
description = "A Vulkan renderer for egui using Ash."
readme = "README.md"
keywords = ["egui", "vulkan", "ash"]
homepage = "https://github.com/adrien-ben/egui-ash-renderer"
repository = "https://github.com/adrien-ben/egui-ash-renderer"
documentation = "https://docs.rs/egui-ash-renderer"
license = "MIT"
version = "0.12.0"
authors = ["Adrien Bennadji <adrien.bennadji@live.fr>"]
edition = "2024"
include = ["/src", "LICENSE", "README.md", "CHANGELOG.md"]
[dependencies]
thiserror = "2.0"
log = "0.4"
egui = { version = "0.33", default-features = false }
ash = { version = "0.38", default-features = false, features = ["std"] }
gpu-allocator = { version = "0.28", default-features = false, features = ["std", "vulkan"], optional = true }
vk-mem = { version = "0.5", optional = true }
[features]
default = []
dynamic-rendering = []
gpu-allocator = ["dep:gpu-allocator"]
vk-mem = ["dep:vk-mem"]
[dev-dependencies]
simple_logger = "5.0"
winit = "0.30"
ash = { version = "0.38", default-features = false, features = ["debug", "linked", "std"] }
ash-window = "0.13"
raw-window-handle = "0.6"
image = "0.25"
egui = "0.33"
egui-winit = "0.33"
egui_demo_lib = "0.33"
egui_extras = { version = "0.33", default-features = false, features = ["all_loaders"] }
egui-ash-renderer = { path = ".", features = []}