From 16586006041e06e18f65fbe3ca4fa290cec22239 Mon Sep 17 00:00:00 2001 From: kernelkind Date: Mon, 25 Aug 2025 21:11:28 -0400 Subject: [PATCH] expose indexmap to notedeck Signed-off-by: kernelkind --- Cargo.lock | 1 + crates/notedeck/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 6e32d21c..16980469 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3527,6 +3527,7 @@ dependencies = [ "hashbrown 0.15.4", "hex", "image", + "indexmap 2.9.0", "jni 0.21.1 (registry+https://github.com/rust-lang/crates.io-index)", "lightning-invoice", "md5", diff --git a/crates/notedeck/Cargo.toml b/crates/notedeck/Cargo.toml index ed79826f..40b6dbe3 100644 --- a/crates/notedeck/Cargo.toml +++ b/crates/notedeck/Cargo.toml @@ -50,6 +50,7 @@ md5 = { workspace = true } bitflags = { workspace = true } regex = "1" chrono = { workspace = true } +indexmap = {workspace = true} [dev-dependencies] tempfile = { workspace = true }