add hashbrown

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-03-20 13:42:32 -04:00
parent a7da4d6a11
commit fd2299f5f0
3 changed files with 11 additions and 0 deletions

9
Cargo.lock generated
View File

@@ -93,6 +93,12 @@ version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1" checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1"
[[package]]
name = "allocator-api2"
version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
[[package]] [[package]]
name = "android-activity" name = "android-activity"
version = "0.6.0" version = "0.6.0"
@@ -1961,6 +1967,8 @@ version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289" checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
dependencies = [ dependencies = [
"allocator-api2",
"equivalent",
"foldhash", "foldhash",
] ]
@@ -2876,6 +2884,7 @@ dependencies = [
"egui-winit", "egui-winit",
"ehttp", "ehttp",
"enostr", "enostr",
"hashbrown",
"hex", "hex",
"image", "image",
"jni", "jni",

View File

@@ -66,6 +66,7 @@ jni = "0.21.1"
profiling = "1.0" profiling = "1.0"
lightning-invoice = "0.33.1" lightning-invoice = "0.33.1"
secp256k1 = "0.30.0" secp256k1 = "0.30.0"
hashbrown = "0.15.2"
[profile.small] [profile.small]
inherits = 'release' inherits = 'release'

View File

@@ -38,6 +38,7 @@ tokio = { workspace = true }
bech32 = { workspace = true } bech32 = { workspace = true }
lightning-invoice = { workspace = true } lightning-invoice = { workspace = true }
secp256k1 = { workspace = true } secp256k1 = { workspace = true }
hashbrown = { workspace = true }
[dev-dependencies] [dev-dependencies]
tempfile = { workspace = true } tempfile = { workspace = true }