-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
129 lines (116 loc) · 2.87 KB
/
Copy pathCargo.toml
File metadata and controls
129 lines (116 loc) · 2.87 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[package]
name = "stellarion"
version = "0.1.0"
edition = "2021"
authors = ["Mavs"]
description = "A deterministic multiplayer space strategy game for native and WebAssembly"
[[bin]]
name = "build-assets"
path = "scripts/build-assets.rs"
required-features = ["asset-pipeline"]
[[bin]]
name = "sql-fixtures"
path = "tests/sql/fixtures.rs"
required-features = ["sql-verification"]
[features]
default = ["app"]
app = []
asset-pipeline = []
sql-verification = []
[dependencies]
base64 = "0.23.1"
bevy = { version = "0.19.1", default-features = false, features = [
"bevy_asset",
"bevy_color",
"bevy_core_pipeline",
"bevy_picking",
"bevy_render",
"bevy_sprite",
"bevy_state",
"bevy_text",
"bevy_ui",
"bevy_ui_render",
"bevy_window",
"bevy_winit",
"custom_cursor",
"default_font",
"serialize",
"sprite_picking",
"ui_picking",
"webgl2",
]}
basisu = "0.1.0"
bevy_egui = { version = "0.42.0", default-features = false, features = [
"bevy_ui",
"default_fonts",
"manage_clipboard",
"picking",
"render",
] }
bevy_kira_audio = "0.26.0"
bevy_tweening = "0.16.0"
chrono = "0.4.45"
ewebsock = { version = "0.8.0", features = ["tls"] }
futures-lite = "2.6.1"
getrandom = "0.4.3"
hex = "0.4.3"
itertools = "0.15.0"
rand = "0.10.2"
rand_chacha = { version = "0.10.0", features = ["serde"] }
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
sha2 = "0.11.0"
strum = "0.28.0"
strum_macros = "0.28.0"
subtle = "2.6.1"
thiserror = "2.0.20"
voronator = "0.2.1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
bevy = { version = "0.19.1", default-features = false, features = [
"multi_threaded",
"x11",
] }
directories = "6.0.0"
fs2 = "0.4.3"
reqwest = { version = "0.13.4", default-features = false, features = [
"json",
"rustls",
] }
tokio = { version = "1.53.1", default-features = false, features = [
"net",
"rt-multi-thread",
"time",
] }
[target.'cfg(target_os = "windows")'.dependencies]
image = { version = "0.25.10", default-features = false, features = ["png"] }
winit = "0.30.13"
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.4.3", features = ["wasm_js"] }
js-sys = "0.3.104"
reqwest = { version = "0.13.4", default-features = false, features = ["json"] }
wasm-bindgen = "0.2.127"
wasm-bindgen-futures = "0.4.77"
web-sys = { version = "0.3.104", features = [
"Location",
"Storage",
"Window",
] }
[dev-dependencies]
proptest = "1.11.0"
# 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
[profile.release]
lto = "thin"
codegen-units = 1
strip = true
[profile.wasm-release]
inherits = "release"
opt-level = "z"
lto = "fat"
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"