-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (76 loc) · 2.25 KB
/
Cargo.toml
File metadata and controls
83 lines (76 loc) · 2.25 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
name = "rummage"
version = "0.1.0"
edition = "2024"
[features]
test-utils = []
snapshot = []
mtgjson = []
default = ["snapshot"]
debug = ["bevy-persistent/pretty"]
[dependencies]
async-trait = "0.1.88"
bevy = { version = "0.16.0", default-features = true, features = [
"wayland",
"jpeg",
"dynamic_linking",
"serialize",
] }
bevy-inspector-egui = "0.31.0"
bevy-persistent = { version = "0.8.0", features = ["bincode", "toml"] }
bevy_prng = "0.11.0"
bevy_rand = "0.11.0"
bevy_replicon = "0.33.0"
avian3d = "0.3"
bincode = { version = "2.0.1", features = ["serde"] }
bitflags = "2.9.1"
bzip2 = "0.5.2"
chrono = "0.4.40"
dirs = "6.0.0"
flate2 = "1.1.1"
hex = "0.4.3"
image = "0.25.6"
lazy_static = "1.4"
log = { version = "0.4.27", features = [
# "max_level_debug",
# "release_max_level_warn",
] }
once_cell = "1.21.3"
rand = "0.9.1"
rand_core = "0.9.3"
regex = "1.10.4"
reqwest = { version = "0.12.15", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10.8"
tar = "0.4.44"
tokio = { version = "1.44.0", features = ["time"] }
uuid = { version = "1.16.0", features = ["v4"] }
bevy_spacetimedb = "0.5.0"
[dev-dependencies]
tempfile = "3.19.1"
tokio = { version = "1.44.2", features = ["full"] }
tokio-test = "0.4"
# Enable a small amount of optimization in the dev profile.
[profile.dev]
opt-level = 1
# Enable a large amount of optimization in the dev profile for dependencies.
[profile.dev.package."*"]
opt-level = 3
# Enable more optimization in the release profile at the cost of compile time.
[profile.release]
# Compile the entire crate as one unit.
# Slows compile times, marginal improvements.
codegen-units = 1
# Do a second optimization pass over the entire program, including dependencies.
# Slows compile times, marginal improvements.
lto = "thin"
# Optimize for size in the wasm-release profile to reduce load times and bandwidth usage on web.
[profile.wasm-release]
# Default to release profile values.
inherits = "release"
# Optimize with size in mind (also try "z", sometimes it is better).
# Slightly slows compile times, great improvements to file size and runtime performance.
opt-level = "s"
# Strip all debugging information from the binary to slightly reduce file size.
strip = "debuginfo"