Game stats that reset every frame, inspired by immediate mode GUI.
gamedev bevy stats
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update to 0.17 for real.

+14 -11
+9 -6
Cargo.lock
··· 154 154 155 155 [[package]] 156 156 name = "bevy_auto_plugin" 157 - version = "0.5.0" 158 - source = "git+https://github.com/StrikeForceZero/bevy_auto_plugin?rev=refs%2Fpull%2F22%2Fhead#9881bcbc54547064f6cdeb8efb1706ecbce423d3" 157 + version = "0.6.0" 158 + source = "registry+https://github.com/rust-lang/crates.io-index" 159 + checksum = "e60464caa30a2bbe7d27b3b75adee2e8de1f019366093335ba56b5f14ce82363" 159 160 dependencies = [ 160 161 "bevy_auto_plugin_proc_macros", 161 162 "bevy_auto_plugin_shared", ··· 165 166 166 167 [[package]] 167 168 name = "bevy_auto_plugin_proc_macros" 168 - version = "0.5.0" 169 - source = "git+https://github.com/StrikeForceZero/bevy_auto_plugin?rev=refs%2Fpull%2F22%2Fhead#9881bcbc54547064f6cdeb8efb1706ecbce423d3" 169 + version = "0.6.0" 170 + source = "registry+https://github.com/rust-lang/crates.io-index" 171 + checksum = "a599d829f3b16ba69f909ab86141271c1ec5a5511508245289cb3774df389074" 170 172 dependencies = [ 171 173 "bevy_auto_plugin_shared", 172 174 "darling", ··· 177 179 178 180 [[package]] 179 181 name = "bevy_auto_plugin_shared" 180 - version = "0.5.0" 181 - source = "git+https://github.com/StrikeForceZero/bevy_auto_plugin?rev=refs%2Fpull%2F22%2Fhead#9881bcbc54547064f6cdeb8efb1706ecbce423d3" 182 + version = "0.6.0" 183 + source = "registry+https://github.com/rust-lang/crates.io-index" 184 + checksum = "6639f97a7e63a7a424c8a5dba32de72000934e9b03333b13c4bb9c1e95cee43a" 182 185 dependencies = [ 183 186 "bevy_app", 184 187 "bevy_ecs",
+3 -3
immediate_stats/Cargo.toml
··· 1 1 [package] 2 2 name = "immediate_stats" 3 - version = "0.3.0-rc.1" 3 + version = "0.3.0" 4 4 edition = "2024" 5 5 description = "Game stats that reset every frame, inspired by immediate mode GUI." 6 6 categories = ["game-development", "data-structures"] ··· 30 30 bevy_app = { version = "0.17", default-features = false, optional = true, features = [ 31 31 "bevy_reflect", 32 32 ] } 33 - bevy_auto_plugin = { git = "https://github.com/StrikeForceZero/bevy_auto_plugin", rev = "refs/pull/22/head", optional = true } 33 + bevy_auto_plugin = { version = "0.6", optional = true } 34 34 bevy_ecs = { version = "0.17", default-features = false, optional = true, features = [ 35 35 "bevy_reflect", 36 36 ] } 37 37 bevy_reflect = { version = "0.17", default-features = false, optional = true } 38 - immediate_stats_macros = { path = "../immediate_stats_macros", version = "0.3.0-rc.1", default-features = false } 38 + immediate_stats_macros = { path = "../immediate_stats_macros", version = "0.3", default-features = false } 39 39 40 40 [dev-dependencies] 41 41 bevy = { version = "0.17", default-features = false }
+2 -2
immediate_stats_macros/Cargo.toml
··· 1 1 [package] 2 2 name = "immediate_stats_macros" 3 - version = "0.3.0-rc.1" 3 + version = "0.3.0" 4 4 edition = "2024" 5 5 description = "Game stats that reset every frame, inspired by immediate mode GUI." 6 6 categories = ["game-development", "data-structures"] ··· 21 21 bevy_auto_plugin = ["bevy"] 22 22 23 23 [dependencies] 24 - darling = "0.21.3" 24 + darling = "0.21" 25 25 proc-macro2 = "1.0" 26 26 proc-macro-error = "1.0" 27 27 quote = "1.0"