@@ 11,6 11,10 @@ license = "GPL-3.0-only"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
+# one dep needs ^0.5.9, and another one needs ^0.5.10
+# and for some reason cargo can't figure this out, so we're forcing it for now.
+toml = "0.5.11"
+
bevy = { version = "0.9.1" }
bevy-inspector-egui = "0.17.0"
@@ 21,6 25,14 @@ bevy_console = { git = "https://github.com/QuendirSkye/bevy-console", branch = "
# lua scripting
bevy_mod_scripting = { version = "0.2.1", features = ["lua", "lua54", "lua_script_api"] }
+# better stage management
+# NOTE: most likely not needed when bevy 0.10.0 comes around
+iyes_loopless = "0.9.1"
+
+# better ui
+# NOTE: locked into a commit, since they don't have a crates.io release yet
+belly = { git = "https://github.com/jkb0o/belly", rev = "73086dd" }
+
# http requests
reqwest = { version = "0.11.13", features = ["blocking", "json"] }