From 3e3561090343e18474021ed45c767d34a1309ea1 Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Wed, 1 Feb 2023 10:30:15 +0200 Subject: [PATCH] chore(sdbclient): bump belly dep --- Cargo.lock | 21 +++++++++++---------- sdbclient/Cargo.toml | 5 ++++- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cee18b3..64721e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -228,7 +228,7 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "belly" version = "0.1.0" -source = "git+https://github.com/jkb0o/belly?rev=73086dd#73086dd3e8a0fb0441d96dacb0931968188e4155" +source = "git+https://github.com/jkb0o/belly?rev=bf05d3b#bf05d3b36136ac370ed099b3100d724b563a6c9a" dependencies = [ "belly_core", "belly_macro", @@ -241,7 +241,7 @@ dependencies = [ [[package]] name = "belly_core" version = "0.1.0" -source = "git+https://github.com/jkb0o/belly?rev=73086dd#73086dd3e8a0fb0441d96dacb0931968188e4155" +source = "git+https://github.com/jkb0o/belly?rev=bf05d3b#bf05d3b36136ac370ed099b3100d724b563a6c9a" dependencies = [ "bevy", "bevy_stylebox", @@ -256,7 +256,7 @@ dependencies = [ [[package]] name = "belly_macro" version = "0.1.0" -source = "git+https://github.com/jkb0o/belly?rev=73086dd#73086dd3e8a0fb0441d96dacb0931968188e4155" +source = "git+https://github.com/jkb0o/belly?rev=bf05d3b#bf05d3b36136ac370ed099b3100d724b563a6c9a" dependencies = [ "belly_core", "bevy", @@ -271,7 +271,7 @@ dependencies = [ [[package]] name = "belly_widgets" version = "0.1.0" -source = "git+https://github.com/jkb0o/belly?rev=73086dd#73086dd3e8a0fb0441d96dacb0931968188e4155" +source = "git+https://github.com/jkb0o/belly?rev=bf05d3b#bf05d3b36136ac370ed099b3100d724b563a6c9a" dependencies = [ "ab_glyph", "belly_core", @@ -887,7 +887,7 @@ dependencies = [ [[package]] name = "bevy_stylebox" version = "0.1.0" -source = "git+https://github.com/jkb0o/belly?rev=73086dd#73086dd3e8a0fb0441d96dacb0931968188e4155" +source = "git+https://github.com/jkb0o/belly?rev=bf05d3b#bf05d3b36136ac370ed099b3100d724b563a6c9a" dependencies = [ "bevy", ] @@ -3331,9 +3331,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro2" -version = "1.0.47" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" +checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2" dependencies = [ "unicode-ident", ] @@ -3643,6 +3643,7 @@ dependencies = [ "directories", "futures-lite", "iyes_loopless", + "proc-macro2", "reqwest", "serde", "serde_json", @@ -3888,9 +3889,9 @@ checksum = "8fb1df15f412ee2e9dfc1c504260fa695c1c3f10fe9f4a6ee2d2184d7d6450e2" [[package]] name = "syn" -version = "1.0.104" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ae548ec36cf198c0ef7710d3c230987c2d6d7bd98ad6edc0274462724c585ce" +checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" dependencies = [ "proc-macro2", "quote", @@ -3924,7 +3925,7 @@ dependencies = [ [[package]] name = "tagstr" version = "0.1.0" -source = "git+https://github.com/jkb0o/belly?rev=73086dd#73086dd3e8a0fb0441d96dacb0931968188e4155" +source = "git+https://github.com/jkb0o/belly?rev=bf05d3b#bf05d3b36136ac370ed099b3100d724b563a6c9a" dependencies = [ "hashbrown 0.13.2", "lazy_static", diff --git a/sdbclient/Cargo.toml b/sdbclient/Cargo.toml index cd89959..7d1b6ba 100644 --- a/sdbclient/Cargo.toml +++ b/sdbclient/Cargo.toml @@ -15,6 +15,9 @@ license = "GPL-3.0-only" # and for some reason cargo can't figure this out, so we're forcing it for now. toml = "0.5.11" +# more dep shit +proc-macro2 = "1.0.50" + bevy = { version = "0.9.1" } bevy-inspector-egui = "0.17.0" @@ -31,7 +34,7 @@ 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" } +belly = { git = "https://github.com/jkb0o/belly", rev = "bf05d3b" } # http requests reqwest = { version = "0.11.13", features = ["blocking", "json"] } -- 2.44.1