From 1ce530faec8d04625722d7586b4eb93093b64a7d Mon Sep 17 00:00:00 2001 From: kernelkind Date: Thu, 20 Mar 2025 19:35:54 -0400 Subject: [PATCH] add human_format dep Signed-off-by: kernelkind --- Cargo.lock | 7 +++++++ crates/notedeck_columns/Cargo.toml | 1 + 2 files changed, 8 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 96562a47..60c4fc92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2044,6 +2044,12 @@ version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" +[[package]] +name = "human_format" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c3b1f728c459d27b12448862017b96ad4767b1ec2ec5e6434e99f1577f085b8" + [[package]] name = "icu_collections" version = "1.5.0" @@ -2916,6 +2922,7 @@ dependencies = [ "ehttp", "enostr", "hex", + "human_format", "image", "indexmap", "nostrdb", diff --git a/crates/notedeck_columns/Cargo.toml b/crates/notedeck_columns/Cargo.toml index 90440685..67d3905f 100644 --- a/crates/notedeck_columns/Cargo.toml +++ b/crates/notedeck_columns/Cargo.toml @@ -50,6 +50,7 @@ sha2 = { workspace = true } base64 = { workspace = true } egui-winit = { workspace = true } profiling = { workspace = true } +human_format = "1.1.0" [target.'cfg(any(target_os = "windows", target_os = "macos", target_os = "linux"))'.dependencies] rfd = "0.15"