-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
48 lines (41 loc) · 1.03 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
[package]
name = "agpu"
version = "0.1.2"
edition = "2021"
resolver = "2"
description = "Abstract GPU Project"
homepage = "https://github.com/lyricwulf/agpu"
repository = "https://github.com/lyricwulf/agpu"
keywords = ["gpu", "graphics", "compute"]
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
wgpu = { version = "0.12", features = ["spirv"] }
half = { version = "1.8", optional = true }
futures = "0.3"
bytemuck = "1.7"
num-traits = "0.2"
raw-window-handle = "0.4"
tracing = "0.1"
[dependencies.agpu-macro]
version = "0.1.1"
path = "./macro"
optional = true
[dependencies.winit]
version = "0.26"
optional = true
[dependencies.egui]
optional = true
version = "0.17"
features = ["convert_bytemuck"]
[features]
profiler = []
macro = ["agpu-macro"]
default = ["profiler", "egui", "winit", "macro", "half"]
[dev-dependencies]
# Used in example
tracing-subscriber = "0.3"
# egui example
egui-winit = "0.17"
# math lib for examples
nalgebra = "0.30"