-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 1007 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
33
34
35
36
[package]
name = "vike"
edition = "2021"
version = "0.1.0"
[dependencies]
anyhow = "1.0"
cfg-if = "1"
env_logger = "0.10"
instant = "0.1"
log = "0.4"
glam = "0.26"
pollster = "0.3"
wgpu = "0.19"
bytemuck = { version = "1.15", features = ["min_const_generics", "extern_crate_alloc", "derive", "bytemuck_derive"], default-features = false }
getrandom = { version = "0.2", features = ["js"] }
image = { version = "0.25", features = ["png", "jpeg"], default-features = false }
tobj = "4.0"
winit = { version = "0.29", features = ["rwh_06"], default-features = false }
futures-intrusive = "0.5.0"
[build-dependencies]
anyhow = "1.0"
fs_extra = "1.2"
[target."cfg(target_arch = \"wasm32\")".dependencies]
console_error_panic_hook = "0.1.6"
console_log = "1.0"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = ["Document", "Window", "Element", "Location"] }
wgpu = { version = "0.19", features = ["webgl"] }
[lib]
crate-type = ["cdylib", "rlib"]
required-features = []