-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
49 lines (42 loc) · 1.4 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
[package]
name = "sokoban-rs"
version = "0.1.20"
edition = "2021"
authors = ["ShenMian <[email protected]>"]
license = "Apache-2.0"
description = "A sokoban with solver."
repository = "https://github.com/ShenMian/sokoban-rs"
keywords = ["sokoban", "sokoban-solver"]
categories = ["games"]
[dependencies]
soukoban = { git = "https://github.com/ShenMian/soukoban" }
bitflags = "2.8"
nalgebra = "0.33"
itertools = "0.14"
serde = { version = "1.0", features = ["derive"] }
rusqlite = { version = "0.33", features = ["bundled"] }
arboard = "3.4" # System clipboard
image = "0.25"
toml = "0.8"
dirs = "6"
bevy = "0.15"
leafwing-input-manager = "0.16"
bevy_kira_audio = "0.22"
benimator = "4.1"
winit = "0.30" # The version needs to be consistent with the one used in bevy
[build-dependencies]
fs_extra = "1.2"
# Enable a small amount of optimization in debug mode.
[profile.dev]
opt-level = 1
# Enable a large amount of optimization in debug mode for dependencies.
[profile.dev.package."*"]
opt-level = 3
# Enable more optimization in release mode at the cost of compile time.
[profile.release]
# Compile the entire crate as one unit.
# Significantly slows compile times, marginal improvements.
codegen-units = 1
# Do a second optimization pass over the entire program, including dependencies.
# Slightly slows compile times, marginal improvements.
lto = "thin"