-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (57 loc) · 1.94 KB
/
Cargo.toml
File metadata and controls
67 lines (57 loc) · 1.94 KB
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
[workspace]
members = [
"crates/unen",
"crates/unen_app",
"crates/unen_event",
"crates/unen_event_derive",
"crates/unen_logging",
"crates/unen_net",
"crates/unen_render",
"crates/unen_window",
"crates/unen_winit",
]
resolver = "2"
[workspace.package]
version = "0.0.3"
edition = "2021"
license = "MIT"
repository = "https://github.com/UnnamedEngine/unen"
keywords = ["unen"]
[profile.release]
strip = true
[workspace.dependencies]
unen = { path = "./crates/unen", version = "0.0.3" }
unen_app = { path = "./crates/unen_app", version = "0.0.3" }
unen_event = { path = "./crates/unen_event", version = "0.0.3" }
unen_event_derive = { path = "./crates/unen_event_derive", version = "0.0.3" }
unen_logging = { path = "./crates/unen_logging", version = "0.0.3" }
unen_net = { path = "./crates/unen_net", version = "0.0.3" }
unen_render = { path = "./crates/unen_render", version = "0.0.3" }
unen_window = { path = "./crates/unen_window", version = "0.0.3" }
unen_winit = { path = "./crates/unen_winit", version = "0.0.3" }
# Logging
log = { version = "0.4.28" }
tracing = { version = "0.1.41", features = ["log"] }
tracing-subscriber = { version = "0.3.20" }
# Error Handling
thiserror = { version = "2.0.17" }
# Derive Macros
syn = { version = "2.0.106", features = ["full"] }
quote = { version = "1.0.41" }
proc-macro2 = { version = "1.0.101" }
# Algorithm
bincode = { version = "2.0.1", features = ["serde"] }
crc32fast = { version = "1.5.0" }
# Execution
signal-hook = { version = "0.3.18" }
pollster = { version = "0.4.0" }
# Rendering
winit = { version = "0.30.12", features = ["android-native-activity"] }
wgpu = { version = "27.0.1", features = ["webgl"] }
raw-window-handle = { version = "0.6.2" }
# Web
console_error_panic_hook = { version = "0.1.7" }
console_log = { version = "1.0.0" }
wasm-bindgen = { version = "0.2.104" }
wasm-bindgen-futures = { version = "0.4.54" }
web-sys = { version = "0.3", features = ["Document", "Window", "Element"] }