-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (67 loc) · 2.01 KB
/
Cargo.toml
File metadata and controls
74 lines (67 loc) · 2.01 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
[package]
name = "hex-game"
version = "0.1.0"
edition = "2021"
license = "propietary"
[dependencies]
bevy = { version = "0.14.1", default-features = true, features = [
"bevy_render",
"bevy_core_pipeline",
"bevy_winit",
"bevy_asset",
"bevy_sprite",
"bevy_pbr",
"embedded_watcher",
] }
rand = "0.8.5"
# winit = "0.29.10"
# image = "0.24"
bevy-inspector-egui = "0.23.0"
log = { version = "0.4.2", features = ["max_level_debug", "release_max_level_warn"] }
# bevy_rapier2d = "0.25.0"
lazy_static = "1.5.0"
hexx ="0.18.0"#{ git = "https://github.com/ManevilleF/hexx" } }
bevy_magic_light_2d = { git = "https://github.com/zaycev/bevy-magic-light-2d.git", branch = "issue/64" } # "0.8.0" # { git = "https://github.com/zaycev/bevy-magic-light-2d.git" }
libnoise = "1.1.2"
enum-map = "2.7.3"
bevy_egui = "0.30.0"
ashscript-types = { git = "https://github.com/Ashscript-Game/ashscript-types", branch = "main" }
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
bevy_mqtt = { version = "0.4.2", features = ["websocket"] }
rumqttc = "0.24.0"
rust_socketio = "0.6.0"
postcard = "1.0.10"
bevy_eventwork = "0.9.0"
bevy_eventwork_mod_websockets = "0.2.0"
url = "2.5.2"
uuid = { version = "1.11.0", features=["serde"] }
ewebsock = "0.7.0"
hecs = "0.10.5"
bevy_hanabi = "0.13.0"
[features]
# cargo run --features dev
dev = ["bevy/dynamic_linking", "bevy/file_watcher", "bevy/asset_processor"]
[profile.dev]
debug = 0
strip = "debuginfo"
opt-level = 1 # Switch to 1 for more runtime performance
# overflow-checks = false # Uncomment for better math performance
[profile.dev.package."*"]
opt-level = 3
[profile.release]
opt-level = 3
panic = 'abort'
debug = 0
strip = "debuginfo"
# lto = "thin" # Enable for more inlining with a bigger tradeoff in compile times
# Ship this to players
# build command
# cargo build --profile distribution -F tracing/release_max_level_error -F log/release_max_level_off
[profile.distribution]
inherits = "release"
strip = true
lto = "thin"
codegen-units = 1
[workspace]
resolver = "2"