Skip to content

Commit f6dd7ef

Browse files
committed
Update README and Cargo.toml for 0.9
1 parent 7941095 commit f6dd7ef

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "colcon"
3-
version = "0.8.1"
3+
version = "0.9.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Simple colorspace conversions in Rust."
77
repository = "https://github.com/Beinsezii/colcon"
88
readme = "README.md"
9-
categories = ["graphics", "algorithms"]
10-
keywords = ["color", "conversion", "colorspace", "convert"]
9+
categories = ["graphics", "algorithms", "encoding", "multimedia::images"]
10+
keywords = ["color", "conversion", "color-space", "lab", "ucs"]
1111

1212
publish = true
1313

@@ -22,13 +22,13 @@ criterion = "0.5"
2222

2323
[[example]]
2424
name = "hk_data"
25-
[[examples]]
25+
[[example]]
2626
name = "hk_palette"
27-
[[examples]]
27+
[[example]]
2828
name = "hk_texture"
29-
[[examples]]
29+
[[example]]
3030
name = "spectrum"
31-
[[examples]]
31+
[[example]]
3232
name = "quantiles"
3333

3434
[[bench]]

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
# ColCon 0.8.1
1+
# ColCon 0.9.0
22
Simple colorspace conversions in Rust.
33

44
## Features
55
* Pure Rust, no dependencies.
6-
* Most functions compile to a C lib
76
* sRGB, RGB, CIE XYZ, CIE LAB, Oklab, JzAzBz, HSV
87
+ LCH/Cylindrical versions of all LAB spaces
8+
* Most functions compile to a C lib
9+
* Generic over F32/F64
10+
* FMA3 used where supported
911
* Accurate across a wide variety of tests, referencing [colour-science](https://github.com/colour-science/colour)
1012

1113
## Future
1214
* Look into SIMD when supported by standard library
1315
* More spaces?
14-
* Generic dtypes?
1516

1617
## Known Issues
1718
* `convert_space_sliced` is slower than it could be. Waiting for [slice_as_chunks](https://github.com/rust-lang/rust/issues/74985) to land in stable.

0 commit comments

Comments
 (0)