Implement selection of color alignment

This commit is contained in:
Teoh Han Hui 2024-07-15 00:24:24 +08:00
parent 19e3b382b4
commit 66b08f7a2e
No known key found for this signature in database
GPG key ID: D43E2BABAF97DCAE
7 changed files with 372 additions and 115 deletions

17
Cargo.lock generated
View file

@ -97,6 +97,12 @@ dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "either"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
[[package]]
name = "enable-ansi-support"
version = "0.2.1"
@ -168,7 +174,9 @@ dependencies = [
"deranged",
"directories",
"enable-ansi-support",
"fastrand",
"indexmap",
"itertools",
"normpath",
"palette",
"regex",
@ -207,6 +215,15 @@ version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
[[package]]
name = "itertools"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.11"