fix(ambient_light): 全局颜色中屏幕顺序问题。

This commit is contained in:
2023-04-01 15:39:21 +08:00
parent 85a00cf4f2
commit 56137b52a5
6 changed files with 74 additions and 14 deletions

16
src-tauri/Cargo.lock generated
View File

@ -563,6 +563,12 @@ version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bd4b30a6560bbd9b4620f4de34c3f14f60848e58a9b7216801afcb4c7b31c3c"
[[package]]
name = "either"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
[[package]]
name = "embed_plist"
version = "1.2.2"
@ -1266,6 +1272,15 @@ dependencies = [
"windows-sys 0.45.0",
]
[[package]]
name = "itertools"
version = "0.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "0.4.8"
@ -2758,6 +2773,7 @@ dependencies = [
"display-info",
"env_logger",
"hex",
"itertools",
"log",
"paho-mqtt",
"paris",