-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 866 Bytes
/
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
[package]
name = "graphics"
version = "0.3.1"
authors = ["David O'Connor <[email protected]>"]
description = "A 3D rendering engine for rust programs, with GUI integration"
edition = "2021"
keywords = ["graphics", "engine", "gui", "render", "wgpu"]
categories = [
"rendering",
"rendering::engine",
"graphics",
]
repository = "https://github.com/David-OConnor/graphics"
documentation = "https://docs.rs/graphics"
readme = "README.md"
license = "MIT"
[dependencies]
wgpu = "^23.0.1"
#lin_alg = { version = "^1.0.1", features = ["computer_graphics"] }
lin_alg = { path = "../lin_alg", features = ["computer_graphics"] }
pollster = "^0.4.0" # For 2 WGPU init fns that use async.
image = "^0.25.2" # For loading textures
obj = "^0.10.2" # For loading OBJ meshes.
winit = "^0.30.5"
egui = "^0.30.0"
egui-wgpu = "^0.30.0"
egui-winit = "^0.30.0"