show the oklab color space

This commit is contained in:
nora 2025-12-28 18:27:27 +01:00
parent 47cc8616f0
commit 6a8eabf9f2
3 changed files with 45 additions and 3 deletions

23
Cargo.lock generated
View file

@ -204,6 +204,12 @@ dependencies = [
"once_cell",
]
[[package]]
name = "fast-srgb8"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
[[package]]
name = "find-msvc-tools"
version = "0.1.6"
@ -285,6 +291,16 @@ dependencies = [
"libc",
]
[[package]]
name = "oklab"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1e35ab3c8efa6bc97d651abe7fb051aebb30c925a450ff6722cf9c797a938cc"
dependencies = [
"fast-srgb8",
"rgb",
]
[[package]]
name = "once_cell"
version = "1.21.3"
@ -394,6 +410,12 @@ version = "0.8.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
[[package]]
name = "rgb"
version = "0.8.52"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
[[package]]
name = "rustix"
version = "1.1.3"
@ -542,6 +564,7 @@ dependencies = [
"env_logger",
"eyre",
"log",
"oklab",
"smithay-client-toolkit",
"wayland-client",
]