commit fd2299f5f0b1917097f99364dca4371ef771fc51
parent a7da4d6a11915f3cb788027b81f4ed495bd39596
Author: kernelkind <kernelkind@gmail.com>
Date: Thu, 20 Mar 2025 13:42:32 -0400
add hashbrown
Signed-off-by: kernelkind <kernelkind@gmail.com>
Diffstat:
3 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
@@ -94,6 +94,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1"
[[package]]
+name = "allocator-api2"
+version = "0.2.21"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
+
+[[package]]
name = "android-activity"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1961,6 +1967,8 @@ version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
dependencies = [
+ "allocator-api2",
+ "equivalent",
"foldhash",
]
@@ -2876,6 +2884,7 @@ dependencies = [
"egui-winit",
"ehttp",
"enostr",
+ "hashbrown",
"hex",
"image",
"jni",
diff --git a/Cargo.toml b/Cargo.toml
@@ -66,6 +66,7 @@ jni = "0.21.1"
profiling = "1.0"
lightning-invoice = "0.33.1"
secp256k1 = "0.30.0"
+hashbrown = "0.15.2"
[profile.small]
inherits = 'release'
diff --git a/crates/notedeck/Cargo.toml b/crates/notedeck/Cargo.toml
@@ -38,6 +38,7 @@ tokio = { workspace = true }
bech32 = { workspace = true }
lightning-invoice = { workspace = true }
secp256k1 = { workspace = true }
+hashbrown = { workspace = true }
[dev-dependencies]
tempfile = { workspace = true }