summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock118
-rw-r--r--core/Cargo.toml2
2 files changed, 37 insertions, 83 deletions
diff --git a/Cargo.lock b/Cargo.lock
index dc7737b..4ea2620 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -28,9 +28,9 @@ checksum = "2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61"
28 28
29[[package]] 29[[package]]
30name = "approx" 30name = "approx"
31version = "0.3.2" 31version = "0.5.1"
32source = "registry+https://github.com/rust-lang/crates.io-index" 32source = "registry+https://github.com/rust-lang/crates.io-index"
33checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3" 33checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
34dependencies = [ 34dependencies = [
35 "num-traits", 35 "num-traits",
36] 36]
@@ -229,6 +229,15 @@ dependencies = [
229] 229]
230 230
231[[package]] 231[[package]]
232name = "find-crate"
233version = "0.6.3"
234source = "registry+https://github.com/rust-lang/crates.io-index"
235checksum = "59a98bbaacea1c0eb6a0876280051b892eb73594fd90cf3b20e9c817029c57d2"
236dependencies = [
237 "toml",
238]
239
240[[package]]
232name = "futures-channel" 241name = "futures-channel"
233version = "0.3.25" 242version = "0.3.25"
234source = "registry+https://github.com/rust-lang/crates.io-index" 243source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -292,17 +301,6 @@ dependencies = [
292] 301]
293 302
294[[package]] 303[[package]]
295name = "getrandom"
296version = "0.1.16"
297source = "registry+https://github.com/rust-lang/crates.io-index"
298checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
299dependencies = [
300 "cfg-if",
301 "libc",
302 "wasi",
303]
304
305[[package]]
306name = "gio" 304name = "gio"
307version = "0.16.7" 305version = "0.16.7"
308source = "registry+https://github.com/rust-lang/crates.io-index" 306source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -516,23 +514,23 @@ checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
516 514
517[[package]] 515[[package]]
518name = "palette" 516name = "palette"
519version = "0.5.0" 517version = "0.6.1"
520source = "registry+https://github.com/rust-lang/crates.io-index" 518source = "registry+https://github.com/rust-lang/crates.io-index"
521checksum = "a05c0334468e62a4dfbda34b29110aa7d70d58c7fdb2c9857b5874dd9827cc59" 519checksum = "8f9cd68f7112581033f157e56c77ac4a5538ec5836a2e39284e65bd7d7275e49"
522dependencies = [ 520dependencies = [
523 "approx", 521 "approx",
524 "num-traits", 522 "num-traits",
525 "palette_derive", 523 "palette_derive",
526 "phf", 524 "phf",
527 "phf_codegen",
528] 525]
529 526
530[[package]] 527[[package]]
531name = "palette_derive" 528name = "palette_derive"
532version = "0.5.0" 529version = "0.6.1"
533source = "registry+https://github.com/rust-lang/crates.io-index" 530source = "registry+https://github.com/rust-lang/crates.io-index"
534checksum = "0b4b5f600e60dd3a147fb57b4547033d382d1979eb087af310e91cb45a63b1f4" 531checksum = "05eedf46a8e7c27f74af0c9cfcdb004ceca158cb1b918c6f68f8d7a549b3e427"
535dependencies = [ 532dependencies = [
533 "find-crate",
536 "proc-macro2", 534 "proc-macro2",
537 "quote", 535 "quote",
538 "syn", 536 "syn",
@@ -599,38 +597,42 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
599 597
600[[package]] 598[[package]]
601name = "phf" 599name = "phf"
602version = "0.8.0" 600version = "0.11.1"
603source = "registry+https://github.com/rust-lang/crates.io-index" 601source = "registry+https://github.com/rust-lang/crates.io-index"
604checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" 602checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
605dependencies = [ 603dependencies = [
604 "phf_macros",
606 "phf_shared", 605 "phf_shared",
607] 606]
608 607
609[[package]] 608[[package]]
610name = "phf_codegen" 609name = "phf_generator"
611version = "0.8.0" 610version = "0.11.1"
612source = "registry+https://github.com/rust-lang/crates.io-index" 611source = "registry+https://github.com/rust-lang/crates.io-index"
613checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" 612checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
614dependencies = [ 613dependencies = [
615 "phf_generator",
616 "phf_shared", 614 "phf_shared",
615 "rand",
617] 616]
618 617
619[[package]] 618[[package]]
620name = "phf_generator" 619name = "phf_macros"
621version = "0.8.0" 620version = "0.11.1"
622source = "registry+https://github.com/rust-lang/crates.io-index" 621source = "registry+https://github.com/rust-lang/crates.io-index"
623checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" 622checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66"
624dependencies = [ 623dependencies = [
624 "phf_generator",
625 "phf_shared", 625 "phf_shared",
626 "rand", 626 "proc-macro2",
627 "quote",
628 "syn",
627] 629]
628 630
629[[package]] 631[[package]]
630name = "phf_shared" 632name = "phf_shared"
631version = "0.8.0" 633version = "0.11.1"
632source = "registry+https://github.com/rust-lang/crates.io-index" 634source = "registry+https://github.com/rust-lang/crates.io-index"
633checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" 635checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
634dependencies = [ 636dependencies = [
635 "siphasher", 637 "siphasher",
636] 638]
@@ -654,12 +656,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
654checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" 656checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
655 657
656[[package]] 658[[package]]
657name = "ppv-lite86"
658version = "0.2.17"
659source = "registry+https://github.com/rust-lang/crates.io-index"
660checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
661
662[[package]]
663name = "proc-macro-crate" 659name = "proc-macro-crate"
664version = "1.2.1" 660version = "1.2.1"
665source = "registry+https://github.com/rust-lang/crates.io-index" 661source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -714,54 +710,18 @@ dependencies = [
714 710
715[[package]] 711[[package]]
716name = "rand" 712name = "rand"
717version = "0.7.3" 713version = "0.8.5"
718source = "registry+https://github.com/rust-lang/crates.io-index"
719checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
720dependencies = [
721 "getrandom",
722 "libc",
723 "rand_chacha",
724 "rand_core",
725 "rand_hc",
726 "rand_pcg",
727]
728
729[[package]]
730name = "rand_chacha"
731version = "0.2.2"
732source = "registry+https://github.com/rust-lang/crates.io-index" 714source = "registry+https://github.com/rust-lang/crates.io-index"
733checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 715checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
734dependencies = [ 716dependencies = [
735 "ppv-lite86",
736 "rand_core", 717 "rand_core",
737] 718]
738 719
739[[package]] 720[[package]]
740name = "rand_core" 721name = "rand_core"
741version = "0.5.1" 722version = "0.6.4"
742source = "registry+https://github.com/rust-lang/crates.io-index"
743checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
744dependencies = [
745 "getrandom",
746]
747
748[[package]]
749name = "rand_hc"
750version = "0.2.0"
751source = "registry+https://github.com/rust-lang/crates.io-index"
752checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
753dependencies = [
754 "rand_core",
755]
756
757[[package]]
758name = "rand_pcg"
759version = "0.2.1"
760source = "registry+https://github.com/rust-lang/crates.io-index" 723source = "registry+https://github.com/rust-lang/crates.io-index"
761checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" 724checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
762dependencies = [
763 "rand_core",
764]
765 725
766[[package]] 726[[package]]
767name = "regex" 727name = "regex"
@@ -927,12 +887,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
927checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 887checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
928 888
929[[package]] 889[[package]]
930name = "wasi"
931version = "0.9.0+wasi-snapshot-preview1"
932source = "registry+https://github.com/rust-lang/crates.io-index"
933checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
934
935[[package]]
936name = "which" 890name = "which"
937version = "3.1.1" 891version = "3.1.1"
938source = "registry+https://github.com/rust-lang/crates.io-index" 892source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 37fb207..0d419de 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -7,4 +7,4 @@ edition = "2021"
7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8 8
9[dependencies] 9[dependencies]
10palette = "0.5" 10palette = "0.6"