-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (41 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
48 lines (41 loc) · 1.07 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
[package]
name = "ethervoid"
version = "0.1.0"
edition = "2024"
[dependencies]
macroquad = { version = "0.4", features = ["glam-serde"] }
raywoke = { version = "0.3", features = ["glam"] }
rustc-hash = "2.1"
stecs = "0.1"
walkdir = "2.5"
parking_lot = "0.12"
rayon = "1.10"
tracing = "0.1"
tracing-subscriber = "0.3"
kira = "0.10"
imageproc = "0.25"
image = "0.25"
fast_image_resize = { version = "5.1", features = ["image", "rayon"] }
mlua = { version = "0.10.5", features = ["luau-jit", "send", "serialize"]}
serde = { version = "1.0", features = ["derive"] }
ron = "0.10"
bincode = "2.0"
zstd = "0.13"
unic-langid = "0.9"
fluent = "0.17"
[profile.dev.package."*"]
opt-level = 3
# TODO: Test to see if these actually improve performance
[profile.release]
codegen-units = 1
lto = "fat"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
semicolon_if_nothing_returned = "allow"
tabs_in_doc_comments = "allow"
wildcard_imports = "allow"