1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 05:40:03 -04:00

Add support for cint (conversions to and from color types) (#393)

* implement cint for color types under feature flag

* upgrade to cint 0.2, remove from default features

* upgrade to cint 0.2.1, add a couple more from/into implementations

* changelog entry

* fix typo in changelog

* sort dependency

* fmt
This commit is contained in:
Gray Olson
2021-05-20 11:09:52 -07:00
committed by GitHub
parent ac82cc7be3
commit c0929014bf
5 changed files with 189 additions and 0 deletions

7
Cargo.lock generated
View File

@@ -294,6 +294,12 @@ version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e"
[[package]]
name = "cint"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00709959bb62458ca8d7f043b1039e0d99e91f5500f004164ec371f546eadc47"
[[package]]
name = "clang-sys"
version = "1.2.0"
@@ -846,6 +852,7 @@ version = "0.12.0"
dependencies = [
"ahash",
"atomic_refcell",
"cint",
"emath",
"ordered-float",
"parking_lot",