commit 1ce530faec8d04625722d7586b4eb93093b64a7d
parent ee8c1e41df0005446c33ef3d2febee15a01e032d
Author: kernelkind <kernelkind@gmail.com>
Date: Thu, 20 Mar 2025 19:35:54 -0400
add human_format dep
Signed-off-by: kernelkind <kernelkind@gmail.com>
Diffstat:
2 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
@@ -2045,6 +2045,12 @@ 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"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -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
@@ -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"