-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (44 loc) · 1.2 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "jandering_engine"
version = "0.3.0"
edition = "2021"
authors = ["Jan Goličnik <[email protected]>"]
description = "Bare bones rendering framework"
keywords = ["rendering"]
license = "MPL-2.0"
repository = "https://github.com/JanGolicnik/jandering_engine"
rust-version = "1.65"
exclude = [
"examples/*",
]
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["wgpu"]
wgpu = []
[dependencies]
log = "0.4.0"
cfg-if = "1.0.0"
reqwest = "0.11.24"
anyhow = "1.0.79"
notify = "6.1.1"
pollster = "0.3.0"
image = { version = "0.24.8", features = ["png", "jpeg"], default-features = false }
bytemuck = { version = "1.14.0", features = ["derive"] }
glam = { version = "0.25.0", features = ["bytemuck"]}
wgpu = "22.1.0"
winit = { version = "0.30.1", features = ["rwh_06", "x11" ], default-features = false }
web-time = "1.0.0"
raw-window-handle = "0.6"
[dependencies.windows]
version = "0.57"
features = ["Win32_Foundation", "Win32_Security", "Win32_System_Threading", "Win32_UI_WindowsAndMessaging"]
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4.42"
web-sys = { version = "0.3.0", features = [
"Document",
"Window",
"Element",
"Location",
"Screen",
]}