-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 823 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 823 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
25
26
27
28
29
30
31
[package]
name = "bespoke-engine"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.98"
bytemuck = { version = "1.23.2", features=["derive"] }
cgmath = "0.18.0"
image = "0.25.6"
resource = "0.6.0"
log = "0.4.27"
pollster = "0.4.0"
tobj = { version = "4.0.3", features=["async"] }
wgpu = "26.0.1"
phf = { version = "0.12.1", default-features = false }
phf_codegen = "0.12.1"
pathdiff = "0.2.3"
load_file = "1.0.1"
[build-dependencies]
phf = { version = "0.12.1", default-features = false }
phf_codegen = "0.12.1"
[target.'cfg(target_os = "android")'.dependencies]
winit = { version = "0.30.12", features = ["android-game-activity"] }
[target.'cfg(not(target_os = "android"))'.dependencies]
winit = "0.30.12"