From d227eb65517da931137db8ac16de213c0012b781 Mon Sep 17 00:00:00 2001 From: kernelkind Date: Sat, 8 Mar 2025 20:25:11 -0500 Subject: [PATCH] add blurhash dependency Signed-off-by: kernelkind --- Cargo.lock | 7 +++++++ crates/notedeck_ui/Cargo.toml | 2 ++ 2 files changed, 9 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 0141ab9a..d51dd7da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -770,6 +770,12 @@ dependencies = [ "piper", ] +[[package]] +name = "blurhash" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e79769241dcd44edf79a732545e8b5cec84c247ac060f5252cd51885d093a8fc" + [[package]] name = "built" version = "0.7.7" @@ -3291,6 +3297,7 @@ name = "notedeck_ui" version = "0.4.0" dependencies = [ "bitflags 2.9.0", + "blurhash", "egui", "egui_extras", "ehttp", diff --git a/crates/notedeck_ui/Cargo.toml b/crates/notedeck_ui/Cargo.toml index 62831506..f23bffc5 100644 --- a/crates/notedeck_ui/Cargo.toml +++ b/crates/notedeck_ui/Cargo.toml @@ -17,3 +17,5 @@ image = { workspace = true } bitflags = { workspace = true } enostr = { workspace = true } hashbrown = { workspace = true } + +blurhash = "0.2.3" \ No newline at end of file