add human_format dep

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-03-20 19:35:54 -04:00
parent ee8c1e41df
commit 1ce530faec
2 changed files with 8 additions and 0 deletions

7
Cargo.lock generated
View File

@@ -2044,6 +2044,12 @@ version = "1.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
[[package]]
name = "human_format"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c3b1f728c459d27b12448862017b96ad4767b1ec2ec5e6434e99f1577f085b8"
[[package]] [[package]]
name = "icu_collections" name = "icu_collections"
version = "1.5.0" version = "1.5.0"
@@ -2916,6 +2922,7 @@ dependencies = [
"ehttp", "ehttp",
"enostr", "enostr",
"hex", "hex",
"human_format",
"image", "image",
"indexmap", "indexmap",
"nostrdb", "nostrdb",

View File

@@ -50,6 +50,7 @@ sha2 = { workspace = true }
base64 = { workspace = true } base64 = { workspace = true }
egui-winit = { workspace = true } egui-winit = { workspace = true }
profiling = { workspace = true } profiling = { workspace = true }
human_format = "1.1.0"
[target.'cfg(any(target_os = "windows", target_os = "macos", target_os = "linux"))'.dependencies] [target.'cfg(any(target_os = "windows", target_os = "macos", target_os = "linux"))'.dependencies]
rfd = "0.15" rfd = "0.15"