~starkingdoms/starkingdoms

ref: core/rewrite-it-all-again-lmao starkingdoms/Cargo.toml -rw-r--r-- 1.0 KiB
0752435fghostly_zsh fix: attachment rotation 5 months ago
                                                                                
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
[workspace]
resolver = "2"
members = ["crates/*"]

[workspace.dependencies]
# members of the workspace
starkingdoms-common = { path = "crates/common" }
starkingdoms-proc = { path = "crates/proc" }
kabel = { path = "crates/kabel" }

# Logging
tracing = "0.1"
tracing-subscriber = "0.3"

# Bevy!
bevy_ecs = "0.16"

# egui and friends - rendering stuff
egui = "0.31"
egui_glow = { version = "0.31", features = ["winit"] }
winit = "0.30"
glow = "0.16"
image = "0.25"
resvg = "0.45"
egui-winit = { version = "0.31", default-features = false, features = ["links", "wayland", "x11"] }

# error handling
thiserror = "2"

# dealing with wasm
web-time = "1"
futures = "0.3"

# math
nalgebra = "0.33"

# serde and friends
serde = { version = "1", features = ["derive"] }
serde_json = "1"

# sync
crossbeam = "0.8"

# misc
bytemuck = "1"


[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3

[profile.release]
codegen-units = 1
lto = "thin"

[profile.wasm-release]
inherits = "release"
opt-level = "s"
strip = "debuginfo"