@@ -115,101 +115,104 @@ ferrumc-world-gen = { path = "src/lib/world_gen" }
115115ferrumc-inventories = { path = " src/lib/inventories" }
116116
117117# Asynchronous
118- tokio = { version = " 1.47.1 " , features = [" macros" , " net" , " rt" , " sync" , " time" , " io-util" , " test-util" ], default-features = false }
118+ tokio = { version = " 1.48.0 " , features = [" macros" , " net" , " rt" , " sync" , " time" , " io-util" , " test-util" ], default-features = false }
119119
120120# Logging
121121tracing = " 0.1.41"
122- tracing-subscriber = { version = " 0.3.19 " , features = [" env-filter" ] }
122+ tracing-subscriber = { version = " 0.3.20 " , features = [" env-filter" ] }
123123tracing-appender = " 0.2.3"
124- log = " 0.4.27"
125- console-subscriber = " 0.4.1"
124+ log = " 0.4.28"
126125
127126# Concurrency/Parallelism
128- parking_lot = " 0.12.4 "
127+ parking_lot = " 0.12.5 "
129128rayon = " 1.11.0"
130129crossbeam-channel = " 0.5.15"
131130rusty_pool = " 0.7.0"
132131crossbeam-queue = " 0.3.12"
133132
134133# Network
135- reqwest = { version = " 0.12.22" , features = [" json" ] }
136- ureq = " 3.1.0"
134+ ureq = " 3.1.2"
137135
138136# Error handling
139- thiserror = " 2.0.15 "
137+ thiserror = " 2.0.17 "
140138
141139# Cryptography
142- rand = " 0.9.2 "
140+ rand = " 0.10.0-rc.0 "
143141fnv = " 1.0.7"
144142wyhash = " 0.6.0"
145143ahash = " 0.8.12"
146144
147145# Encoding/Serialization
148- serde = { version = " 1.0.219 " , features = [" derive" ] }
149- serde_json = " 1.0.142 "
150- serde_derive = " 1.0.219 "
151- serde_yaml_ng = " 0.9.36 "
146+ serde = { version = " 1.0.228 " , features = [" derive" ] }
147+ serde_json = " 1.0.145 "
148+ serde_derive = " 1.0.228 "
149+ serde_yaml_ng = " 0.10.0 "
152150base64 = " 0.22.1"
153- bitcode = " 0.6.7"
154- bitcode_derive = " 0.6.7"
155- toml = " 0.9.5"
151+
152+ # When if bitcode's latest version has been changed, see if clippy still complains about
153+ # src/lib/net/src/packets/outgoing/chunk_and_light_data.rs
154+ # bitcode = "0.6.7"
155+ # bitcode_derive = "0.6.7"
156+ toml = " 0.9.8"
156157craftflow-nbt = " 2.1.0"
157158figment = { version = " 0.10.19" , features = [" toml" , " env" ] }
158- simd-json = " 0.15.1 "
159+ simd-json = " 0.17.0 "
159160
160161# Bit manipulation
161162byteorder = " 1.5.0"
162163
163164# Data types
164165dashmap = " 7.0.0-rc2"
165- uuid = { version = " 1.18.0 " , features = [" v4" , " v3" , " serde" ] }
166- indexmap = { version = " 2.10 .0" , features = [" serde" ] }
166+ uuid = { version = " 1.18.1 " , features = [" v4" , " v3" , " serde" ] }
167+ indexmap = { version = " 2.12 .0" , features = [" serde" ] }
167168
168169# Macros
169170lazy_static = " 1.5.0"
170- quote = " 1.0.40 "
171+ quote = " 1.0.41 "
171172syn = " 2.0.106"
172173proc-macro2 = " 1.0.101"
173- proc-macro-crate = " 3.3 .0"
174+ proc-macro-crate = " 3.4 .0"
174175paste = " 1.0.15"
175176maplit = " 1.0.2"
176177macro_rules_attribute = " 0.2.2"
177178
178179# Magic
179180dhat = " 0.3.3"
180- ctor = " 0.4.2 "
181+ ctor = " 0.6.0 "
181182
182183# Compression/Decompression
183- flate2 = { version = " 1.1.2 " , features = [" zlib" ], default-features = false }
184+ flate2 = { version = " 1.1.4 " , features = [" zlib" ], default-features = false }
184185lzzzz = " 2.0.0"
185186yazi = " 0.2.1"
186- bzip2 = " 0.6.0"
187- lz4_flex = " 0.11.5"
188187
189188# Database
190189heed = " 0.22.0"
191- moka = " 0.12.10 "
190+ moka = " 0.12.11 "
192191
193192# CLI
194- clap = " 4.5.45 "
193+ clap = " 4.5.49 "
195194indicatif = " 0.18.0"
196195colored = " 3.0.0"
197196
198197# Misc
199198deepsize = " 0.2.0"
200199page_size = " 0.6.0"
201200enum-ordinalize = " 4.3.0"
202- regex = " 1.11.1 "
201+ regex = " 1.12.2 "
203202noise = " 0.9.0"
204- ctrlc = " 3.4.7 "
203+ ctrlc = " 3.5.0 "
205204num_cpus = " 1.17.0"
206205typename = " 0.1.2"
207206bevy_ecs = { version = " 0.16.1" , features = [" multi_threaded" , " trace" ] }
208207once_cell = " 1.21.3"
209208
210209# I/O
211- memmap2 = " 0.9.7 "
212- tempfile = " 3.20 .0"
210+ memmap2 = " 0.9.8 "
211+ tempfile = " 3.23 .0"
213212
214213# Benchmarking
215214criterion = { version = " 0.7.0" , features = [" html_reports" ] }
215+
216+
217+ bitcode = { git = " https://github.com/SoftbearStudios/bitcode" }
218+ bitcode_derive = { git = " https://github.com/SoftbearStudios/bitcode" }
0 commit comments