From 08e38403798619c51ea31d2cd726fd133256be97 Mon Sep 17 00:00:00 2001 From: Dzmitry Malyshau Date: Tue, 28 May 2024 11:41:46 -0700 Subject: [PATCH] Update blade to pick up the descriptor initialization changes (#12340) Release Notes: - N/A Picks up https://github.com/kvark/blade/pull/118 Fixes #10351 Seeing that Zed loaded with Blade repository is consuming 260Mb of RAM. We can tune this to be lower, but ultimately it doesn't matter: this memory isn't wasted, it's just pools for memory and descriptors, which may be used by bigger and more complex views of Zed. --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 436a8795d0..5a142535f9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1509,7 +1509,7 @@ dependencies = [ [[package]] name = "blade-graphics" version = "0.4.0" -source = "git+https://github.com/kvark/blade?rev=e35b2d41f221a48b75f7cf2e78a81e7ecb7a383c#e35b2d41f221a48b75f7cf2e78a81e7ecb7a383c" +source = "git+https://github.com/kvark/blade?rev=9c9cabf69e869fc7d9aef2fc76f7d5c354d5710a#9c9cabf69e869fc7d9aef2fc76f7d5c354d5710a" dependencies = [ "ash", "ash-window", @@ -1539,7 +1539,7 @@ dependencies = [ [[package]] name = "blade-macros" version = "0.2.1" -source = "git+https://github.com/kvark/blade?rev=e35b2d41f221a48b75f7cf2e78a81e7ecb7a383c#e35b2d41f221a48b75f7cf2e78a81e7ecb7a383c" +source = "git+https://github.com/kvark/blade?rev=9c9cabf69e869fc7d9aef2fc76f7d5c354d5710a#9c9cabf69e869fc7d9aef2fc76f7d5c354d5710a" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 67bbcc5dd3..549665f54d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -262,8 +262,8 @@ async-tar = "0.4.2" async-trait = "0.1" async_zip = { version = "0.0.17", features = ["deflate", "deflate64"] } bitflags = "2.4.2" -blade-graphics = { git = "https://github.com/kvark/blade", rev = "e35b2d41f221a48b75f7cf2e78a81e7ecb7a383c" } -blade-macros = { git = "https://github.com/kvark/blade", rev = "e35b2d41f221a48b75f7cf2e78a81e7ecb7a383c" } +blade-graphics = { git = "https://github.com/kvark/blade", rev = "9c9cabf69e869fc7d9aef2fc76f7d5c354d5710a" } +blade-macros = { git = "https://github.com/kvark/blade", rev = "9c9cabf69e869fc7d9aef2fc76f7d5c354d5710a" } cap-std = "3.0" cargo_toml = "0.20" chrono = { version = "0.4", features = ["serde"] }