From e15f9bd1b3f734bfbdb7cfb6cf245953b8ff2a47 Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Fri, 27 Jan 2023 11:26:42 +0200 Subject: [PATCH] chore(sdbclient): iyes_loopless and belly deps --- sdbclient/Cargo.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sdbclient/Cargo.toml b/sdbclient/Cargo.toml index 1e9c463..d975fbe 100644 --- a/sdbclient/Cargo.toml +++ b/sdbclient/Cargo.toml @@ -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"] } -- 2.44.1