-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 748 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "materialize-cli"
version = "1.0.0"
edition = "2024"
rust-version = "1.87"
description = "Generate PBR maps from diffuse textures using GPU compute shaders"
license = "MIT"
repository = "https://github.com/maikramer/Materialize-CLI"
readme = "README.md"
keywords = ["pbr", "texture", "normal-map", "gpu", "wgpu"]
categories = ["graphics", "command-line-utilities"]
[dependencies]
wgpu = "29"
tokio = { version = "1.50", features = ["full"] }
pollster = "0.4"
futures = "0.3"
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "tga", "exr"] }
clap = { version = "4.6", features = ["derive"] }
anyhow = "1.0"
bytemuck = { version = "1.25", features = ["derive"] }
[dev-dependencies]
tempfile = "3.27"