Merge pull request #109 from alexwlchan/dependabot/cargo/kmeans_colors-0.7.1
- ID
e8517ef- date
2025-09-16 06:12:03+00:00- author
Alex Chan <alex@alexwlchan.net>- parents
94292f6,757786d- message
Merge pull request #109 from alexwlchan/dependabot/cargo/kmeans_colors-0.7.1 Bump kmeans_colors from 0.7.0 to 0.7.1- changed files
2 files, 16 additions, 16 deletions
Changed files
Cargo.lock (21096) → Cargo.lock (21101)
diff --git a/Cargo.lock b/Cargo.lock
index bebc318..adbbfa2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -127,12 +127,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da"
[[package]]
-name = "byteorder"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
-
-[[package]]
name = "byteorder-lite"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -291,13 +285,10 @@ dependencies = [
]
[[package]]
-name = "fxhash"
-version = "0.2.1"
+name = "foldhash"
+version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
-dependencies = [
- "byteorder",
-]
+checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
[[package]]
name = "getrandom"
@@ -332,6 +323,15 @@ dependencies = [
]
[[package]]
+name = "hashbrown"
+version = "0.16.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
+dependencies = [
+ "foldhash",
+]
+
+[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -374,11 +374,11 @@ checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
[[package]]
name = "kmeans_colors"
-version = "0.7.0"
+version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "43cad637ef7f2e901ec79f6e42130497b70c27f07bcf8e92418d56a602a55502"
+checksum = "6ab0b26b79762bb6d8e5fa9501748ef718adf936060b65ca8c2b8e3e09e2e82a"
dependencies = [
- "fxhash",
+ "hashbrown",
"num-traits",
"palette",
"rand",
Cargo.toml (500) → Cargo.toml (500)
diff --git a/Cargo.toml b/Cargo.toml
index c3c4dec..ef9cfe2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,7 +10,7 @@ image-webp = "0.2.4"
predicates = "3"
[dependencies.kmeans_colors]
-version = "0.7.0"
+version = "0.7.1"
features = ["palette_color"]
default-features = false