-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
77 lines (69 loc) · 1.99 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[workspace]
resolver = "2"
members = ["ikari", "build_web", "example_game", "clikari"]
[workspace.package]
version = "0.0.1"
edition = "2021"
rust-version = "1.72.1"
description = "3D Game Engine"
keywords = ["renderer", "3D", "rust", "wgpu", "game"]
license = "MIT"
repository = "https://github.com/Davidster/ikari"
categories = ["rendering", "game framework", "gamedev"]
authors = [
"David Huculak https://github.com/Davidster",
"Ikari Contributors https://github.com/Davidster/ikari/graphs/contributors",
]
[workspace.dependencies]
winit = { version = "0.29", git = "https://github.com/iced-rs/winit.git", rev = "b91e39ece2c0d378c3b80da7f3ab50e17bb798a5" }
ikari = { version = "0.0.1", path = "./ikari", default-features = false }
log = "0.4"
wgpu = { version = "0.19", features = ["trace"] }
wgpu-profiler = "0.16.2"
anyhow = { version = "1.0", features = ["backtrace"] }
env_logger = { version = "0.11", default-features = false, features = [
"auto-color",
"humantime",
] }
profiling = "=1.0.14"
image = { version = "0.25", default-features = false, features = [
"hdr",
"jpeg",
"png",
] }
gltf = "1.4"
pico-args = "0.5.0"
lazy_static = "1.5"
glam = { version = "0.28", features = ["approx", "bytemuck"] }
rand = { version = "0.8", features = ["small_rng"] }
pollster = "0.3"
# wasm32 depdendencies
web-sys = { version = "0.3.64", features = [
"Document",
"Window",
"Element",
"Headers",
"Request",
"RequestInit",
"RequestMode",
"Response",
"Blob",
"WorkerGlobalScope",
"ReadableStream",
"ReadableStreamDefaultReader",
"HtmlCollection",
] }
wasm-bindgen = { version = "0.2.92", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.42"
iced = { version = "0.12", features = ["canvas"] }
iced_wgpu = "0.12"
iced_winit = "0.12"
[patch.crates-io]
winit = { version = "0.29", git = "https://github.com/iced-rs/winit.git", rev = "b91e39ece2c0d378c3b80da7f3ab50e17bb798a5" }
[profile.dev]
opt-level = 1
debug = true
[profile.dev.package."*"]
opt-level = 3
[profile.release]
debug = true