-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 1.12 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
[package]
name = "transmission-renderer"
version = "0.1.0"
edition = "2021"
[workspace]
members = [".", "glam-pbr", "shader", "shared-structs"]
[dependencies]
anyhow = "1.0.45"
ash = "0.33.3"
ash-window = "0.7.0"
dolly = "0.1.4"
gltf = { git = "https://github.com/expenses/gltf", branch = "more-extensions", default-features = false, features = ["utils", "import", "image_jpeg_rayon", "KHR_materials_ior", "KHR_materials_transmission", "KHR_texture_transform", "KHR_materials_volume", "KHR_materials_specular"] }
image = { version = "*", default-features = false }
gpu-allocator = "0.10.0"
ash-abstractions = { package = "ash-opinionated-abstractions", git = "https://github.com/expenses/ash-opinionated-abstractions" }
winit = "0.25.0"
vk-sync = { package = "vk-sync-fork", version = "0.2.2" }
simplelog = "0.11.0"
log = "0.4.14"
shared-structs = { path = "shared-structs" }
glam = "0.19.0"
colstodian = { git = "https://github.com/termhn/colstodian" }
tracy-client = { git = "https://github.com/expenses/rust_tracy_client", branch = "dodgy-high-level-bindings" }
c_str_macro = "1.0.3"
structopt = "0.3.25"
[profile.dev.package."*"]
opt-level = 3