about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgennyble <gen@nyble.dev>2024-06-10 17:28:58 -0500
committergennyble <gen@nyble.dev>2024-06-10 17:28:58 -0500
commit9b7650d6c089285949892ef12ce2ccd1c74285cb (patch)
treee66d4fe9d6e10a5ffea36b7a8a2d34004575195a
parent36ccf4d4bf57f12dae13543b37453dc6433018e5 (diff)
downloadcolorsquash-9b7650d6c089285949892ef12ce2ccd1c74285cb.tar.gz
colorsquash-9b7650d6c089285949892ef12ce2ccd1c74285cb.zip
Remove simd-kmeans as a default feature 'cause it's broken
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 21a50b0..e29485f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -16,7 +16,7 @@ rand = { version = "0.8.5", optional = true }
 kmeans = { version = "0.2.1", optional = true }
 
 [features]
-default = ["simd-kmeans"]
+#default = ["simd-kmeans"]
 # use the kmeans crate instead of the internal kmeans implementation. the crate
 # is faster and uses SIMD but requries nightly Rust.
 simd-kmeans = ["kmeans"]