diff options
author | gennyble <gen@nyble.dev> | 2024-06-10 17:28:58 -0500 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2024-06-10 17:28:58 -0500 |
commit | 9b7650d6c089285949892ef12ce2ccd1c74285cb (patch) | |
tree | e66d4fe9d6e10a5ffea36b7a8a2d34004575195a /Cargo.toml | |
parent | 36ccf4d4bf57f12dae13543b37453dc6433018e5 (diff) | |
download | colorsquash-9b7650d6c089285949892ef12ce2ccd1c74285cb.tar.gz colorsquash-9b7650d6c089285949892ef12ce2ccd1c74285cb.zip |
Remove simd-kmeans as a default feature 'cause it's broken
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 2 |
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"] |