lume/src-tauri/Cargo.lock

6514 lines
153 KiB
Plaintext
Raw Normal View History

2023-02-21 07:58:47 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2023-07-09 10:38:54 +00:00
[[package]]
name = "addr2line"
version = "0.21.0"
2023-07-09 10:38:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2023-07-09 10:38:54 +00:00
dependencies = [
"gimli",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2023-07-09 00:55:23 +00:00
[[package]]
name = "aead"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
dependencies = [
"generic-array",
]
[[package]]
name = "aes"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
dependencies = [
"cfg-if",
2023-09-02 05:15:48 +00:00
"cipher",
2023-07-09 00:55:23 +00:00
"cpufeatures",
"opaque-debug",
]
[[package]]
name = "aes-gcm"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6"
dependencies = [
"aead",
2023-09-02 05:15:48 +00:00
"aes",
"cipher",
2023-07-09 00:55:23 +00:00
"ctr",
"ghash",
"subtle",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
2023-06-15 02:28:52 +00:00
"getrandom 0.2.10",
"once_cell",
"version_check",
]
[[package]]
name = "ahash"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
dependencies = [
"cfg-if",
2023-07-09 00:55:23 +00:00
"getrandom 0.2.10",
2023-02-21 07:58:47 +00:00
"once_cell",
"version_check",
]
2023-05-04 15:12:11 +00:00
[[package]]
name = "aho-corasick"
2023-09-28 01:22:38 +00:00
version = "1.1.1"
2023-05-04 15:12:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab"
2023-05-04 15:12:11 +00:00
dependencies = [
"memchr",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "alloc-no-stdlib"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
[[package]]
name = "alloc-stdlib"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
dependencies = [
"alloc-no-stdlib",
]
2023-06-15 02:28:52 +00:00
[[package]]
name = "allocator-api2"
2023-07-17 08:21:56 +00:00
version = "0.2.16"
2023-06-15 02:28:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
2023-06-15 02:28:52 +00:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2023-07-17 08:21:56 +00:00
[[package]]
name = "anstream"
2023-09-29 02:19:40 +00:00
version = "0.6.1"
2023-07-17 08:21:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "f6cd65a4b849ace0b7f6daeebcc1a1d111282227ca745458c61dbf670e52a597"
2023-07-17 08:21:56 +00:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"utf8parse",
]
[[package]]
name = "anstyle"
2023-09-29 02:19:40 +00:00
version = "1.0.4"
2023-07-17 08:21:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
2023-07-17 08:21:56 +00:00
[[package]]
name = "anstyle-parse"
2023-09-29 02:19:40 +00:00
version = "0.2.2"
2023-07-17 08:21:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140"
2023-07-17 08:21:56 +00:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "anstyle-wincon"
2023-09-29 02:19:40 +00:00
version = "3.0.0"
2023-07-17 08:21:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "0238ca56c96dfa37bdf7c373c8886dd591322500aceeeccdb2216fe06dc2f796"
2023-07-17 08:21:56 +00:00
dependencies = [
"anstyle",
"windows-sys 0.48.0",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "anyhow"
2023-08-18 00:37:11 +00:00
version = "1.0.75"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 00:37:11 +00:00
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
2023-02-21 07:58:47 +00:00
2023-07-09 00:55:23 +00:00
[[package]]
name = "arrayref"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
[[package]]
name = "arrayvec"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
2023-04-14 09:15:06 +00:00
[[package]]
name = "async-broadcast"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b"
dependencies = [
2023-09-28 01:22:38 +00:00
"event-listener 2.5.3",
2023-04-14 09:15:06 +00:00
"futures-core",
]
[[package]]
name = "async-channel"
2023-07-09 10:38:54 +00:00
version = "1.9.0"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
2023-04-14 09:15:06 +00:00
dependencies = [
"concurrent-queue",
2023-09-28 01:22:38 +00:00
"event-listener 2.5.3",
2023-04-14 09:15:06 +00:00
"futures-core",
]
[[package]]
name = "async-executor"
2023-09-29 02:19:40 +00:00
version = "1.5.4"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "2c1da3ae8dabd9c00f453a329dfe1fb28da3c0a72e2478cdcd93171740c20499"
2023-04-14 09:15:06 +00:00
dependencies = [
"async-lock",
"async-task",
"concurrent-queue",
2023-09-28 01:22:38 +00:00
"fastrand 2.0.1",
2023-04-14 09:15:06 +00:00
"futures-lite",
"slab",
]
[[package]]
name = "async-fs"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
dependencies = [
"async-lock",
"autocfg",
"blocking",
"futures-lite",
]
[[package]]
name = "async-io"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
dependencies = [
"async-lock",
"autocfg",
"cfg-if",
"concurrent-queue",
"futures-lite",
"log",
"parking",
"polling",
2023-07-09 10:38:54 +00:00
"rustix 0.37.23",
2023-04-14 09:15:06 +00:00
"slab",
"socket2 0.4.9",
2023-04-14 09:15:06 +00:00
"waker-fn",
]
[[package]]
name = "async-lock"
2023-08-12 04:18:10 +00:00
version = "2.8.0"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-12 04:18:10 +00:00
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
2023-04-14 09:15:06 +00:00
dependencies = [
2023-09-28 01:22:38 +00:00
"event-listener 2.5.3",
2023-04-14 09:15:06 +00:00
]
2023-07-09 10:38:54 +00:00
[[package]]
name = "async-process"
2023-09-28 01:22:38 +00:00
version = "1.8.0"
2023-07-09 10:38:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "bf012553ce51eb7aa6dc2143804cc8252bd1cb681a1c5cb7fa94ca88682dee1d"
2023-07-09 10:38:54 +00:00
dependencies = [
"async-io",
"async-lock",
2023-09-28 01:22:38 +00:00
"async-signal",
2023-07-09 10:38:54 +00:00
"blocking",
"cfg-if",
2023-09-28 01:22:38 +00:00
"event-listener 3.0.0",
2023-07-09 10:38:54 +00:00
"futures-lite",
2023-09-28 01:22:38 +00:00
"rustix 0.38.14",
2023-07-09 10:38:54 +00:00
"windows-sys 0.48.0",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "async-recursion"
2023-09-02 01:50:54 +00:00
version = "1.0.5"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 01:50:54 +00:00
checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0"
2023-04-14 09:15:06 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-04-14 09:15:06 +00:00
]
2023-09-28 01:22:38 +00:00
[[package]]
name = "async-signal"
2023-09-29 02:19:40 +00:00
version = "0.2.2"
2023-09-28 01:22:38 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "c99f3cb3f9ff89f7d718fbb942c9eb91bedff12e396adf09a622dfe7ffec2bc2"
2023-09-28 01:22:38 +00:00
dependencies = [
"async-io",
"async-lock",
"atomic-waker",
"cfg-if",
"concurrent-queue",
"futures-core",
"futures-io",
"libc",
"signal-hook-registry",
"slab",
"windows-sys 0.48.0",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "async-task"
2023-09-28 01:22:38 +00:00
version = "4.4.1"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "b9441c6b2fe128a7c2bf680a44c34d0df31ce09e5b7e401fcca3faa483dbc921"
2023-04-14 09:15:06 +00:00
[[package]]
name = "async-trait"
2023-08-12 04:18:10 +00:00
version = "0.1.73"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-12 04:18:10 +00:00
checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "atk"
2023-09-02 05:15:48 +00:00
version = "0.15.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "2c3d816ce6f0e2909a96830d6911c2aff044370b1ef92d7f267b43bae5addedd"
2023-02-21 07:58:47 +00:00
dependencies = [
"atk-sys",
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"glib",
"libc",
]
[[package]]
name = "atk-sys"
2023-09-02 05:15:48 +00:00
version = "0.15.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "58aeb089fb698e06db8089971c7ee317ab9644bade33383f63631437b03aafb6"
2023-02-21 07:58:47 +00:00
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
2023-09-02 05:15:48 +00:00
"system-deps 6.1.1",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "atoi"
2023-07-09 00:55:23 +00:00
version = "2.0.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 00:55:23 +00:00
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
2023-02-21 07:58:47 +00:00
dependencies = [
"num-traits",
2023-02-21 07:58:47 +00:00
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "atomic-waker"
2023-09-28 01:22:38 +00:00
version = "1.1.2"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
2023-04-14 09:15:06 +00:00
2023-07-03 04:49:49 +00:00
[[package]]
name = "auto-launch"
2023-09-28 01:22:38 +00:00
version = "0.5.0"
2023-07-03 04:49:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "1f012b8cc0c850f34117ec8252a44418f2e34a2cf501de89e29b241ae5f79471"
2023-07-03 04:49:49 +00:00
dependencies = [
"dirs",
"thiserror",
"winreg 0.10.1",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "backoff"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
dependencies = [
"futures-core",
2023-06-15 02:28:52 +00:00
"getrandom 0.2.10",
"instant",
"pin-project-lite",
"rand 0.8.5",
"tokio",
]
2023-07-09 10:38:54 +00:00
[[package]]
name = "backtrace"
version = "0.3.69"
2023-07-09 10:38:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
2023-07-09 10:38:54 +00:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
[[package]]
name = "base64"
2023-09-10 09:25:35 +00:00
version = "0.21.4"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-10 09:25:35 +00:00
checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2"
2023-02-21 07:58:47 +00:00
2023-07-09 00:55:23 +00:00
[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
"serde",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-07-09 00:55:23 +00:00
[[package]]
name = "bitflags"
2023-08-12 04:18:10 +00:00
version = "2.4.0"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-12 04:18:10 +00:00
checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
2023-07-09 00:55:23 +00:00
dependencies = [
"serde",
]
[[package]]
name = "blake2"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
dependencies = [
"digest 0.10.7",
]
[[package]]
name = "blake2b_simd"
2023-09-20 01:22:02 +00:00
version = "1.0.2"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "23285ad32269793932e830392f2fe2f83e26488fd3ec778883a93c8323735780"
2023-07-09 00:55:23 +00:00
dependencies = [
"arrayref",
"arrayvec",
2023-09-20 01:22:02 +00:00
"constant_time_eq 0.3.0",
2023-07-09 00:55:23 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
2023-07-09 00:55:23 +00:00
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "block-buffer"
2023-04-17 07:22:24 +00:00
version = "0.10.4"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2023-02-21 07:58:47 +00:00
dependencies = [
"generic-array",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "blocking"
2023-09-28 01:22:38 +00:00
version = "1.4.0"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "94c4ef1f913d78636d78d538eec1f18de81e481f44b1be0a81060090530846e1"
2023-04-14 09:15:06 +00:00
dependencies = [
"async-channel",
"async-lock",
"async-task",
2023-09-28 01:22:38 +00:00
"fastrand 2.0.1",
"futures-io",
2023-04-14 09:15:06 +00:00
"futures-lite",
2023-09-28 01:22:38 +00:00
"piper",
"tracing",
2023-04-14 09:15:06 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "brotli"
version = "3.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
version = "2.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b6561fd3f895a11e8f72af2cb7d22e08366bebc2b6b57f7744c4bda27034744"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
2023-09-02 05:15:48 +00:00
[[package]]
name = "bstr"
version = "1.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a"
dependencies = [
"memchr",
"serde",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "bumpalo"
2023-09-20 01:22:02 +00:00
version = "3.14.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
2023-02-21 07:58:47 +00:00
[[package]]
name = "bytemuck"
2023-09-06 00:46:31 +00:00
version = "1.14.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-06 00:46:31 +00:00
checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6"
2023-02-21 07:58:47 +00:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
version = "1.5.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
2023-06-15 02:28:52 +00:00
dependencies = [
"serde",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "cairo-rs"
2023-09-02 05:15:48 +00:00
version = "0.15.12"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "c76ee391b03d35510d9fa917357c7f1855bd9a6659c95a1b392e33f49b3369bc"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"cairo-sys-rs",
"glib",
"libc",
"thiserror",
]
[[package]]
name = "cairo-sys-rs"
2023-09-02 05:15:48 +00:00
version = "0.15.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "3c55d429bef56ac9172d25fecb85dc8068307d17acd74b377866b7a1ef25d3c8"
2023-02-21 07:58:47 +00:00
dependencies = [
"glib-sys",
"libc",
2023-09-02 05:15:48 +00:00
"system-deps 6.1.1",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "camino"
2023-07-17 08:21:56 +00:00
version = "1.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c"
dependencies = [
"serde",
]
[[package]]
name = "cargo-platform"
2023-07-17 08:21:56 +00:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479"
dependencies = [
"serde",
]
[[package]]
name = "cargo_metadata"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
dependencies = [
"camino",
"cargo-platform",
"semver",
"serde",
"serde_json",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "cargo_toml"
2023-06-15 02:28:52 +00:00
version = "0.15.3"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "599aa35200ffff8f04c1925aa1acc92fa2e08874379ef42e210a80e527e60838"
2023-02-21 07:58:47 +00:00
dependencies = [
"serde",
2023-09-10 09:25:35 +00:00
"toml 0.7.8",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "cc"
2023-08-22 02:10:04 +00:00
version = "1.0.83"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 02:10:04 +00:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
2023-08-03 01:56:36 +00:00
dependencies = [
"libc",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "cesu8"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
[[package]]
name = "cfb"
2023-05-04 15:12:11 +00:00
version = "0.7.3"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-04 15:12:11 +00:00
checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
2023-02-21 07:58:47 +00:00
dependencies = [
"byteorder",
2023-05-04 15:12:11 +00:00
"fnv",
"uuid",
2023-02-21 07:58:47 +00:00
]
2023-09-02 05:15:48 +00:00
[[package]]
name = "cfg-expr"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3431df59f28accaf4cb4eed4a9acc66bea3f3c3753aa6cdc2f024174ef232af7"
dependencies = [
"smallvec",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "cfg-expr"
2023-09-10 09:25:35 +00:00
version = "0.15.5"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-10 09:25:35 +00:00
checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3"
2023-02-21 07:58:47 +00:00
dependencies = [
"smallvec",
2023-05-04 15:12:11 +00:00
"target-lexicon",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2023-07-09 00:55:23 +00:00
[[package]]
name = "chacha20"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6"
dependencies = [
"cfg-if",
2023-09-02 05:15:48 +00:00
"cipher",
2023-07-09 00:55:23 +00:00
"cpufeatures",
"zeroize",
]
[[package]]
name = "chacha20poly1305"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5"
dependencies = [
"aead",
"chacha20",
2023-09-02 05:15:48 +00:00
"cipher",
2023-07-09 00:55:23 +00:00
"poly1305",
"zeroize",
]
[[package]]
name = "chrono"
2023-09-20 01:22:02 +00:00
version = "0.4.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
dependencies = [
2023-06-15 02:28:52 +00:00
"android-tzdata",
"iana-time-zone",
"num-traits",
2023-05-04 15:12:11 +00:00
"serde",
2023-09-02 01:50:54 +00:00
"windows-targets 0.48.5",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "cipher"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
dependencies = [
"generic-array",
]
[[package]]
name = "clap"
2023-09-29 02:19:40 +00:00
version = "4.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956"
dependencies = [
2023-07-17 08:21:56 +00:00
"clap_builder",
"clap_derive",
2023-07-17 08:21:56 +00:00
]
[[package]]
name = "clap_builder"
2023-09-29 02:19:40 +00:00
version = "4.4.6"
2023-07-17 08:21:56 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45"
2023-07-17 08:21:56 +00:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
2023-09-02 01:50:54 +00:00
version = "4.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 01:50:54 +00:00
checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873"
dependencies = [
2023-09-02 05:15:48 +00:00
"heck 0.4.1",
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
]
[[package]]
name = "clap_lex"
2023-08-25 02:50:04 +00:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-25 02:50:04 +00:00
checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961"
[[package]]
name = "clipboard-win"
version = "4.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7191c27c2357d9b7ef96baac1773290d4ca63b24205b82a3fd8a0637afcf0362"
dependencies = [
"error-code",
"str-buf",
"winapi",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "cocoa"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f425db7937052c684daec3bd6375c8abe2d146dca4b8b143d6db777c39138f3a"
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"block",
"cocoa-foundation",
"core-foundation",
2023-09-02 05:49:04 +00:00
"core-graphics 0.22.3",
"foreign-types 0.3.2",
"libc",
"objc",
]
[[package]]
name = "cocoa"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6140449f97a6e97f9511815c5632d84c8aacf8ac271ad77c559218161a1373c"
dependencies = [
"bitflags 1.3.2",
"block",
"cocoa-foundation",
"core-foundation",
"core-graphics 0.23.1",
"foreign-types 0.5.0",
2023-02-21 07:58:47 +00:00
"libc",
"objc",
]
[[package]]
name = "cocoa-foundation"
2023-09-28 01:22:38 +00:00
version = "0.1.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "8c6234cbb2e4c785b456c0644748b1ac416dd045799740356f8363dfe00c93f7"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"block",
"core-foundation",
"core-graphics-types",
"libc",
"objc",
]
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
2023-07-17 08:21:56 +00:00
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2023-02-21 07:58:47 +00:00
[[package]]
name = "combine"
version = "4.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
dependencies = [
"bytes",
"memchr",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "concurrent-queue"
2023-09-28 01:22:38 +00:00
version = "2.3.0"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400"
2023-04-14 09:15:06 +00:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "console"
2023-06-15 02:28:52 +00:00
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
dependencies = [
"encode_unicode",
"lazy_static",
"libc",
"unicode-width",
2023-06-15 02:28:52 +00:00
"windows-sys 0.45.0",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "const-oid"
2023-08-09 02:04:16 +00:00
version = "0.9.5"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-09 02:04:16 +00:00
checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f"
2023-07-09 00:55:23 +00:00
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2023-09-02 05:15:48 +00:00
[[package]]
name = "constant_time_eq"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
2023-02-21 07:58:47 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "core-foundation"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2023-04-17 07:22:24 +00:00
version = "0.8.4"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2023-02-21 07:58:47 +00:00
[[package]]
name = "core-graphics"
version = "0.22.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb"
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"core-foundation",
"core-graphics-types",
2023-09-02 05:49:04 +00:00
"foreign-types 0.3.2",
"libc",
]
[[package]]
name = "core-graphics"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "970a29baf4110c26fedbc7f82107d42c23f7e88e404c4577ed73fe99ff85a212"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"core-graphics-types",
"foreign-types 0.5.0",
2023-02-21 07:58:47 +00:00
"libc",
]
[[package]]
name = "core-graphics-types"
2023-07-09 10:38:54 +00:00
version = "0.1.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "2bb142d41022986c1d8ff29103a1411c8a3dfad3552f87a4f8dc50d61d4f4e33"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"core-foundation",
"libc",
]
[[package]]
name = "cpufeatures"
2023-07-09 10:38:54 +00:00
version = "0.2.9"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
2023-02-21 07:58:47 +00:00
dependencies = [
"libc",
]
[[package]]
name = "crc"
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484"
2023-02-21 07:58:47 +00:00
[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
"cfg-if",
]
[[package]]
name = "crossbeam-channel"
2023-04-17 07:22:24 +00:00
version = "0.5.8"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
2023-02-21 07:58:47 +00:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-queue"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2023-06-15 02:28:52 +00:00
version = "0.8.16"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
2023-02-21 07:58:47 +00:00
dependencies = [
"cfg-if",
]
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "cssparser"
version = "0.27.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a"
dependencies = [
"cssparser-macros",
"dtoa-short",
"itoa 0.4.8",
"matches",
"phf 0.8.0",
"proc-macro2",
"quote",
"smallvec",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "cssparser-macros"
2023-06-15 02:28:52 +00:00
version = "0.6.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
2023-02-21 07:58:47 +00:00
dependencies = [
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "ctor"
version = "0.1.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
dependencies = [
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-02-21 07:58:47 +00:00
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "ctr"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea"
dependencies = [
2023-09-02 05:15:48 +00:00
"cipher",
2023-07-09 00:55:23 +00:00
]
2023-09-04 07:35:57 +00:00
[[package]]
name = "curl"
version = "0.4.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22"
dependencies = [
"curl-sys",
"libc",
"openssl-probe",
"openssl-sys",
"schannel",
"socket2 0.4.9",
"winapi",
]
[[package]]
name = "curl-sys"
2023-09-20 01:22:02 +00:00
version = "0.4.66+curl-8.3.0"
2023-09-04 07:35:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "70c44a72e830f0e40ad90dda8a6ab6ed6314d39776599a58a2e5e37fbc6db5b9"
2023-09-04 07:35:57 +00:00
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
2023-09-20 01:22:02 +00:00
"windows-sys 0.48.0",
2023-09-04 07:35:57 +00:00
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "curve25519-dalek"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61"
dependencies = [
"byteorder",
"digest 0.9.0",
"rand_core 0.5.1",
"subtle",
"zeroize",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "darling"
2023-07-17 08:21:56 +00:00
version = "0.20.3"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e"
2023-02-21 07:58:47 +00:00
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
2023-07-17 08:21:56 +00:00
version = "0.20.3"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621"
2023-02-21 07:58:47 +00:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "darling_macro"
2023-07-17 08:21:56 +00:00
version = "0.20.3"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5"
2023-02-21 07:58:47 +00:00
dependencies = [
"darling_core",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "der"
2023-08-09 02:04:16 +00:00
version = "0.7.8"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-09 02:04:16 +00:00
checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
2023-07-09 00:55:23 +00:00
dependencies = [
"const-oid",
"pem-rfc7468",
"zeroize",
]
2023-08-03 01:56:36 +00:00
[[package]]
name = "deranged"
2023-08-20 08:59:07 +00:00
version = "0.3.8"
2023-08-03 01:56:36 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-20 08:59:07 +00:00
checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946"
2023-08-03 01:56:36 +00:00
dependencies = [
"serde",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "derivative"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
dependencies = [
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-04-14 09:15:06 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "derive_more"
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
"convert_case",
2023-02-21 07:58:47 +00:00
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"rustc_version",
"syn 1.0.109",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "digest"
2023-06-15 02:28:52 +00:00
version = "0.10.7"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"block-buffer 0.10.4",
"const-oid",
2023-02-21 07:58:47 +00:00
"crypto-common",
2023-07-09 00:55:23 +00:00
"subtle",
2023-02-21 07:58:47 +00:00
]
2023-07-03 04:49:49 +00:00
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "dirs-next"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
"cfg-if",
"dirs-sys-next",
]
2023-07-03 04:49:49 +00:00
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
dependencies = [
"libc",
"redox_users",
"winapi",
]
[[package]]
name = "dispatch"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
[[package]]
name = "dotenvy"
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
[[package]]
name = "dtoa"
2023-07-17 08:21:56 +00:00
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653"
2023-02-21 07:58:47 +00:00
[[package]]
name = "dtoa-short"
2023-06-15 02:28:52 +00:00
version = "0.3.4"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74"
2023-02-21 07:58:47 +00:00
dependencies = [
"dtoa",
]
[[package]]
name = "dunce"
2023-05-04 15:12:11 +00:00
version = "1.0.4"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-04 15:12:11 +00:00
checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
2023-02-21 07:58:47 +00:00
2023-07-09 00:55:23 +00:00
[[package]]
name = "ed25519-zebra"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c24f403d068ad0b359e577a77f92392118be3f3c927538f2bb544a5ecd828c6"
dependencies = [
"curve25519-dalek",
"hashbrown 0.12.3",
"hex",
"rand_core 0.6.4",
"sha2 0.9.9",
"zeroize",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "either"
2023-07-23 02:16:29 +00:00
version = "1.9.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-23 02:16:29 +00:00
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
dependencies = [
"serde",
]
2023-02-21 07:58:47 +00:00
2023-05-14 14:24:07 +00:00
[[package]]
name = "embed-resource"
2023-08-28 03:39:18 +00:00
version = "2.3.0"
2023-05-14 14:24:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 03:39:18 +00:00
checksum = "fd0a2c9b742a980060d22545a7a83b573acd6b73045b9de6370c9530ce652f27"
2023-05-14 14:24:07 +00:00
dependencies = [
"cc",
"rustc_version",
2023-09-10 09:25:35 +00:00
"toml 0.7.8",
2023-05-14 14:24:07 +00:00
"vswhom",
2023-08-28 03:39:18 +00:00
"winreg 0.51.0",
2023-05-14 14:24:07 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "embed_plist"
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
2023-02-21 07:58:47 +00:00
[[package]]
name = "encoding_rs"
version = "0.8.33"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
2023-02-21 07:58:47 +00:00
dependencies = [
"cfg-if",
]
[[package]]
name = "endian-type"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
[[package]]
name = "enumflags2"
2023-09-20 01:22:02 +00:00
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939"
dependencies = [
"enumflags2_derive",
2023-04-14 09:15:06 +00:00
"serde",
]
[[package]]
name = "enumflags2_derive"
2023-09-20 01:22:02 +00:00
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246"
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "equivalent"
2023-07-17 08:21:56 +00:00
version = "1.0.1"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-07-09 00:55:23 +00:00
2023-04-14 09:15:06 +00:00
[[package]]
name = "errno"
2023-09-02 01:50:54 +00:00
version = "0.3.3"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 01:50:54 +00:00
checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd"
2023-04-14 09:15:06 +00:00
dependencies = [
"errno-dragonfly",
"libc",
"windows-sys 0.48.0",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "error-code"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21"
dependencies = [
"libc",
"str-buf",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "etcetera"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
dependencies = [
"cfg-if",
"home",
"windows-sys 0.48.0",
]
[[package]]
name = "event-listener"
version = "2.5.3"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2023-02-21 07:58:47 +00:00
2023-09-28 01:22:38 +00:00
[[package]]
name = "event-listener"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29e56284f00d94c1bc7fd3c77027b4623c88c1f53d8d2394c6199f2921dea325"
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "fastrand"
2023-04-17 07:22:24 +00:00
version = "1.9.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
2023-02-21 07:58:47 +00:00
dependencies = [
"instant",
]
2023-07-23 02:16:29 +00:00
[[package]]
name = "fastrand"
2023-09-28 01:22:38 +00:00
version = "2.0.1"
2023-07-23 02:16:29 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
2023-07-23 02:16:29 +00:00
[[package]]
name = "fd-lock"
2023-07-09 10:38:54 +00:00
version = "3.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "ef033ed5e9bad94e55838ca0ca906db0e043f517adda0c8b79c7a8c66c93c1b5"
dependencies = [
"cfg-if",
2023-09-28 01:22:38 +00:00
"rustix 0.38.14",
"windows-sys 0.48.0",
]
2023-04-17 07:22:24 +00:00
[[package]]
name = "fdeflate"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d329bdeac514ee06249dabc27877490f17f5d371ec693360768b838e19f3ae10"
dependencies = [
"simd-adler32",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "field-offset"
2023-06-15 02:28:52 +00:00
version = "0.3.6"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-06-15 02:28:52 +00:00
"memoffset 0.9.0",
2023-04-17 07:22:24 +00:00
"rustc_version",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "filetime"
2023-08-06 08:11:58 +00:00
version = "0.2.22"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-06 08:11:58 +00:00
checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
2023-02-21 07:58:47 +00:00
dependencies = [
"cfg-if",
"libc",
2023-08-06 08:11:58 +00:00
"redox_syscall 0.3.5",
2023-04-17 07:22:24 +00:00
"windows-sys 0.48.0",
2023-02-21 07:58:47 +00:00
]
2023-09-05 01:50:13 +00:00
[[package]]
name = "finl_unicode"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6"
2023-02-21 07:58:47 +00:00
[[package]]
name = "flate2"
2023-08-15 14:13:58 +00:00
version = "1.0.27"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-15 14:13:58 +00:00
checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010"
2023-02-21 07:58:47 +00:00
dependencies = [
"crc32fast",
2023-05-04 15:12:11 +00:00
"miniz_oxide",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "flume"
2023-09-29 02:19:40 +00:00
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
dependencies = [
"futures-core",
"futures-sink",
"spin 0.9.8",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
2023-09-02 05:49:04 +00:00
"foreign-types-shared 0.1.1",
]
[[package]]
name = "foreign-types"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
dependencies = [
"foreign-types-macros",
"foreign-types-shared 0.3.1",
]
[[package]]
name = "foreign-types-macros"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2023-09-02 05:49:04 +00:00
[[package]]
name = "foreign-types-shared"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
2023-02-21 07:58:47 +00:00
[[package]]
name = "form_urlencoded"
2023-06-15 02:28:52 +00:00
version = "1.2.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
2023-02-21 07:58:47 +00:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "futf"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
dependencies = [
"mac",
"new_debug_unreachable",
]
[[package]]
name = "futures"
2023-04-17 07:22:24 +00:00
version = "0.3.28"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
2023-02-21 07:58:47 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2023-04-17 07:22:24 +00:00
version = "0.3.28"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2023-02-21 07:58:47 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2023-04-17 07:22:24 +00:00
version = "0.3.28"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2023-02-21 07:58:47 +00:00
[[package]]
name = "futures-executor"
2023-04-17 07:22:24 +00:00
version = "0.3.28"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2023-02-21 07:58:47 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-intrusive"
2023-07-09 00:55:23 +00:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 00:55:23 +00:00
checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
dependencies = [
"futures-core",
"lock_api",
2023-07-09 00:55:23 +00:00
"parking_lot",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "futures-io"
2023-04-17 07:22:24 +00:00
version = "0.3.28"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2023-02-21 07:58:47 +00:00
2023-04-14 09:15:06 +00:00
[[package]]
name = "futures-lite"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
dependencies = [
2023-07-23 02:16:29 +00:00
"fastrand 1.9.0",
2023-04-14 09:15:06 +00:00
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "futures-macro"
2023-04-17 07:22:24 +00:00
version = "0.3.28"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "futures-sink"
2023-04-17 07:22:24 +00:00
version = "0.3.28"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2023-02-21 07:58:47 +00:00
[[package]]
name = "futures-task"
2023-04-17 07:22:24 +00:00
version = "0.3.28"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2023-02-21 07:58:47 +00:00
[[package]]
name = "futures-util"
2023-04-17 07:22:24 +00:00
version = "0.3.28"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2023-02-21 07:58:47 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
[[package]]
name = "gdk"
2023-09-02 05:15:48 +00:00
version = "0.15.4"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "a6e05c1f572ab0e1f15be94217f0dc29088c248b14f792a5ff0af0d84bcda9e8"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"cairo-rs",
"gdk-pixbuf",
"gdk-sys",
"gio",
"glib",
"libc",
"pango",
]
[[package]]
name = "gdk-pixbuf"
2023-09-02 05:15:48 +00:00
version = "0.15.11"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "ad38dd9cc8b099cceecdf41375bb6d481b1b5a7cd5cd603e10a69a9383f8619a"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"gdk-pixbuf-sys",
"gio",
"glib",
"libc",
]
[[package]]
name = "gdk-pixbuf-sys"
2023-09-02 05:15:48 +00:00
version = "0.15.10"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "140b2f5378256527150350a8346dbdb08fadc13453a7a2d73aecd5fab3c402a7"
2023-02-21 07:58:47 +00:00
dependencies = [
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
2023-09-02 05:15:48 +00:00
"system-deps 6.1.1",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "gdk-sys"
2023-09-02 05:15:48 +00:00
version = "0.15.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "32e7a08c1e8f06f4177fb7e51a777b8c1689f743a7bc11ea91d44d2226073a88"
2023-02-21 07:58:47 +00:00
dependencies = [
"cairo-sys-rs",
"gdk-pixbuf-sys",
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
"pango-sys",
"pkg-config",
2023-09-02 05:15:48 +00:00
"system-deps 6.1.1",
2023-05-14 14:24:07 +00:00
]
[[package]]
name = "gdkwayland-sys"
2023-09-02 05:15:48 +00:00
version = "0.15.3"
2023-05-14 14:24:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "cca49a59ad8cfdf36ef7330fe7bdfbe1d34323220cc16a0de2679ee773aee2c2"
2023-05-14 14:24:07 +00:00
dependencies = [
"gdk-sys",
"glib-sys",
"gobject-sys",
"libc",
"pkg-config",
2023-09-02 05:15:48 +00:00
"system-deps 6.1.1",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "gdkx11-sys"
2023-09-02 05:15:48 +00:00
version = "0.15.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "b4b7f8c7a84b407aa9b143877e267e848ff34106578b64d1e0a24bf550716178"
2023-02-21 07:58:47 +00:00
dependencies = [
"gdk-sys",
"glib-sys",
"libc",
2023-09-02 05:15:48 +00:00
"system-deps 6.1.1",
2023-02-21 07:58:47 +00:00
"x11",
]
[[package]]
name = "generator"
2023-07-09 10:38:54 +00:00
version = "0.7.5"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e"
2023-02-21 07:58:47 +00:00
dependencies = [
"cc",
"libc",
"log",
"rustversion",
2023-05-04 15:12:11 +00:00
"windows 0.48.0",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "generic-array"
2023-04-17 07:22:24 +00:00
version = "0.14.7"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2023-02-21 07:58:47 +00:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if",
"libc",
"wasi 0.9.0+wasi-snapshot-preview1",
]
[[package]]
name = "getrandom"
2023-06-15 02:28:52 +00:00
version = "0.2.10"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
2023-02-21 07:58:47 +00:00
dependencies = [
"cfg-if",
2023-07-09 00:55:23 +00:00
"js-sys",
2023-02-21 07:58:47 +00:00
"libc",
"wasi 0.11.0+wasi-snapshot-preview1",
2023-07-09 00:55:23 +00:00
"wasm-bindgen",
]
[[package]]
name = "ghash"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99"
dependencies = [
"opaque-debug",
"polyval",
2023-02-21 07:58:47 +00:00
]
2023-07-09 10:38:54 +00:00
[[package]]
name = "gimli"
version = "0.28.0"
2023-07-09 10:38:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
2023-07-09 10:38:54 +00:00
2023-02-21 07:58:47 +00:00
[[package]]
name = "gio"
2023-09-02 05:15:48 +00:00
version = "0.15.12"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "68fdbc90312d462781a395f7a16d96a2b379bb6ef8cd6310a2df272771c4283b"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"futures-channel",
"futures-core",
"futures-io",
"gio-sys",
"glib",
"libc",
"once_cell",
"thiserror",
]
[[package]]
name = "gio-sys"
2023-09-02 05:15:48 +00:00
version = "0.15.10"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "32157a475271e2c4a023382e9cab31c4584ee30a97da41d3c4e9fdd605abcf8d"
2023-02-21 07:58:47 +00:00
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
2023-09-02 05:15:48 +00:00
"system-deps 6.1.1",
2023-02-21 07:58:47 +00:00
"winapi",
]
[[package]]
name = "glib"
2023-09-02 05:15:48 +00:00
version = "0.15.12"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "edb0306fbad0ab5428b0ca674a23893db909a98582969c9b537be4ced78c505d"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"futures-channel",
"futures-core",
"futures-executor",
"futures-task",
"glib-macros",
"glib-sys",
"gobject-sys",
"libc",
"once_cell",
"smallvec",
"thiserror",
]
[[package]]
name = "glib-macros"
2023-09-02 05:15:48 +00:00
version = "0.15.13"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "10c6ae9f6fa26f4fb2ac16b528d138d971ead56141de489f8111e259b9df3c4a"
2023-02-21 07:58:47 +00:00
dependencies = [
"anyhow",
2023-09-02 05:15:48 +00:00
"heck 0.4.1",
2023-02-21 07:58:47 +00:00
"proc-macro-crate",
"proc-macro-error",
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "glib-sys"
2023-09-02 05:15:48 +00:00
version = "0.15.10"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "ef4b192f8e65e9cf76cbf4ea71fa8e3be4a0e18ffe3d68b8da6836974cc5bad4"
2023-02-21 07:58:47 +00:00
dependencies = [
"libc",
2023-09-02 05:15:48 +00:00
"system-deps 6.1.1",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "glob"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2023-09-02 05:15:48 +00:00
[[package]]
name = "globset"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d"
dependencies = [
"aho-corasick",
"bstr",
"fnv",
"log",
"regex",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "gobject-sys"
2023-09-02 05:15:48 +00:00
version = "0.15.10"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "0d57ce44246becd17153bd035ab4d32cfee096a657fc01f2231c9278378d1e0a"
2023-02-21 07:58:47 +00:00
dependencies = [
"glib-sys",
"libc",
2023-09-02 05:15:48 +00:00
"system-deps 6.1.1",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "gtk"
2023-09-02 05:15:48 +00:00
version = "0.15.5"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "92e3004a2d5d6d8b5057d2b57b3712c9529b62e82c77f25c1fecde1fd5c23bd0"
2023-02-21 07:58:47 +00:00
dependencies = [
"atk",
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"cairo-rs",
"field-offset",
"futures-channel",
"gdk",
"gdk-pixbuf",
"gio",
"glib",
"gtk-sys",
"gtk3-macros",
"libc",
"once_cell",
"pango",
"pkg-config",
]
[[package]]
name = "gtk-sys"
2023-09-02 05:15:48 +00:00
version = "0.15.3"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "d5bc2f0587cba247f60246a0ca11fe25fb733eabc3de12d1965fc07efab87c84"
2023-02-21 07:58:47 +00:00
dependencies = [
"atk-sys",
"cairo-sys-rs",
"gdk-pixbuf-sys",
"gdk-sys",
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
"pango-sys",
2023-09-02 05:15:48 +00:00
"system-deps 6.1.1",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "gtk3-macros"
2023-09-02 05:15:48 +00:00
version = "0.15.6"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "684c0456c086e8e7e9af73ec5b84e35938df394712054550e81558d21c44ab0d"
2023-02-21 07:58:47 +00:00
dependencies = [
"anyhow",
"proc-macro-crate",
"proc-macro-error",
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
]
[[package]]
name = "h2"
2023-08-22 09:34:47 +00:00
version = "0.3.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 09:34:47 +00:00
checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
2023-07-09 00:55:23 +00:00
"indexmap 1.9.3",
"slab",
"tokio",
"tokio-util",
"tracing",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2023-07-09 00:55:23 +00:00
dependencies = [
"ahash 0.7.6",
]
2023-06-15 02:28:52 +00:00
[[package]]
name = "hashbrown"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-06-15 02:28:52 +00:00
"ahash 0.8.3",
"allocator-api2",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "hashlink"
2023-09-02 01:50:54 +00:00
version = "0.8.4"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 01:50:54 +00:00
checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-06-15 02:28:52 +00:00
"hashbrown 0.14.0",
2023-02-21 07:58:47 +00:00
]
2023-09-02 05:15:48 +00:00
[[package]]
name = "heck"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
dependencies = [
"unicode-segmentation",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
dependencies = [
"unicode-segmentation",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "hermit-abi"
2023-09-20 01:22:02 +00:00
version = "0.3.3"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2023-04-14 09:15:06 +00:00
2023-02-21 07:58:47 +00:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2023-07-09 00:55:23 +00:00
[[package]]
name = "hkdf"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
dependencies = [
"hmac",
]
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest 0.10.7",
]
[[package]]
name = "home"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
dependencies = [
"windows-sys 0.48.0",
]
2023-08-14 02:03:58 +00:00
[[package]]
name = "html5ever"
2023-09-02 05:15:48 +00:00
version = "0.25.2"
2023-08-14 02:03:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "e5c13fb08e5d4dfc151ee5e88bae63f7773d61852f3bdc73c9f4b9e1bde03148"
2023-08-14 02:03:58 +00:00
dependencies = [
"log",
"mac",
2023-09-04 07:35:57 +00:00
"markup5ever 0.10.1",
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "html5ever"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
dependencies = [
"log",
"mac",
"markup5ever 0.11.0",
2023-02-21 07:58:47 +00:00
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "http"
2023-04-17 07:22:24 +00:00
version = "0.2.9"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2023-02-21 07:58:47 +00:00
dependencies = [
"bytes",
"fnv",
2023-07-17 08:21:56 +00:00
"itoa 1.0.9",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "http-body"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "http-range"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "httpdate"
2023-08-14 07:12:54 +00:00
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-14 07:12:54 +00:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
[[package]]
name = "hyper"
2023-07-09 10:38:54 +00:00
version = "0.14.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
2023-07-17 08:21:56 +00:00
"itoa 1.0.9",
"pin-project-lite",
"socket2 0.4.9",
"tokio",
"tower-service",
"tracing",
"want",
]
2023-09-02 05:15:48 +00:00
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio-native-tls",
]
[[package]]
name = "iana-time-zone"
2023-06-15 02:28:52 +00:00
version = "0.1.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
2023-04-17 07:22:24 +00:00
"windows 0.48.0",
]
[[package]]
name = "iana-time-zone-haiku"
2023-05-14 14:24:07 +00:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 14:24:07 +00:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
2023-05-14 14:24:07 +00:00
"cc",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "ico"
2023-05-04 15:12:11 +00:00
version = "0.3.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-04 15:12:11 +00:00
checksum = "e3804960be0bb5e4edb1e1ad67afd321a9ecfd875c3e65c099468fd2717d7cae"
2023-02-21 07:58:47 +00:00
dependencies = [
"byteorder",
"png",
]
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "idna"
2023-06-15 02:28:52 +00:00
version = "0.4.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
2023-02-21 07:58:47 +00:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2023-09-02 05:15:48 +00:00
[[package]]
name = "ignore"
version = "0.4.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbe7873dab538a9a44ad79ede1faf5f30d49f9a5c883ddbab48bce81b64b7492"
dependencies = [
"globset",
"lazy_static",
"log",
"memchr",
"regex",
"same-file",
"thread_local",
"walkdir",
"winapi-util",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "image"
version = "0.24.7"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f3dfdbdd72063086ff443e297b61695500514b1e41095b6fb9a5ab48a70a711"
2023-02-21 07:58:47 +00:00
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"num-rational",
"num-traits",
]
[[package]]
name = "indexmap"
2023-04-17 07:22:24 +00:00
version = "1.9.3"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2023-02-21 07:58:47 +00:00
dependencies = [
"autocfg",
2023-06-15 02:28:52 +00:00
"hashbrown 0.12.3",
2023-05-04 15:12:11 +00:00
"serde",
2023-02-21 07:58:47 +00:00
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "indexmap"
2023-09-28 01:22:38 +00:00
version = "2.0.1"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "ad227c3af19d4914570ad36d30409928b75967c298feb9ea1969db3a610bb14e"
2023-07-09 00:55:23 +00:00
dependencies = [
"equivalent",
"hashbrown 0.14.0",
2023-08-06 08:11:58 +00:00
"serde",
2023-07-09 00:55:23 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "infer"
2023-05-04 15:12:11 +00:00
version = "0.12.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-04 15:12:11 +00:00
checksum = "a898e4b7951673fce96614ce5751d13c40fc5674bc2d759288e46c3ab62598b3"
2023-02-21 07:58:47 +00:00
dependencies = [
"cfb",
]
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "io-lifetimes"
2023-06-15 02:28:52 +00:00
version = "1.0.11"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
2023-04-14 09:15:06 +00:00
dependencies = [
2023-07-17 08:21:56 +00:00
"hermit-abi",
2023-04-14 09:15:06 +00:00
"libc",
"windows-sys 0.48.0",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "iota-crypto"
version = "0.15.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e04d492224bff6e97142f033d0a4383bcbc05918be1ff7b3abd2c1cc85205a2"
dependencies = [
"aead",
2023-09-02 05:15:48 +00:00
"aes",
2023-07-09 00:55:23 +00:00
"aes-gcm",
"autocfg",
"blake2",
"chacha20poly1305",
"curve25519-dalek",
"digest 0.10.7",
"ed25519-zebra",
"generic-array",
"getrandom 0.2.10",
"hmac",
"pbkdf2",
"serde",
2023-09-28 01:22:38 +00:00
"sha2 0.10.8",
2023-07-09 00:55:23 +00:00
"unicode-normalization",
"x25519-dalek",
"zeroize",
]
[[package]]
name = "iota-crypto"
2023-07-17 08:21:56 +00:00
version = "0.23.0"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "c5d5a986d972c3a703d48ced24fdc0bf16fb2d02959ff4b152fa77b9132f6fb0"
2023-07-09 00:55:23 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "iota_stronghold"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c5baaa2460627283f54b968db7a38c9c754dc6059157cae64550ed1b79c91aa"
dependencies = [
"bincode",
"hkdf",
"iota-crypto 0.15.3",
2023-09-20 01:22:02 +00:00
"rust-argon2",
2023-07-09 00:55:23 +00:00
"serde",
"stronghold-derive",
"stronghold-utils",
"stronghold_engine",
"thiserror",
"zeroize",
]
[[package]]
name = "ipnet"
2023-07-09 10:38:54 +00:00
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
2023-02-21 07:58:47 +00:00
[[package]]
name = "itertools"
2023-09-05 01:50:13 +00:00
version = "0.11.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-05 01:50:13 +00:00
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
2023-02-21 07:58:47 +00:00
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
[[package]]
name = "itoa"
2023-07-17 08:21:56 +00:00
version = "1.0.9"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2023-02-21 07:58:47 +00:00
[[package]]
name = "javascriptcore-rs"
2023-09-02 05:15:48 +00:00
version = "0.16.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "bf053e7843f2812ff03ef5afe34bb9c06ffee120385caad4f6b9967fcd37d41c"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"glib",
"javascriptcore-rs-sys",
]
[[package]]
name = "javascriptcore-rs-sys"
2023-09-02 05:15:48 +00:00
version = "0.4.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "905fbb87419c5cde6e3269537e4ea7d46431f3008c5d057e915ef3f115e7793c"
2023-02-21 07:58:47 +00:00
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
2023-09-02 05:15:48 +00:00
"system-deps 5.0.0",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "jni"
2023-09-02 05:15:48 +00:00
version = "0.20.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "039022cdf4d7b1cf548d31f60ae783138e5fd42013f6271049d7df7afadef96c"
2023-02-21 07:58:47 +00:00
dependencies = [
"cesu8",
"combine",
2023-02-21 07:58:47 +00:00
"jni-sys",
"log",
"thiserror",
"walkdir",
]
[[package]]
name = "jni-sys"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
[[package]]
name = "js-sys"
2023-06-15 02:28:52 +00:00
version = "0.3.64"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
2023-02-21 07:58:47 +00:00
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "json-patch"
2023-09-20 01:22:02 +00:00
version = "1.1.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "4f7765dccf8c39c3a470fc694efe322969d791e713ca46bc7b5c506886157572"
2023-02-21 07:58:47 +00:00
dependencies = [
"serde",
"serde_json",
2023-05-04 15:12:11 +00:00
"thiserror",
2023-02-21 07:58:47 +00:00
"treediff",
]
[[package]]
2023-09-02 05:15:48 +00:00
name = "kuchiki"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "1ea8e9c6e031377cff82ee3001dc8026cdf431ed4e2e6b51f98ab8c73484a358"
dependencies = [
"cssparser",
2023-09-04 07:35:57 +00:00
"html5ever 0.25.2",
"matches",
"selectors",
]
2023-09-29 02:19:40 +00:00
[[package]]
name = "kuchikiki"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8"
dependencies = [
"cssparser",
"html5ever 0.26.0",
"indexmap 1.9.3",
"matches",
"selectors",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2023-07-09 00:55:23 +00:00
dependencies = [
"spin 0.5.2",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "libc"
2023-09-20 01:22:02 +00:00
version = "0.2.148"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b"
2023-02-21 07:58:47 +00:00
2023-07-29 02:28:15 +00:00
[[package]]
2023-09-02 05:15:48 +00:00
name = "libm"
version = "0.2.7"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
[[package]]
name = "libsodium-sys"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b779387cd56adfbc02ea4a668e704f729be8d6a6abd2c27ca5ee537849a92fd"
dependencies = [
"cc",
"libc",
"pkg-config",
"walkdir",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "libsqlite3-sys"
2023-07-09 00:55:23 +00:00
version = "0.26.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 00:55:23 +00:00
checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326"
2023-02-21 07:58:47 +00:00
dependencies = [
"cc",
"pkg-config",
"vcpkg",
]
2023-09-04 07:35:57 +00:00
[[package]]
name = "libz-sys"
version = "1.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b"
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "line-wrap"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
dependencies = [
"safemem",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "linux-raw-sys"
2023-06-15 02:28:52 +00:00
version = "0.3.8"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
2023-04-14 09:15:06 +00:00
2023-07-09 10:38:54 +00:00
[[package]]
name = "linux-raw-sys"
2023-09-10 09:25:35 +00:00
version = "0.4.7"
2023-07-09 10:38:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-10 09:25:35 +00:00
checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128"
2023-07-09 10:38:54 +00:00
2023-02-21 07:58:47 +00:00
[[package]]
name = "lock_api"
2023-06-15 02:28:52 +00:00
version = "0.4.10"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
2023-02-21 07:58:47 +00:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2023-08-13 05:28:10 +00:00
version = "0.4.20"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-13 05:28:10 +00:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2023-02-21 07:58:47 +00:00
[[package]]
name = "loom"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5"
dependencies = [
"cfg-if",
"generator",
"scoped-tls",
"serde",
"serde_json",
"tracing",
"tracing-subscriber",
]
[[package]]
name = "lume"
2023-09-29 05:40:02 +00:00
version = "1.2.6"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-09-25 00:43:13 +00:00
"cocoa 0.25.0",
"objc",
2023-09-20 01:22:02 +00:00
"rust-argon2",
2023-02-21 07:58:47 +00:00
"serde",
"serde_json",
"sqlx-cli",
2023-02-21 07:58:47 +00:00
"tauri",
2023-09-02 05:15:48 +00:00
"tauri-build",
2023-07-03 04:49:49 +00:00
"tauri-plugin-autostart",
2023-04-14 09:15:06 +00:00
"tauri-plugin-single-instance",
"tauri-plugin-sql",
2023-07-30 01:13:24 +00:00
"tauri-plugin-store",
2023-07-09 00:55:23 +00:00
"tauri-plugin-stronghold",
2023-07-22 08:32:34 +00:00
"tauri-plugin-upload",
2023-09-04 07:35:57 +00:00
"webpage",
2023-09-02 05:49:04 +00:00
"window-vibrancy",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
2023-07-29 02:28:15 +00:00
[[package]]
name = "mac-notification-sys"
version = "0.6.1"
2023-07-29 02:28:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51fca4d74ff9dbaac16a01b924bc3693fa2bba0862c2c633abc73f9a8ea21f64"
2023-07-29 02:28:15 +00:00
dependencies = [
"cc",
"dirs-next",
"objc-foundation",
"objc_id",
"time",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
dependencies = [
"libc",
]
2023-08-14 02:03:58 +00:00
[[package]]
name = "markup5ever"
2023-09-02 05:15:48 +00:00
version = "0.10.1"
2023-08-14 02:03:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "a24f40fb03852d1cdd84330cddcaf98e9ec08a7b7768e952fad3b4cf048ec8fd"
2023-08-14 02:03:58 +00:00
dependencies = [
"log",
2023-09-02 05:15:48 +00:00
"phf 0.8.0",
2023-09-04 07:35:57 +00:00
"phf_codegen 0.8.0",
2023-08-14 02:03:58 +00:00
"string_cache",
"string_cache_codegen",
"tendril",
]
2023-09-04 07:35:57 +00:00
[[package]]
name = "markup5ever"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
dependencies = [
"log",
"phf 0.10.1",
"phf_codegen 0.10.0",
"string_cache",
"string_cache_codegen",
"tendril",
]
[[package]]
name = "markup5ever_rcdom"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9521dd6750f8e80ee6c53d65e2e4656d7de37064f3a7a5d2d11d05df93839c2"
dependencies = [
"html5ever 0.26.0",
"markup5ever 0.11.0",
"tendril",
"xml5ever",
]
[[package]]
name = "matchers"
2023-02-21 07:58:47 +00:00
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
2023-07-09 10:38:54 +00:00
"regex-automata 0.1.10",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "matches"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
2023-07-09 00:55:23 +00:00
[[package]]
name = "md-5"
2023-09-28 01:22:38 +00:00
version = "0.10.6"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
2023-07-09 00:55:23 +00:00
dependencies = [
2023-09-28 01:22:38 +00:00
"cfg-if",
2023-07-09 00:55:23 +00:00
"digest 0.10.7",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "memchr"
2023-09-04 00:44:57 +00:00
version = "2.6.3"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-04 00:44:57 +00:00
checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c"
2023-02-21 07:58:47 +00:00
2023-04-14 09:15:06 +00:00
[[package]]
name = "memoffset"
version = "0.6.5"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2023-04-14 09:15:06 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "memoffset"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
dependencies = [
"autocfg",
]
[[package]]
name = "memoffset"
2023-06-15 02:28:52 +00:00
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
dependencies = [
"autocfg",
]
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2023-09-05 05:46:00 +00:00
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2023-04-17 07:22:24 +00:00
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
"simd-adler32",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "mio"
2023-06-15 02:28:52 +00:00
version = "0.8.8"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
2023-02-21 07:58:47 +00:00
dependencies = [
"libc",
"wasi 0.11.0+wasi-snapshot-preview1",
2023-06-15 02:28:52 +00:00
"windows-sys 0.48.0",
]
2023-08-15 14:13:58 +00:00
[[package]]
2023-09-02 05:15:48 +00:00
name = "native-tls"
version = "0.2.11"
2023-08-15 14:13:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
2023-08-15 14:13:58 +00:00
dependencies = [
2023-09-02 05:15:48 +00:00
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
2023-08-15 14:13:58 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "ndk"
2023-09-02 05:15:48 +00:00
version = "0.6.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"jni-sys",
"ndk-sys",
"num_enum",
"thiserror",
]
[[package]]
name = "ndk-context"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
[[package]]
name = "ndk-sys"
2023-09-02 05:15:48 +00:00
version = "0.3.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97"
2023-02-21 07:58:47 +00:00
dependencies = [
"jni-sys",
]
[[package]]
name = "new_debug_unreachable"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
[[package]]
name = "nibble_vec"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
dependencies = [
"smallvec",
]
[[package]]
name = "nix"
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c"
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
"cc",
"cfg-if",
"libc",
"memoffset 0.6.5",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "nix"
version = "0.24.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
dependencies = [
"bitflags 1.3.2",
"cfg-if",
"libc",
"memoffset 0.6.5",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "nix"
2023-09-02 01:50:54 +00:00
version = "0.26.4"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 01:50:54 +00:00
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
2023-04-14 09:15:06 +00:00
dependencies = [
2023-09-02 01:50:54 +00:00
"bitflags 1.3.2",
2023-04-14 09:15:06 +00:00
"cfg-if",
"libc",
"memoffset 0.7.1",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "nodrop"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
2023-07-29 02:28:15 +00:00
[[package]]
name = "notify-rust"
version = "4.9.0"
2023-07-29 02:28:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d7b75c8958cb2eab3451538b32db8a7b74006abc33eb2e6a9a56d21e4775c2b"
2023-07-29 02:28:15 +00:00
dependencies = [
"log",
"mac-notification-sys",
"serde",
"tauri-winrt-notification",
"zbus",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "num-bigint-dig"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
dependencies = [
"byteorder",
"lazy_static",
"libm",
"num-integer",
"num-iter",
"num-traits",
"rand 0.8.5",
"smallvec",
"zeroize",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "num-iter"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "num-rational"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2023-07-23 02:16:29 +00:00
version = "0.2.16"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-23 02:16:29 +00:00
checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
2023-02-21 07:58:47 +00:00
dependencies = [
"autocfg",
2023-07-09 00:55:23 +00:00
"libm",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "num_cpus"
2023-07-09 10:38:54 +00:00
version = "1.16.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-17 08:21:56 +00:00
"hermit-abi",
2023-02-21 07:58:47 +00:00
"libc",
]
[[package]]
name = "num_enum"
2023-04-17 07:22:24 +00:00
version = "0.5.11"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
2023-02-21 07:58:47 +00:00
dependencies = [
"num_enum_derive",
]
[[package]]
name = "num_enum_derive"
2023-04-17 07:22:24 +00:00
version = "0.5.11"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "objc"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
dependencies = [
"malloc_buf",
"objc_exception",
]
2023-07-29 02:28:15 +00:00
[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
dependencies = [
"block",
"objc",
"objc_id",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "objc_exception"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
dependencies = [
"cc",
]
[[package]]
name = "objc_id"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
dependencies = [
"objc",
]
2023-07-09 10:38:54 +00:00
[[package]]
name = "object"
2023-09-04 00:44:57 +00:00
version = "0.32.1"
2023-07-09 10:38:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-04 00:44:57 +00:00
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
2023-07-09 10:38:54 +00:00
dependencies = [
"memchr",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "once_cell"
2023-06-15 02:28:52 +00:00
version = "1.18.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2023-02-21 07:58:47 +00:00
2023-07-09 00:55:23 +00:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "open"
2023-09-02 05:15:48 +00:00
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8"
dependencies = [
"pathdiff",
2023-09-02 05:15:48 +00:00
"windows-sys 0.42.0",
]
[[package]]
name = "openssl"
version = "0.10.57"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c"
dependencies = [
"bitflags 2.4.0",
"cfg-if",
2023-09-02 05:49:04 +00:00
"foreign-types 0.3.2",
2023-09-02 05:15:48 +00:00
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-09-02 05:15:48 +00:00
]
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
2023-09-05 01:50:13 +00:00
version = "0.9.93"
2023-09-02 05:15:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-05 01:50:13 +00:00
checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d"
2023-09-02 05:15:48 +00:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "ordered-stream"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
dependencies = [
"futures-core",
"pin-project-lite",
]
2023-07-29 02:28:15 +00:00
[[package]]
name = "os_info"
version = "3.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e"
dependencies = [
"log",
"serde",
"winapi",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "pango"
2023-09-02 05:15:48 +00:00
version = "0.15.10"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "22e4045548659aee5313bde6c582b0d83a627b7904dd20dc2d9ef0895d414e4f"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"glib",
"libc",
"once_cell",
"pango-sys",
]
[[package]]
name = "pango-sys"
2023-09-02 05:15:48 +00:00
version = "0.15.10"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "d2a00081cde4661982ed91d80ef437c20eacaf6aa1a5962c0279ae194662c3aa"
2023-02-21 07:58:47 +00:00
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
2023-09-02 05:15:48 +00:00
"system-deps 6.1.1",
2023-02-21 07:58:47 +00:00
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "parking"
2023-09-28 01:22:38 +00:00
version = "2.1.1"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "e52c774a4c39359c1d1c52e43f73dd91a75a614652c825408eec30c95a9b2067"
2023-04-14 09:15:06 +00:00
2023-02-21 07:58:47 +00:00
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
2023-07-09 00:55:23 +00:00
"parking_lot_core",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "parking_lot_core"
2023-06-15 02:28:52 +00:00
version = "0.9.8"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
2023-02-21 07:58:47 +00:00
dependencies = [
"cfg-if",
"libc",
2023-06-15 02:28:52 +00:00
"redox_syscall 0.3.5",
2023-02-21 07:58:47 +00:00
"smallvec",
2023-08-19 01:56:19 +00:00
"windows-targets 0.48.5",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "paste"
2023-07-17 08:21:56 +00:00
version = "1.0.14"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
2023-02-21 07:58:47 +00:00
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
2023-07-09 00:55:23 +00:00
[[package]]
name = "pbkdf2"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
dependencies = [
"digest 0.10.7",
]
[[package]]
name = "pem-rfc7468"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
dependencies = [
"base64ct",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "percent-encoding"
2023-06-15 02:28:52 +00:00
version = "2.3.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
2023-02-21 07:58:47 +00:00
[[package]]
name = "phf"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
dependencies = [
"phf_macros 0.8.0",
"phf_shared 0.8.0",
"proc-macro-hack",
]
[[package]]
name = "phf"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
dependencies = [
"phf_macros 0.10.0",
"phf_shared 0.10.0",
"proc-macro-hack",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "phf_codegen"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
dependencies = [
"phf_generator 0.8.0",
"phf_shared 0.8.0",
]
2023-09-04 07:35:57 +00:00
[[package]]
name = "phf_codegen"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
dependencies = [
"phf_generator 0.10.0",
"phf_shared 0.10.0",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "phf_generator"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
dependencies = [
"phf_shared 0.8.0",
"rand 0.7.3",
]
[[package]]
name = "phf_generator"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
dependencies = [
"phf_shared 0.10.0",
"rand 0.8.5",
]
[[package]]
name = "phf_macros"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c"
dependencies = [
"phf_generator 0.8.0",
"phf_shared 0.8.0",
"proc-macro-hack",
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "phf_macros"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
dependencies = [
"phf_generator 0.10.0",
"phf_shared 0.10.0",
"proc-macro-hack",
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "phf_shared"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
dependencies = [
"siphasher",
]
[[package]]
name = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
"siphasher",
]
[[package]]
name = "pin-project-lite"
2023-08-26 07:52:02 +00:00
version = "0.2.13"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 07:52:02 +00:00
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2023-02-21 07:58:47 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2023-09-28 01:22:38 +00:00
[[package]]
name = "piper"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
dependencies = [
"atomic-waker",
"fastrand 2.0.1",
"futures-io",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "pkcs1"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
dependencies = [
"der",
"pkcs8",
"spki",
]
[[package]]
name = "pkcs8"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
dependencies = [
"der",
"spki",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "pkg-config"
2023-05-04 15:12:11 +00:00
version = "0.3.27"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-04 15:12:11 +00:00
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2023-02-21 07:58:47 +00:00
[[package]]
name = "plist"
2023-07-17 08:21:56 +00:00
version = "1.5.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "bdc0001cfea3db57a2e24bc0d818e9e20e554b5f97fabb9bc231dc240269ae06"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-09-10 09:25:35 +00:00
"base64 0.21.4",
2023-07-09 00:55:23 +00:00
"indexmap 1.9.3",
2023-02-21 07:58:47 +00:00
"line-wrap",
2023-07-29 02:28:15 +00:00
"quick-xml 0.29.0",
2023-02-21 07:58:47 +00:00
"serde",
"time",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "png"
2023-08-18 10:42:25 +00:00
version = "0.17.10"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 10:42:25 +00:00
checksum = "dd75bf2d8dd3702b9707cdbc56a5b9ef42cec752eb8b3bafc01234558442aa64"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"crc32fast",
2023-04-17 07:22:24 +00:00
"fdeflate",
2023-02-21 07:58:47 +00:00
"flate2",
2023-05-04 15:12:11 +00:00
"miniz_oxide",
2023-02-21 07:58:47 +00:00
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "polling"
2023-05-04 15:12:11 +00:00
version = "2.8.0"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-04 15:12:11 +00:00
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
2023-04-14 09:15:06 +00:00
dependencies = [
"autocfg",
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-04-14 09:15:06 +00:00
"cfg-if",
"concurrent-queue",
"libc",
"log",
"pin-project-lite",
"windows-sys 0.48.0",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "poly1305"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede"
dependencies = [
"cpufeatures",
"opaque-debug",
"universal-hash",
]
[[package]]
name = "polyval"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1"
dependencies = [
"cfg-if",
"cpufeatures",
"opaque-debug",
"universal-hash",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
[[package]]
name = "proc-macro-crate"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
dependencies = [
"once_cell",
"toml_edit",
]
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn 1.0.109",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro-hack"
version = "0.5.20+deprecated"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
[[package]]
name = "proc-macro2"
2023-09-20 01:22:02 +00:00
version = "1.0.67"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
2023-02-21 07:58:47 +00:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "promptly"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9acbc6c5a5b029fe58342f58445acb00ccfe24624e538894bc2f04ce112980ba"
dependencies = [
"rustyline",
]
2023-07-29 02:28:15 +00:00
[[package]]
name = "quick-xml"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11bafc859c6815fbaffbbbf4229ecb767ac913fecb27f9ad4343662e9ef099ea"
dependencies = [
"memchr",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "quick-xml"
2023-07-17 08:21:56 +00:00
version = "0.29.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "81b9228215d82c7b61490fec1de287136b5de6f5700f6e58ea9ad61a7964ca51"
2023-02-21 07:58:47 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "quote"
2023-08-18 00:37:11 +00:00
version = "1.0.33"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 00:37:11 +00:00
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "radix_trie"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
dependencies = [
"endian-type",
"nibble_vec",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom 0.1.16",
"libc",
"rand_chacha 0.2.2",
"rand_core 0.5.1",
"rand_hc",
"rand_pcg",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha 0.3.1",
"rand_core 0.6.4",
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
"rand_core 0.5.1",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core 0.6.4",
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
2023-06-15 02:28:52 +00:00
"getrandom 0.2.10",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
"rand_core 0.5.1",
]
[[package]]
name = "rand_pcg"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
dependencies = [
"rand_core 0.5.1",
]
[[package]]
name = "raw-window-handle"
2023-06-15 02:28:52 +00:00
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
2023-07-22 08:32:34 +00:00
[[package]]
name = "read-progress-stream"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6435842fc2fea44b528719eb8c32203bbc1bb2f5b619fbe0c0a3d8350fd8d2a8"
dependencies = [
"bytes",
"futures",
"pin-project-lite",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
]
2023-04-17 07:22:24 +00:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-04-17 07:22:24 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
2023-06-15 02:28:52 +00:00
"getrandom 0.2.10",
2023-04-17 07:22:24 +00:00
"redox_syscall 0.2.16",
2023-02-21 07:58:47 +00:00
"thiserror",
]
[[package]]
name = "regex"
2023-09-04 00:44:57 +00:00
version = "1.9.5"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-04 00:44:57 +00:00
checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-17 08:21:56 +00:00
"aho-corasick",
2023-02-21 07:58:47 +00:00
"memchr",
2023-09-04 00:44:57 +00:00
"regex-automata 0.3.8",
2023-08-28 03:39:18 +00:00
"regex-syntax 0.7.5",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
2023-05-04 15:12:11 +00:00
"regex-syntax 0.6.29",
2023-02-21 07:58:47 +00:00
]
2023-07-09 10:38:54 +00:00
[[package]]
name = "regex-automata"
2023-09-04 00:44:57 +00:00
version = "0.3.8"
2023-07-09 10:38:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-04 00:44:57 +00:00
checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795"
2023-07-09 10:38:54 +00:00
dependencies = [
2023-07-17 08:21:56 +00:00
"aho-corasick",
2023-07-09 10:38:54 +00:00
"memchr",
2023-08-28 03:39:18 +00:00
"regex-syntax 0.7.5",
2023-07-09 10:38:54 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "regex-syntax"
2023-04-17 07:22:24 +00:00
version = "0.6.29"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2023-02-21 07:58:47 +00:00
2023-05-04 15:12:11 +00:00
[[package]]
name = "regex-syntax"
2023-08-28 03:39:18 +00:00
version = "0.7.5"
2023-05-04 15:12:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 03:39:18 +00:00
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
2023-05-04 15:12:11 +00:00
[[package]]
name = "reqwest"
version = "0.11.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1"
dependencies = [
2023-09-10 09:25:35 +00:00
"base64 0.21.4",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
2023-09-02 05:15:48 +00:00
"hyper-tls",
"ipnet",
"js-sys",
"log",
"mime",
2023-09-05 05:46:00 +00:00
"mime_guess",
2023-09-02 05:15:48 +00:00
"native-tls",
"once_cell",
"percent-encoding",
"pin-project-lite",
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
2023-09-02 05:15:48 +00:00
"tokio-native-tls",
"tokio-util",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"wasm-streams",
"web-sys",
2023-08-22 09:34:47 +00:00
"winreg 0.50.0",
]
2023-07-29 02:28:15 +00:00
[[package]]
name = "rfd"
2023-09-02 05:15:48 +00:00
version = "0.10.0"
2023-07-29 02:28:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "0149778bd99b6959285b0933288206090c50e2327f47a9c463bfdbf45c8823ea"
2023-07-29 02:28:15 +00:00
dependencies = [
"block",
"dispatch",
"glib-sys",
"gobject-sys",
"gtk-sys",
"js-sys",
2023-09-02 05:15:48 +00:00
"lazy_static",
2023-07-29 02:28:15 +00:00
"log",
"objc",
"objc-foundation",
"objc_id",
"raw-window-handle",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2023-09-02 05:15:48 +00:00
"windows 0.37.0",
2023-07-29 02:28:15 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "ring"
version = "0.16.20"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2023-02-21 07:58:47 +00:00
dependencies = [
"cc",
"libc",
2023-02-21 07:58:47 +00:00
"once_cell",
"spin 0.5.2",
"untrusted",
2023-02-21 07:58:47 +00:00
"web-sys",
"winapi",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "rsa"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8"
dependencies = [
"byteorder",
"const-oid",
"digest 0.10.7",
"num-bigint-dig",
"num-integer",
"num-iter",
"num-traits",
"pkcs1",
"pkcs8",
"rand_core 0.6.4",
"signature",
"spki",
"subtle",
"zeroize",
]
[[package]]
name = "rust-argon2"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b50162d19404029c1ceca6f6980fe40d45c8b369f6f44446fa14bb39573b5bb9"
dependencies = [
"base64 0.13.1",
"blake2b_simd",
"constant_time_eq 0.1.5",
"crossbeam-utils",
]
2023-07-09 10:38:54 +00:00
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
2023-02-21 07:58:47 +00:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
2023-04-17 07:22:24 +00:00
"semver",
2023-02-21 07:58:47 +00:00
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "rustix"
2023-07-09 10:38:54 +00:00
version = "0.37.23"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
2023-04-14 09:15:06 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-04-14 09:15:06 +00:00
"errno",
"io-lifetimes",
"libc",
2023-07-09 10:38:54 +00:00
"linux-raw-sys 0.3.8",
"windows-sys 0.48.0",
]
[[package]]
name = "rustix"
2023-09-28 01:22:38 +00:00
version = "0.38.14"
2023-07-09 10:38:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "747c788e9ce8e92b12cd485c49ddf90723550b654b32508f979b71a7b1ecda4f"
2023-07-09 10:38:54 +00:00
dependencies = [
2023-08-12 04:18:10 +00:00
"bitflags 2.4.0",
2023-07-09 10:38:54 +00:00
"errno",
"libc",
2023-09-10 09:25:35 +00:00
"linux-raw-sys 0.4.7",
2023-04-17 07:22:24 +00:00
"windows-sys 0.48.0",
2023-04-14 09:15:06 +00:00
]
[[package]]
name = "rustls"
2023-09-02 01:50:54 +00:00
version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 01:50:54 +00:00
checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8"
dependencies = [
"ring",
2023-07-17 08:21:56 +00:00
"rustls-webpki",
"sct",
]
[[package]]
name = "rustls-pemfile"
2023-07-09 10:38:54 +00:00
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
dependencies = [
2023-09-10 09:25:35 +00:00
"base64 0.21.4",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "rustls-webpki"
2023-09-28 01:22:38 +00:00
version = "0.101.6"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe"
2023-07-09 00:55:23 +00:00
dependencies = [
"ring",
"untrusted",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "rustversion"
2023-07-17 08:21:56 +00:00
version = "1.0.14"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2023-02-21 07:58:47 +00:00
[[package]]
name = "rustyline"
version = "9.1.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db7826789c0e25614b03e5a54a0717a86f9ff6e6e5247f92b369472869320039"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
"cfg-if",
"clipboard-win",
"dirs-next",
"fd-lock",
"libc",
"log",
"memchr",
"nix 0.23.2",
"radix_trie",
"scopeguard",
"smallvec",
"unicode-segmentation",
"unicode-width",
"utf8parse",
"winapi",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "ryu"
2023-07-17 08:21:56 +00:00
version = "1.0.15"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
2023-02-21 07:58:47 +00:00
[[package]]
name = "safemem"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2023-09-02 05:15:48 +00:00
[[package]]
name = "schannel"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
dependencies = [
"windows-sys 0.48.0",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "scoped-tls"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
[[package]]
name = "scopeguard"
2023-07-23 02:16:29 +00:00
version = "1.2.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-23 02:16:29 +00:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2023-02-21 07:58:47 +00:00
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
2023-09-02 05:15:48 +00:00
[[package]]
name = "security-framework"
version = "2.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
dependencies = [
"core-foundation-sys",
"libc",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "selectors"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe"
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"cssparser",
"derive_more",
"fxhash",
"log",
"matches",
"phf 0.8.0",
2023-09-04 07:35:57 +00:00
"phf_codegen 0.8.0",
2023-02-21 07:58:47 +00:00
"precomputed-hash",
"servo_arc",
"smallvec",
"thin-slice",
]
[[package]]
name = "semver"
2023-09-28 01:22:38 +00:00
version = "1.0.19"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "ad977052201c6de01a8ef2aa3378c4bd23217a056337d1d6da40468d267a4fb0"
2023-02-21 07:58:47 +00:00
dependencies = [
"serde",
]
[[package]]
name = "serde"
2023-08-26 07:52:02 +00:00
version = "1.0.188"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 07:52:02 +00:00
checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
2023-02-21 07:58:47 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2023-08-26 07:52:02 +00:00
version = "1.0.188"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 07:52:02 +00:00
checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "serde_json"
2023-09-20 01:22:02 +00:00
version = "1.0.107"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-17 08:21:56 +00:00
"itoa 1.0.9",
2023-02-21 07:58:47 +00:00
"ryu",
"serde",
]
[[package]]
name = "serde_repr"
2023-07-29 00:26:51 +00:00
version = "0.1.16"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-29 00:26:51 +00:00
checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-04-17 07:22:24 +00:00
]
[[package]]
name = "serde_spanned"
2023-07-09 10:38:54 +00:00
version = "0.6.3"
2023-04-17 07:22:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
2023-04-17 07:22:24 +00:00
dependencies = [
"serde",
2023-02-21 07:58:47 +00:00
]
2023-03-19 01:54:17 +00:00
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
2023-07-17 08:21:56 +00:00
"itoa 1.0.9",
2023-03-19 01:54:17 +00:00
"ryu",
"serde",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "serde_with"
2023-08-20 08:59:07 +00:00
version = "3.3.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-20 08:59:07 +00:00
checksum = "1ca3b16a3d82c4088f343b7480a93550b3eabe1a358569c2dfe38bbcead07237"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-09-10 09:25:35 +00:00
"base64 0.21.4",
2023-05-04 15:12:11 +00:00
"chrono",
"hex",
2023-07-09 00:55:23 +00:00
"indexmap 1.9.3",
2023-09-28 01:22:38 +00:00
"indexmap 2.0.1",
2023-02-21 07:58:47 +00:00
"serde",
2023-05-04 15:12:11 +00:00
"serde_json",
2023-02-21 07:58:47 +00:00
"serde_with_macros",
2023-05-04 15:12:11 +00:00
"time",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "serde_with_macros"
2023-08-20 08:59:07 +00:00
version = "3.3.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-20 08:59:07 +00:00
checksum = "2e6be15c453eb305019bfa438b1593c731f36a289a7853f7707ee29e870b3b3c"
2023-02-21 07:58:47 +00:00
dependencies = [
"darling",
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "serialize-to-javascript"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb"
dependencies = [
"serde",
"serde_json",
"serialize-to-javascript-impl",
]
[[package]]
name = "serialize-to-javascript-impl"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763"
dependencies = [
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "servo_arc"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432"
dependencies = [
"nodrop",
"stable_deref_trait",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "sha1"
2023-09-28 01:22:38 +00:00
version = "0.10.6"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2023-04-14 09:15:06 +00:00
dependencies = [
"cfg-if",
"cpufeatures",
2023-07-09 00:55:23 +00:00
"digest 0.10.7",
]
[[package]]
name = "sha2"
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
dependencies = [
"block-buffer 0.9.0",
"cfg-if",
"cpufeatures",
"digest 0.9.0",
"opaque-debug",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "sha2"
2023-09-28 01:22:38 +00:00
version = "0.10.8"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
2023-02-21 07:58:47 +00:00
dependencies = [
"cfg-if",
"cpufeatures",
2023-07-09 00:55:23 +00:00
"digest 0.10.7",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "sharded-slab"
2023-09-28 01:22:38 +00:00
version = "0.1.6"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "c1b21f559e07218024e7e9f90f96f601825397de0e25420135f7f952453fed0b"
2023-02-21 07:58:47 +00:00
dependencies = [
"lazy_static",
]
2023-07-09 10:38:54 +00:00
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "signature"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500"
dependencies = [
"digest 0.10.7",
"rand_core 0.6.4",
]
2023-04-17 07:22:24 +00:00
[[package]]
name = "simd-adler32"
2023-07-25 01:09:26 +00:00
version = "0.3.7"
2023-04-17 07:22:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-25 01:09:26 +00:00
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2023-04-17 07:22:24 +00:00
2023-02-21 07:58:47 +00:00
[[package]]
name = "siphasher"
version = "0.3.11"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
2023-02-21 07:58:47 +00:00
[[package]]
name = "slab"
version = "0.4.9"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2023-02-21 07:58:47 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
2023-09-28 01:22:38 +00:00
version = "1.11.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
2023-02-21 07:58:47 +00:00
[[package]]
name = "socket2"
version = "0.4.9"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2023-02-21 07:58:47 +00:00
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "socket2"
2023-09-20 01:22:02 +00:00
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e"
dependencies = [
"libc",
"windows-sys 0.48.0",
]
2023-02-21 07:58:47 +00:00
[[package]]
2023-09-02 05:15:48 +00:00
name = "soup2"
version = "0.2.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "b2b4d76501d8ba387cf0fefbe055c3e0a59891d09f0f995ae4e4b16f6b60f3c0"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"gio",
"glib",
"libc",
"once_cell",
2023-09-02 05:15:48 +00:00
"soup2-sys",
2023-02-21 07:58:47 +00:00
]
[[package]]
2023-09-02 05:15:48 +00:00
name = "soup2-sys"
version = "0.2.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "009ef427103fcb17f802871647a7fa6c60cbb654b4c4e4c0ac60a31c5f6dc9cf"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-09-02 05:15:48 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
2023-09-02 05:15:48 +00:00
"system-deps 5.0.0",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "spin"
version = "0.5.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2023-02-21 07:58:47 +00:00
dependencies = [
"lock_api",
2023-02-21 07:58:47 +00:00
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "spki"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a"
dependencies = [
"base64ct",
"der",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "sqlformat"
2023-09-05 01:50:13 +00:00
version = "0.2.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-05 01:50:13 +00:00
checksum = "6b7b278788e7be4d0d29c0f39497a0eef3fba6bbc8e70d8bf7fde46edeaa9e85"
2023-02-21 07:58:47 +00:00
dependencies = [
"itertools",
"nom",
"unicode_categories",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "sqlx"
2023-09-29 02:19:40 +00:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "0e50c216e3624ec8e7ecd14c6a6a6370aad6ee5d8cfc3ab30b5162eeeef2ed33"
dependencies = [
"sqlx-core",
"sqlx-macros",
2023-07-09 00:55:23 +00:00
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "sqlx-cli"
2023-09-29 02:19:40 +00:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "e80bc07dfc7f258db72ae5d72d793aa87943690fc1b2afc87b4cabf87035bac0"
2023-02-21 07:58:47 +00:00
dependencies = [
"anyhow",
"async-trait",
"backoff",
"cargo_metadata",
"chrono",
"clap",
"console",
"dotenvy",
"filetime",
"futures",
"glob",
"promptly",
"serde",
2023-02-21 07:58:47 +00:00
"serde_json",
"sqlx",
"tokio",
2023-02-21 07:58:47 +00:00
"url",
]
[[package]]
name = "sqlx-core"
2023-09-29 02:19:40 +00:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "8d6753e460c998bbd4cd8c6f0ed9a64346fcca0723d6e75e52fdc351c5d2169d"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"ahash 0.8.3",
"atoi",
"byteorder",
"bytes",
"crc",
"crossbeam-queue",
"dotenvy",
"either",
2023-09-28 01:22:38 +00:00
"event-listener 2.5.3",
"futures-channel",
"futures-core",
"futures-intrusive",
2023-07-09 00:55:23 +00:00
"futures-io",
"futures-util",
"hashlink",
"hex",
2023-09-28 01:22:38 +00:00
"indexmap 2.0.1",
"log",
"memchr",
2023-02-21 07:58:47 +00:00
"once_cell",
"paste",
"percent-encoding",
"rustls",
"rustls-pemfile",
"serde",
"serde_json",
2023-09-28 01:22:38 +00:00
"sha2 0.10.8",
"smallvec",
"sqlformat",
"thiserror",
"time",
2023-07-09 00:55:23 +00:00
"tokio",
"tokio-stream",
2023-07-09 00:55:23 +00:00
"tracing",
"url",
"webpki-roots",
]
[[package]]
name = "sqlx-macros"
2023-09-29 02:19:40 +00:00
version = "0.7.2"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "9a793bb3ba331ec8359c1853bd39eed32cdd7baaf22c35ccf5c92a7e8d1189ec"
2023-07-09 00:55:23 +00:00
dependencies = [
"proc-macro2",
"quote",
"sqlx-core",
"sqlx-macros-core",
"syn 1.0.109",
]
[[package]]
name = "sqlx-macros-core"
2023-09-29 02:19:40 +00:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "0a4ee1e104e00dedb6aa5ffdd1343107b0a4702e862a84320ee7cc74782d96fc"
dependencies = [
"dotenvy",
"either",
2023-09-02 05:15:48 +00:00
"heck 0.4.1",
"hex",
"once_cell",
"proc-macro2",
"quote",
"serde",
"serde_json",
2023-09-28 01:22:38 +00:00
"sha2 0.10.8",
"sqlx-core",
2023-07-09 00:55:23 +00:00
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
"syn 1.0.109",
2023-07-09 00:55:23 +00:00
"tempfile",
"tokio",
"url",
]
[[package]]
2023-07-09 00:55:23 +00:00
name = "sqlx-mysql"
2023-09-29 02:19:40 +00:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "864b869fdf56263f4c95c45483191ea0af340f9f3e3e7b4d57a61c7c87a970db"
dependencies = [
2023-07-09 00:55:23 +00:00
"atoi",
2023-09-10 09:25:35 +00:00
"base64 0.21.4",
2023-08-12 04:18:10 +00:00
"bitflags 2.4.0",
2023-07-09 00:55:23 +00:00
"byteorder",
"bytes",
"crc",
"digest 0.10.7",
"dotenvy",
"either",
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
"generic-array",
"hex",
"hkdf",
"hmac",
2023-07-17 08:21:56 +00:00
"itoa 1.0.9",
2023-07-09 00:55:23 +00:00
"log",
"md-5",
"memchr",
"once_cell",
2023-07-09 00:55:23 +00:00
"percent-encoding",
"rand 0.8.5",
"rsa",
"serde",
"sha1",
2023-09-28 01:22:38 +00:00
"sha2 0.10.8",
2023-07-09 00:55:23 +00:00
"smallvec",
"sqlx-core",
"stringprep",
"thiserror",
"time",
"tracing",
"whoami",
]
[[package]]
name = "sqlx-postgres"
2023-09-29 02:19:40 +00:00
version = "0.7.2"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "eb7ae0e6a97fb3ba33b23ac2671a5ce6e3cabe003f451abd5a56e7951d975624"
2023-07-09 00:55:23 +00:00
dependencies = [
"atoi",
2023-09-10 09:25:35 +00:00
"base64 0.21.4",
2023-08-12 04:18:10 +00:00
"bitflags 2.4.0",
2023-07-09 00:55:23 +00:00
"byteorder",
"crc",
"dotenvy",
"etcetera",
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
"hex",
"hkdf",
"hmac",
"home",
2023-07-17 08:21:56 +00:00
"itoa 1.0.9",
2023-07-09 00:55:23 +00:00
"log",
"md-5",
"memchr",
"once_cell",
"rand 0.8.5",
"serde",
"serde_json",
"sha1",
2023-09-28 01:22:38 +00:00
"sha2 0.10.8",
2023-07-09 00:55:23 +00:00
"smallvec",
"sqlx-core",
"stringprep",
"thiserror",
"time",
"tracing",
"whoami",
]
[[package]]
name = "sqlx-sqlite"
2023-09-29 02:19:40 +00:00
version = "0.7.2"
2023-07-09 00:55:23 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "d59dc83cf45d89c555a577694534fcd1b55c545a816c816ce51f20bbe56a4f3f"
2023-07-09 00:55:23 +00:00
dependencies = [
"atoi",
"flume",
"futures-channel",
"futures-core",
"futures-executor",
"futures-intrusive",
"futures-util",
"libsqlite3-sys",
"log",
"percent-encoding",
"serde",
"sqlx-core",
"time",
"tracing",
"url",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "stable_deref_trait"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
[[package]]
name = "state"
2023-09-02 05:15:48 +00:00
version = "0.5.3"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "dbe866e1e51e8260c9eed836a042a5e7f6726bb2b411dffeaa712e19c388f23b"
2023-02-21 07:58:47 +00:00
dependencies = [
"loom",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "str-buf"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0"
2023-02-21 07:58:47 +00:00
[[package]]
name = "string_cache"
2023-04-17 07:22:24 +00:00
version = "0.8.7"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
2023-02-21 07:58:47 +00:00
dependencies = [
"new_debug_unreachable",
"once_cell",
2023-07-09 00:55:23 +00:00
"parking_lot",
2023-02-21 07:58:47 +00:00
"phf_shared 0.10.0",
"precomputed-hash",
"serde",
]
[[package]]
name = "string_cache_codegen"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
dependencies = [
"phf_generator 0.10.0",
"phf_shared 0.10.0",
"proc-macro2",
"quote",
]
[[package]]
name = "stringprep"
2023-09-05 01:50:13 +00:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-05 01:50:13 +00:00
checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6"
dependencies = [
2023-09-05 01:50:13 +00:00
"finl_unicode",
"unicode-bidi",
"unicode-normalization",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "stronghold-derive"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2835db23c4724c05a2f85b81c4681f4aa8ea158edc8a7f4ad791c916fb766c2e"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]
name = "stronghold-runtime"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d93abb10fbd11335d31c33a70b2523c0caab348215caa2ce6da04a268c30afcb"
dependencies = [
"dirs",
"iota-crypto 0.15.3",
"libc",
"libsodium-sys",
"log",
"nix 0.24.3",
"rand 0.8.5",
"serde",
"thiserror",
"windows 0.36.1",
"zeroize",
]
[[package]]
name = "stronghold-utils"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8300214898af5e153e7f66e49dbd1c6a21585f2d592d9f24f58b969792475ed6"
dependencies = [
"rand 0.8.5",
"stronghold-derive",
]
[[package]]
name = "stronghold_engine"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96d68a609d0a4f05dbde8b704619faa7f861069bbc649e3abecb4d389f10236f"
dependencies = [
"anyhow",
"dirs-next",
"hex",
"iota-crypto 0.15.3",
"once_cell",
"paste",
"serde",
"stronghold-runtime",
"thiserror",
"zeroize",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2023-07-09 00:55:23 +00:00
[[package]]
name = "subtle"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2023-02-21 07:58:47 +00:00
[[package]]
name = "syn"
2023-04-17 07:22:24 +00:00
version = "1.0.109"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
2023-09-20 01:22:02 +00:00
version = "2.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2023-07-29 02:28:15 +00:00
[[package]]
name = "sys-locale"
2023-09-02 05:15:48 +00:00
version = "0.2.4"
2023-07-29 02:28:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "f8a11bd9c338fdba09f7881ab41551932ad42e405f61d01e8406baea71c07aee"
2023-07-29 02:28:15 +00:00
dependencies = [
2023-09-02 05:15:48 +00:00
"js-sys",
2023-07-29 02:28:15 +00:00
"libc",
2023-09-02 05:15:48 +00:00
"wasm-bindgen",
"web-sys",
"windows-sys 0.45.0",
]
[[package]]
name = "system-deps"
version = "5.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18db855554db7bd0e73e06cf7ba3df39f97812cb11d3f75e71c39bf45171797e"
dependencies = [
"cfg-expr 0.9.1",
"heck 0.3.3",
"pkg-config",
"toml 0.5.11",
"version-compare 0.0.11",
2023-07-29 02:28:15 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "system-deps"
2023-07-09 10:38:54 +00:00
version = "6.1.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "30c2de8a4d8f4b823d634affc9cd2a74ec98c53a756f317e529a48046cbf71f3"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-09-10 09:25:35 +00:00
"cfg-expr 0.15.5",
2023-09-02 05:15:48 +00:00
"heck 0.4.1",
2023-02-21 07:58:47 +00:00
"pkg-config",
2023-09-10 09:25:35 +00:00
"toml 0.7.8",
2023-09-02 05:15:48 +00:00
"version-compare 0.1.1",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "tao"
2023-09-02 05:15:48 +00:00
version = "0.16.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "6a6d198e01085564cea63e976ad1566c1ba2c2e4cc79578e35d9f05521505e31"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"cairo-rs",
"cc",
2023-09-02 05:49:04 +00:00
"cocoa 0.24.1",
2023-02-21 07:58:47 +00:00
"core-foundation",
2023-09-02 05:49:04 +00:00
"core-graphics 0.22.3",
2023-02-21 07:58:47 +00:00
"crossbeam-channel",
"dispatch",
"gdk",
"gdk-pixbuf",
"gdk-sys",
2023-05-14 14:24:07 +00:00
"gdkwayland-sys",
2023-02-21 07:58:47 +00:00
"gdkx11-sys",
"gio",
"glib",
"glib-sys",
"gtk",
"image",
"instant",
"jni",
"lazy_static",
"libc",
"log",
"ndk",
"ndk-context",
"ndk-sys",
"objc",
"once_cell",
2023-07-09 00:55:23 +00:00
"parking_lot",
2023-02-21 07:58:47 +00:00
"png",
"raw-window-handle",
"scopeguard",
"serde",
2023-05-04 15:12:11 +00:00
"tao-macros",
2023-02-21 07:58:47 +00:00
"unicode-segmentation",
2023-05-04 15:12:11 +00:00
"uuid",
2023-09-02 05:15:48 +00:00
"windows 0.39.0",
2023-02-21 07:58:47 +00:00
"windows-implement",
"x11-dl",
]
2023-05-04 15:12:11 +00:00
[[package]]
name = "tao-macros"
2023-08-14 07:12:54 +00:00
version = "0.1.2"
2023-05-04 15:12:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-14 07:12:54 +00:00
checksum = "ec114582505d158b669b136e6851f85840c109819d77c42bb7c0709f727d18c2"
2023-05-04 15:12:11 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
2023-07-29 02:28:15 +00:00
[[package]]
name = "tar"
2023-08-09 02:04:16 +00:00
version = "0.4.40"
2023-07-29 02:28:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-09 02:04:16 +00:00
checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
2023-07-29 02:28:15 +00:00
dependencies = [
"filetime",
"libc",
"xattr",
]
2023-05-04 15:12:11 +00:00
[[package]]
name = "target-lexicon"
2023-08-03 01:56:36 +00:00
version = "0.12.11"
2023-05-04 15:12:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-03 01:56:36 +00:00
checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a"
2023-05-04 15:12:11 +00:00
2023-02-21 07:58:47 +00:00
[[package]]
name = "tauri"
2023-09-29 02:19:40 +00:00
version = "1.5.0"
2023-09-02 05:15:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "72aee3277d0a0df01472cc704ab5934a51a1f25348838df17bfb3c5cb727880c"
2023-02-21 07:58:47 +00:00
dependencies = [
"anyhow",
2023-06-15 02:28:52 +00:00
"bytes",
2023-09-02 05:49:04 +00:00
"cocoa 0.24.1",
2023-02-21 07:58:47 +00:00
"dirs-next",
"embed_plist",
2023-09-02 05:15:48 +00:00
"encoding_rs",
"flate2",
2023-02-21 07:58:47 +00:00
"futures-util",
"glib",
"glob",
"gtk",
2023-09-02 05:15:48 +00:00
"heck 0.4.1",
2023-02-21 07:58:47 +00:00
"http",
2023-09-02 05:15:48 +00:00
"ignore",
"notify-rust",
2023-02-21 07:58:47 +00:00
"objc",
"once_cell",
2023-09-02 05:15:48 +00:00
"open",
"os_info",
2023-02-21 07:58:47 +00:00
"percent-encoding",
"rand 0.8.5",
"raw-window-handle",
2023-09-02 05:15:48 +00:00
"regex",
"reqwest",
2023-09-02 05:15:48 +00:00
"rfd",
"semver",
2023-02-21 07:58:47 +00:00
"serde",
"serde_json",
"serde_repr",
"serialize-to-javascript",
"state",
2023-09-02 05:15:48 +00:00
"sys-locale",
"tar",
2023-02-21 07:58:47 +00:00
"tauri-macros",
"tauri-runtime",
"tauri-runtime-wry",
2023-09-02 05:15:48 +00:00
"tauri-utils",
"tempfile",
2023-02-21 07:58:47 +00:00
"thiserror",
"tokio",
"url",
2023-05-04 15:12:11 +00:00
"uuid",
2023-02-21 07:58:47 +00:00
"webkit2gtk",
"webview2-com",
2023-09-02 05:15:48 +00:00
"windows 0.39.0",
2023-08-28 03:39:18 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "tauri-build"
2023-09-29 02:19:40 +00:00
version = "1.4.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "6a62b3327886e7ef2978adc668432f1cc53f14e1d46e7ae04f730f4d48584623"
2023-02-21 07:58:47 +00:00
dependencies = [
"anyhow",
"cargo_toml",
2023-09-29 02:19:40 +00:00
"dirs-next",
2023-09-02 05:15:48 +00:00
"heck 0.4.1",
2023-02-21 07:58:47 +00:00
"json-patch",
2023-04-17 07:22:24 +00:00
"semver",
2023-05-04 15:12:11 +00:00
"serde",
2023-02-21 07:58:47 +00:00
"serde_json",
2023-09-02 05:15:48 +00:00
"tauri-utils",
2023-05-04 15:12:11 +00:00
"tauri-winres",
2023-09-29 02:19:40 +00:00
"walkdir",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "tauri-codegen"
2023-09-29 02:19:40 +00:00
version = "1.4.1"
2023-09-02 05:15:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "7b3475e55acec0b4a50fb96435f19631fb58cbcd31923e1a213de5c382536bbb"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-09-10 09:25:35 +00:00
"base64 0.21.4",
2023-02-21 07:58:47 +00:00
"brotli",
"ico",
"json-patch",
"plist",
"png",
"proc-macro2",
"quote",
2023-09-02 05:15:48 +00:00
"regex",
2023-04-17 07:22:24 +00:00
"semver",
2023-02-21 07:58:47 +00:00
"serde",
"serde_json",
2023-09-28 01:22:38 +00:00
"sha2 0.10.8",
2023-09-02 05:15:48 +00:00
"tauri-utils",
2023-02-21 07:58:47 +00:00
"thiserror",
"time",
2023-05-04 15:12:11 +00:00
"uuid",
2023-02-21 07:58:47 +00:00
"walkdir",
]
[[package]]
name = "tauri-macros"
2023-09-29 02:19:40 +00:00
version = "1.4.1"
2023-09-02 05:15:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "613740228de92d9196b795ac455091d3a5fbdac2654abb8bb07d010b62ab43af"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-09-02 05:15:48 +00:00
"heck 0.4.1",
2023-02-21 07:58:47 +00:00
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-02-21 07:58:47 +00:00
"tauri-codegen",
2023-09-02 05:15:48 +00:00
"tauri-utils",
2023-07-29 02:28:15 +00:00
]
2023-07-03 04:49:49 +00:00
[[package]]
name = "tauri-plugin-autostart"
2023-09-02 05:15:48 +00:00
version = "0.0.0"
2023-09-29 02:19:40 +00:00
source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9af4c3727c0d9c7a88b27cb80a6482a5aa461fc5"
2023-07-03 04:49:49 +00:00
dependencies = [
"auto-launch",
"log",
"serde",
"serde_json",
"tauri",
"thiserror",
]
2023-07-29 02:28:15 +00:00
[[package]]
2023-09-02 05:15:48 +00:00
name = "tauri-plugin-single-instance"
version = "0.0.0"
2023-09-29 02:19:40 +00:00
source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9af4c3727c0d9c7a88b27cb80a6482a5aa461fc5"
2023-07-29 02:28:15 +00:00
dependencies = [
"log",
"serde",
"serde_json",
"tauri",
"thiserror",
2023-09-02 05:15:48 +00:00
"windows-sys 0.48.0",
"zbus",
2023-07-29 02:28:15 +00:00
]
[[package]]
2023-09-02 05:15:48 +00:00
name = "tauri-plugin-sql"
version = "0.0.0"
2023-09-29 02:19:40 +00:00
source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9af4c3727c0d9c7a88b27cb80a6482a5aa461fc5"
2023-07-29 02:28:15 +00:00
dependencies = [
2023-09-02 05:15:48 +00:00
"futures-core",
2023-07-29 02:28:15 +00:00
"log",
"serde",
"serde_json",
2023-09-02 05:15:48 +00:00
"sqlx",
2023-07-29 02:28:15 +00:00
"tauri",
"thiserror",
2023-09-02 05:15:48 +00:00
"time",
"tokio",
2023-07-29 02:28:15 +00:00
]
[[package]]
2023-09-02 05:15:48 +00:00
name = "tauri-plugin-store"
version = "0.0.0"
2023-09-29 02:19:40 +00:00
source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9af4c3727c0d9c7a88b27cb80a6482a5aa461fc5"
2023-07-29 02:28:15 +00:00
dependencies = [
2023-09-02 05:15:48 +00:00
"log",
2023-07-29 02:28:15 +00:00
"serde",
2023-09-02 05:15:48 +00:00
"serde_json",
2023-07-29 02:28:15 +00:00
"tauri",
"thiserror",
]
[[package]]
2023-09-02 05:15:48 +00:00
name = "tauri-plugin-stronghold"
version = "0.0.0"
2023-09-29 02:19:40 +00:00
source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9af4c3727c0d9c7a88b27cb80a6482a5aa461fc5"
2023-07-29 02:28:15 +00:00
dependencies = [
2023-09-02 05:15:48 +00:00
"hex",
"iota-crypto 0.23.0",
"iota_stronghold",
"log",
"rand_chacha 0.3.1",
"rand_core 0.6.4",
2023-09-20 01:22:02 +00:00
"rust-argon2",
2023-07-29 02:28:15 +00:00
"serde",
"serde_json",
"tauri",
"thiserror",
2023-09-02 05:15:48 +00:00
"zeroize",
2023-07-29 02:28:15 +00:00
]
[[package]]
2023-09-02 05:15:48 +00:00
name = "tauri-plugin-upload"
version = "0.0.0"
2023-09-29 02:19:40 +00:00
source = "git+https://github.com/tauri-apps/plugins-workspace?branch=v1#9af4c3727c0d9c7a88b27cb80a6482a5aa461fc5"
2023-07-29 02:28:15 +00:00
dependencies = [
2023-09-02 05:15:48 +00:00
"futures-util",
2023-07-29 02:28:15 +00:00
"log",
2023-09-02 05:15:48 +00:00
"read-progress-stream",
"reqwest",
2023-07-22 08:32:34 +00:00
"serde",
"serde_json",
"tauri",
"thiserror",
"tokio",
"tokio-util",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "tauri-runtime"
2023-09-29 02:19:40 +00:00
version = "0.14.1"
2023-09-02 05:15:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "07f8e9e53e00e9f41212c115749e87d5cd2a9eebccafca77a19722eeecd56d43"
2023-02-21 07:58:47 +00:00
dependencies = [
"gtk",
"http",
"http-range",
"rand 0.8.5",
"raw-window-handle",
"serde",
"serde_json",
2023-09-02 05:15:48 +00:00
"tauri-utils",
2023-02-21 07:58:47 +00:00
"thiserror",
2023-05-04 15:12:11 +00:00
"url",
"uuid",
2023-09-02 05:15:48 +00:00
"webview2-com",
"windows 0.39.0",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "tauri-runtime-wry"
2023-09-29 02:19:40 +00:00
version = "0.14.1"
2023-09-02 05:15:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "8141d72b6b65f2008911e9ef5b98a68d1e3413b7a1464e8f85eb3673bb19a895"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-09-02 05:49:04 +00:00
"cocoa 0.24.1",
2023-02-21 07:58:47 +00:00
"gtk",
"percent-encoding",
"rand 0.8.5",
"raw-window-handle",
"tauri-runtime",
2023-09-02 05:15:48 +00:00
"tauri-utils",
2023-05-04 15:12:11 +00:00
"uuid",
2023-02-21 07:58:47 +00:00
"webkit2gtk",
"webview2-com",
2023-09-02 05:15:48 +00:00
"windows 0.39.0",
2023-02-21 07:58:47 +00:00
"wry",
]
[[package]]
name = "tauri-utils"
2023-09-29 02:19:40 +00:00
version = "1.5.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-29 02:19:40 +00:00
checksum = "34d55e185904a84a419308d523c2c6891d5e2dbcee740c4997eb42e75a7b0f46"
2023-02-21 07:58:47 +00:00
dependencies = [
"brotli",
"ctor",
2023-06-15 02:28:52 +00:00
"dunce",
2023-02-21 07:58:47 +00:00
"glob",
2023-09-02 05:15:48 +00:00
"heck 0.4.1",
2023-09-29 02:19:40 +00:00
"html5ever 0.26.0",
2023-02-21 07:58:47 +00:00
"infer",
"json-patch",
2023-09-29 02:19:40 +00:00
"kuchikiki",
"log",
2023-02-21 07:58:47 +00:00
"memchr",
"phf 0.10.1",
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"semver",
2023-02-21 07:58:47 +00:00
"serde",
"serde_json",
"serde_with",
"thiserror",
"url",
"walkdir",
2023-09-02 05:15:48 +00:00
"windows 0.39.0",
2023-02-21 07:58:47 +00:00
]
2023-05-04 15:12:11 +00:00
[[package]]
name = "tauri-winres"
2023-05-14 14:24:07 +00:00
version = "0.1.1"
2023-05-04 15:12:11 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 14:24:07 +00:00
checksum = "5993dc129e544393574288923d1ec447c857f3f644187f4fbf7d9a875fbfc4fb"
2023-05-04 15:12:11 +00:00
dependencies = [
2023-05-14 14:24:07 +00:00
"embed-resource",
2023-09-10 09:25:35 +00:00
"toml 0.7.8",
2023-06-01 09:51:00 +00:00
]
2023-07-29 02:28:15 +00:00
[[package]]
name = "tauri-winrt-notification"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f5bff1d532fead7c43324a0fa33643b8621a47ce2944a633be4cb6c0240898f"
dependencies = [
"quick-xml 0.23.1",
"windows 0.39.0",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "tempfile"
2023-08-19 01:56:19 +00:00
version = "3.8.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:56:19 +00:00
checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef"
2023-02-21 07:58:47 +00:00
dependencies = [
"cfg-if",
2023-09-28 01:22:38 +00:00
"fastrand 2.0.1",
2023-04-17 07:22:24 +00:00
"redox_syscall 0.3.5",
2023-09-28 01:22:38 +00:00
"rustix 0.38.14",
2023-06-15 02:28:52 +00:00
"windows-sys 0.48.0",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "tendril"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
dependencies = [
"futf",
"mac",
"utf-8",
]
[[package]]
name = "thin-slice"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c"
[[package]]
name = "thiserror"
2023-09-28 01:22:38 +00:00
version = "1.0.49"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4"
2023-02-21 07:58:47 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-09-28 01:22:38 +00:00
version = "1.0.49"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "thread_local"
2023-04-17 07:22:24 +00:00
version = "1.1.7"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-04-17 07:22:24 +00:00
"cfg-if",
2023-02-21 07:58:47 +00:00
"once_cell",
]
[[package]]
name = "time"
2023-09-28 01:22:38 +00:00
version = "0.3.29"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "426f806f4089c493dcac0d24c29c01e2c38baf8e30f1b716ee37e83d200b18fe"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-08-03 01:56:36 +00:00
"deranged",
2023-07-17 08:21:56 +00:00
"itoa 1.0.9",
2023-02-21 07:58:47 +00:00
"serde",
2023-06-15 02:28:52 +00:00
"time-core",
2023-02-21 07:58:47 +00:00
"time-macros",
]
2023-06-15 02:28:52 +00:00
[[package]]
name = "time-core"
2023-09-28 01:22:38 +00:00
version = "0.1.2"
2023-06-15 02:28:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2023-06-15 02:28:52 +00:00
2023-02-21 07:58:47 +00:00
[[package]]
name = "time-macros"
2023-09-28 01:22:38 +00:00
version = "0.2.15"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"
2023-06-15 02:28:52 +00:00
dependencies = [
"time-core",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
2023-08-17 08:11:40 +00:00
version = "1.32.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-17 08:11:40 +00:00
checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 10:38:54 +00:00
"backtrace",
2023-02-21 07:58:47 +00:00
"bytes",
"libc",
"mio",
"num_cpus",
"pin-project-lite",
2023-09-20 01:22:02 +00:00
"socket2 0.5.4",
"tokio-macros",
2023-05-04 15:12:11 +00:00
"windows-sys 0.48.0",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "tokio-macros"
2023-05-04 15:12:11 +00:00
version = "2.1.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-04 15:12:11 +00:00
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
]
2023-09-02 05:15:48 +00:00
[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
dependencies = [
"native-tls",
"tokio",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "tokio-stream"
2023-05-04 15:12:11 +00:00
version = "0.1.14"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-04 15:12:11 +00:00
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
2023-02-21 07:58:47 +00:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-util"
2023-09-28 01:22:38 +00:00
version = "0.7.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
2023-09-02 05:15:48 +00:00
[[package]]
name = "toml"
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
dependencies = [
"serde",
]
2023-04-17 07:22:24 +00:00
[[package]]
name = "toml"
2023-09-10 09:25:35 +00:00
version = "0.7.8"
2023-04-17 07:22:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-10 09:25:35 +00:00
checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257"
2023-04-17 07:22:24 +00:00
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "toml_datetime"
2023-07-09 10:38:54 +00:00
version = "0.6.3"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
2023-04-17 07:22:24 +00:00
dependencies = [
"serde",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "toml_edit"
2023-09-10 09:25:35 +00:00
version = "0.19.15"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-10 09:25:35 +00:00
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-09-28 01:22:38 +00:00
"indexmap 2.0.1",
2023-04-17 07:22:24 +00:00
"serde",
"serde_spanned",
2023-02-21 07:58:47 +00:00
"toml_datetime",
2023-04-17 07:22:24 +00:00
"winnow",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2023-02-21 07:58:47 +00:00
[[package]]
name = "tracing"
version = "0.1.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
"cfg-if",
2023-07-09 00:55:23 +00:00
"log",
2023-02-21 07:58:47 +00:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-07-09 10:38:54 +00:00
version = "0.1.26"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "tracing-core"
2023-05-14 14:24:07 +00:00
version = "0.1.31"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-14 14:24:07 +00:00
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2023-02-21 07:58:47 +00:00
dependencies = [
"once_cell",
"valuable",
]
[[package]]
name = "tracing-log"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2023-05-04 15:12:11 +00:00
version = "0.3.17"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-04 15:12:11 +00:00
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
2023-02-21 07:58:47 +00:00
dependencies = [
"matchers",
"nu-ansi-term",
"once_cell",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
[[package]]
name = "treediff"
2023-05-04 15:12:11 +00:00
version = "4.0.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-04 15:12:11 +00:00
checksum = "52984d277bdf2a751072b5df30ec0377febdb02f7696d64c2d7d54630bac4303"
2023-02-21 07:58:47 +00:00
dependencies = [
"serde_json",
]
[[package]]
name = "try-lock"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2023-02-21 07:58:47 +00:00
[[package]]
name = "typenum"
2023-09-20 01:22:02 +00:00
version = "1.17.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2023-02-21 07:58:47 +00:00
2023-04-14 09:15:06 +00:00
[[package]]
name = "uds_windows"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d"
dependencies = [
"tempfile",
"winapi",
]
2023-09-05 05:46:00 +00:00
[[package]]
name = "unicase"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
dependencies = [
"version_check",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "unicode-bidi"
2023-04-17 07:22:24 +00:00
version = "0.3.13"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2023-02-21 07:58:47 +00:00
[[package]]
name = "unicode-ident"
2023-09-20 01:22:02 +00:00
version = "1.0.12"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2023-02-21 07:58:47 +00:00
[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-segmentation"
version = "1.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
[[package]]
name = "unicode-width"
2023-09-20 01:22:02 +00:00
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2023-02-21 07:58:47 +00:00
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2023-07-09 00:55:23 +00:00
[[package]]
name = "universal-hash"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
dependencies = [
"generic-array",
"subtle",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "untrusted"
version = "0.7.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2023-02-21 07:58:47 +00:00
[[package]]
name = "url"
2023-09-02 01:50:54 +00:00
version = "2.4.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 01:50:54 +00:00
checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
2023-02-21 07:58:47 +00:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
"serde",
]
[[package]]
name = "utf-8"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2023-02-21 07:58:47 +00:00
[[package]]
name = "uuid"
2023-07-17 08:21:56 +00:00
version = "1.4.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-06-15 02:28:52 +00:00
"getrandom 0.2.10",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2023-09-02 05:15:48 +00:00
[[package]]
name = "version-compare"
version = "0.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c18c859eead79d8b95d09e4678566e8d70105c4e7b251f707a03df32442661b"
2023-02-21 07:58:47 +00:00
[[package]]
name = "version-compare"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2023-05-14 14:24:07 +00:00
[[package]]
name = "vswhom"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
dependencies = [
"libc",
"vswhom-sys",
]
[[package]]
name = "vswhom-sys"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3b17ae1f6c8a2b28506cd96d412eebf83b4a0ff2cbefeeb952f2f9dfa44ba18"
dependencies = [
"cc",
"libc",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "waker-fn"
2023-09-28 01:22:38 +00:00
version = "1.1.1"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
2023-04-14 09:15:06 +00:00
2023-02-21 07:58:47 +00:00
[[package]]
name = "walkdir"
2023-09-06 00:46:31 +00:00
version = "2.4.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-06 00:46:31 +00:00
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
2023-02-21 07:58:47 +00:00
dependencies = [
"same-file",
"winapi-util",
]
[[package]]
name = "want"
2023-06-15 02:28:52 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
dependencies = [
"try-lock",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
2023-06-15 02:28:52 +00:00
version = "0.2.87"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
2023-02-21 07:58:47 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-06-15 02:28:52 +00:00
version = "0.2.87"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
2023-02-21 07:58:47 +00:00
dependencies = [
"bumpalo",
"log",
2023-05-04 15:12:11 +00:00
"once_cell",
2023-02-21 07:58:47 +00:00
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-02-21 07:58:47 +00:00
"wasm-bindgen-shared",
]
2023-04-19 03:13:34 +00:00
[[package]]
name = "wasm-bindgen-futures"
2023-06-15 02:28:52 +00:00
version = "0.4.37"
2023-04-19 03:13:34 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
2023-04-19 03:13:34 +00:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "wasm-bindgen-macro"
2023-06-15 02:28:52 +00:00
version = "0.2.87"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
2023-02-21 07:58:47 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-06-15 02:28:52 +00:00
version = "0.2.87"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-02-21 07:58:47 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-06-15 02:28:52 +00:00
version = "0.2.87"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2023-02-21 07:58:47 +00:00
[[package]]
name = "wasm-streams"
2023-08-22 09:34:47 +00:00
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-22 09:34:47 +00:00
checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7"
dependencies = [
"futures-util",
"js-sys",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "web-sys"
2023-06-15 02:28:52 +00:00
version = "0.3.64"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-15 02:28:52 +00:00
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
2023-02-21 07:58:47 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webkit2gtk"
2023-09-02 05:15:48 +00:00
version = "0.18.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "b8f859735e4a452aeb28c6c56a852967a8a76c8eb1cc32dbf931ad28a13d6370"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"cairo-rs",
"gdk",
"gdk-sys",
"gio",
"gio-sys",
"glib",
"glib-sys",
"gobject-sys",
"gtk",
"gtk-sys",
"javascriptcore-rs",
"libc",
"once_cell",
2023-09-02 05:15:48 +00:00
"soup2",
2023-02-21 07:58:47 +00:00
"webkit2gtk-sys",
]
[[package]]
name = "webkit2gtk-sys"
2023-09-02 05:15:48 +00:00
version = "0.18.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "4d76ca6ecc47aeba01ec61e480139dda143796abcae6f83bcddf50d6b5b1dcf3"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-09-02 05:15:48 +00:00
"atk-sys",
2023-07-09 00:55:23 +00:00
"bitflags 1.3.2",
2023-02-21 07:58:47 +00:00
"cairo-sys-rs",
2023-09-02 05:15:48 +00:00
"gdk-pixbuf-sys",
2023-02-21 07:58:47 +00:00
"gdk-sys",
"gio-sys",
"glib-sys",
"gobject-sys",
"gtk-sys",
"javascriptcore-rs-sys",
"libc",
2023-09-02 05:15:48 +00:00
"pango-sys",
2023-02-21 07:58:47 +00:00
"pkg-config",
2023-09-02 05:15:48 +00:00
"soup2-sys",
"system-deps 6.1.1",
2023-02-21 07:58:47 +00:00
]
2023-09-04 07:35:57 +00:00
[[package]]
name = "webpage"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8598785beeb5af95abe95e7bb20c7e747d1188347080d6811d5a56d2b9a5f368"
dependencies = [
"curl",
"html5ever 0.26.0",
"markup5ever_rcdom",
"serde",
"serde_json",
]
[[package]]
name = "webpki-roots"
2023-07-17 08:21:56 +00:00
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-17 08:21:56 +00:00
checksum = "b291546d5d9d1eab74f069c77749f2cb8504a12caa20f0f2de93ddbf6f411888"
dependencies = [
2023-07-17 08:21:56 +00:00
"rustls-webpki",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "webview2-com"
2023-09-02 05:15:48 +00:00
version = "0.19.1"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "b4a769c9f1a64a8734bde70caafac2b96cada12cd4aefa49196b3a386b8b4178"
2023-02-21 07:58:47 +00:00
dependencies = [
"webview2-com-macros",
"webview2-com-sys",
2023-09-02 05:15:48 +00:00
"windows 0.39.0",
2023-02-21 07:58:47 +00:00
"windows-implement",
]
[[package]]
name = "webview2-com-macros"
2023-09-02 05:15:48 +00:00
version = "0.6.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "eaebe196c01691db62e9e4ca52c5ef1e4fd837dcae27dae3ada599b5a8fd05ac"
2023-02-21 07:58:47 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-09-02 05:15:48 +00:00
"syn 1.0.109",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "webview2-com-sys"
2023-09-02 05:15:48 +00:00
version = "0.19.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "aac48ef20ddf657755fdcda8dfed2a7b4fc7e4581acce6fe9b88c3d64f29dee7"
2023-02-21 07:58:47 +00:00
dependencies = [
"regex",
"serde",
"serde_json",
"thiserror",
2023-09-02 05:15:48 +00:00
"windows 0.39.0",
2023-02-21 07:58:47 +00:00
"windows-bindgen",
"windows-metadata",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "whoami"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50"
2023-02-21 07:58:47 +00:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
2023-09-28 01:22:38 +00:00
version = "0.1.6"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-28 01:22:38 +00:00
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
2023-02-21 07:58:47 +00:00
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2023-09-02 05:49:04 +00:00
[[package]]
name = "window-vibrancy"
2023-09-10 09:25:35 +00:00
version = "0.4.1"
source = "git+https://github.com/tauri-apps/window-vibrancy?branch=dev#ce6e299a3bc98bd1d0f322c3b922fe8634f09e8e"
2023-09-02 05:49:04 +00:00
dependencies = [
"cocoa 0.25.0",
"objc",
"raw-window-handle",
"windows-sys 0.48.0",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "windows"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e53b97a83176b369b0eb2fd8158d4ae215357d02df9d40c1e1bf1879c5482c80"
dependencies = [
"windows_aarch64_msvc 0.36.1",
"windows_i686_gnu 0.36.1",
"windows_i686_msvc 0.36.1",
"windows_x86_64_gnu 0.36.1",
"windows_x86_64_msvc 0.36.1",
]
2023-09-02 05:15:48 +00:00
[[package]]
name = "windows"
version = "0.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57b543186b344cc61c85b5aab0d2e3adf4e0f99bc076eff9aa5927bcc0b8a647"
dependencies = [
"windows_aarch64_msvc 0.37.0",
"windows_i686_gnu 0.37.0",
"windows_i686_msvc 0.37.0",
"windows_x86_64_gnu 0.37.0",
"windows_x86_64_msvc 0.37.0",
]
2023-07-29 02:28:15 +00:00
[[package]]
name = "windows"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a"
dependencies = [
2023-09-02 05:15:48 +00:00
"windows-implement",
2023-07-29 02:28:15 +00:00
"windows_aarch64_msvc 0.39.0",
"windows_i686_gnu 0.39.0",
"windows_i686_msvc 0.39.0",
"windows_x86_64_gnu 0.39.0",
"windows_x86_64_msvc 0.39.0",
]
2023-04-17 07:22:24 +00:00
[[package]]
name = "windows"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
dependencies = [
2023-08-19 01:56:19 +00:00
"windows-targets 0.48.5",
2023-04-17 07:22:24 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "windows-bindgen"
2023-09-02 05:15:48 +00:00
version = "0.39.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "68003dbd0e38abc0fb85b939240f4bce37c43a5981d3df37ccbaaa981b47cb41"
2023-02-21 07:58:47 +00:00
dependencies = [
"windows-metadata",
"windows-tokens",
]
[[package]]
name = "windows-implement"
2023-09-02 05:15:48 +00:00
version = "0.39.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "ba01f98f509cb5dc05f4e5fc95e535f78260f15fea8fe1a8abdd08f774f1cee7"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-09-02 05:15:48 +00:00
"windows-tokens",
2023-02-21 07:58:47 +00:00
]
[[package]]
2023-09-02 05:15:48 +00:00
name = "windows-metadata"
version = "0.39.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "9ee5e275231f07c6e240d14f34e1b635bf1faa1c76c57cfd59a5cdb9848e4278"
2023-02-21 07:58:47 +00:00
[[package]]
2023-09-02 05:15:48 +00:00
name = "windows-sys"
version = "0.42.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
2023-04-17 07:22:24 +00:00
"windows-targets 0.42.2",
2023-04-14 09:15:06 +00:00
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-08-19 01:56:19 +00:00
"windows-targets 0.48.5",
2023-02-21 07:58:47 +00:00
]
[[package]]
name = "windows-targets"
2023-04-17 07:22:24 +00:00
version = "0.42.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-04-17 07:22:24 +00:00
"windows_aarch64_gnullvm 0.42.2",
"windows_aarch64_msvc 0.42.2",
"windows_i686_gnu 0.42.2",
"windows_i686_msvc 0.42.2",
"windows_x86_64_gnu 0.42.2",
"windows_x86_64_gnullvm 0.42.2",
"windows_x86_64_msvc 0.42.2",
2023-02-21 07:58:47 +00:00
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "windows-targets"
2023-08-19 01:56:19 +00:00
version = "0.48.5"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:56:19 +00:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-04-14 09:15:06 +00:00
dependencies = [
2023-08-19 01:56:19 +00:00
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
2023-04-14 09:15:06 +00:00
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "windows-tokens"
2023-09-02 05:15:48 +00:00
version = "0.39.0"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-02 05:15:48 +00:00
checksum = "f838de2fe15fe6bac988e74b798f26499a8b21a9d97edec321e79b28d1d7f597"
2023-02-21 07:58:47 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-04-17 07:22:24 +00:00
version = "0.42.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2023-02-21 07:58:47 +00:00
2023-04-14 09:15:06 +00:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-08-19 01:56:19 +00:00
version = "0.48.5"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:56:19 +00:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-04-14 09:15:06 +00:00
2023-07-09 00:55:23 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2023-09-02 05:15:48 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2623277cb2d1c216ba3b578c0f3cf9cdebeddb6e66b1b218bb33596ea7769c3a"
2023-07-29 02:28:15 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2"
2023-02-21 07:58:47 +00:00
[[package]]
name = "windows_aarch64_msvc"
2023-04-17 07:22:24 +00:00
version = "0.42.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2023-02-21 07:58:47 +00:00
2023-04-14 09:15:06 +00:00
[[package]]
name = "windows_aarch64_msvc"
2023-08-19 01:56:19 +00:00
version = "0.48.5"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:56:19 +00:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-04-14 09:15:06 +00:00
2023-07-09 00:55:23 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2023-09-02 05:15:48 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3925fd0b0b804730d44d4b6278c50f9699703ec49bcd628020f46f4ba07d9e1"
2023-07-29 02:28:15 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b"
2023-02-21 07:58:47 +00:00
[[package]]
name = "windows_i686_gnu"
2023-04-17 07:22:24 +00:00
version = "0.42.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2023-02-21 07:58:47 +00:00
2023-04-14 09:15:06 +00:00
[[package]]
name = "windows_i686_gnu"
2023-08-19 01:56:19 +00:00
version = "0.48.5"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:56:19 +00:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-04-14 09:15:06 +00:00
2023-07-09 00:55:23 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2023-09-02 05:15:48 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce907ac74fe331b524c1298683efbf598bb031bc84d5e274db2083696d07c57c"
2023-07-29 02:28:15 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106"
2023-02-21 07:58:47 +00:00
[[package]]
name = "windows_i686_msvc"
2023-04-17 07:22:24 +00:00
version = "0.42.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2023-02-21 07:58:47 +00:00
2023-04-14 09:15:06 +00:00
[[package]]
name = "windows_i686_msvc"
2023-08-19 01:56:19 +00:00
version = "0.48.5"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:56:19 +00:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-04-14 09:15:06 +00:00
2023-07-09 00:55:23 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2023-09-02 05:15:48 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2babfba0828f2e6b32457d5341427dcbb577ceef556273229959ac23a10af33d"
2023-07-29 02:28:15 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65"
2023-02-21 07:58:47 +00:00
[[package]]
name = "windows_x86_64_gnu"
2023-04-17 07:22:24 +00:00
version = "0.42.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2023-02-21 07:58:47 +00:00
2023-04-14 09:15:06 +00:00
[[package]]
name = "windows_x86_64_gnu"
2023-08-19 01:56:19 +00:00
version = "0.48.5"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:56:19 +00:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-04-14 09:15:06 +00:00
2023-02-21 07:58:47 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-04-17 07:22:24 +00:00
version = "0.42.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2023-02-21 07:58:47 +00:00
2023-04-14 09:15:06 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-19 01:56:19 +00:00
version = "0.48.5"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:56:19 +00:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-04-14 09:15:06 +00:00
2023-07-09 00:55:23 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
2023-09-02 05:15:48 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4dd6dc7df2d84cf7b33822ed5b86318fb1781948e9663bacd047fc9dd52259d"
2023-07-29 02:28:15 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809"
2023-02-21 07:58:47 +00:00
[[package]]
name = "windows_x86_64_msvc"
2023-04-17 07:22:24 +00:00
version = "0.42.2"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-04-17 07:22:24 +00:00
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2023-02-21 07:58:47 +00:00
2023-04-14 09:15:06 +00:00
[[package]]
name = "windows_x86_64_msvc"
2023-08-19 01:56:19 +00:00
version = "0.48.5"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 01:56:19 +00:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-04-14 09:15:06 +00:00
2023-04-17 07:22:24 +00:00
[[package]]
name = "winnow"
2023-08-25 02:50:04 +00:00
version = "0.5.15"
2023-04-17 07:22:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-25 02:50:04 +00:00
checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc"
2023-04-17 07:22:24 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "winreg"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
dependencies = [
"winapi",
]
2023-05-14 14:24:07 +00:00
[[package]]
name = "winreg"
2023-08-28 03:39:18 +00:00
version = "0.50.0"
2023-05-14 14:24:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 03:39:18 +00:00
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
2023-05-14 14:24:07 +00:00
dependencies = [
"cfg-if",
2023-08-28 03:39:18 +00:00
"windows-sys 0.48.0",
2023-05-14 14:24:07 +00:00
]
2023-08-22 09:34:47 +00:00
[[package]]
name = "winreg"
2023-08-28 03:39:18 +00:00
version = "0.51.0"
2023-08-22 09:34:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 03:39:18 +00:00
checksum = "937f3df7948156640f46aacef17a70db0de5917bda9c92b0f751f3a955b588fc"
2023-08-22 09:34:47 +00:00
dependencies = [
"cfg-if",
"windows-sys 0.48.0",
]
2023-02-21 07:58:47 +00:00
[[package]]
name = "wry"
2023-09-20 01:22:02 +00:00
version = "0.24.4"
2023-02-21 07:58:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-20 01:22:02 +00:00
checksum = "88ef04bdad49eba2e01f06e53688c8413bd6a87b0bc14b72284465cf96e3578e"
2023-02-21 07:58:47 +00:00
dependencies = [
2023-09-02 05:15:48 +00:00
"base64 0.13.1",
2023-02-21 07:58:47 +00:00
"block",
2023-09-02 05:49:04 +00:00
"cocoa 0.24.1",
"core-graphics 0.22.3",
2023-02-21 07:58:47 +00:00
"crossbeam-channel",
"dunce",
"gdk",
"gio",
"glib",
"gtk",
2023-09-04 07:35:57 +00:00
"html5ever 0.25.2",
2023-02-21 07:58:47 +00:00
"http",
2023-09-02 05:15:48 +00:00
"kuchiki",
2023-02-21 07:58:47 +00:00
"libc",
"log",
"objc",
"objc_id",
"once_cell",
"serde",
"serde_json",
2023-09-28 01:22:38 +00:00
"sha2 0.10.8",
2023-09-02 05:15:48 +00:00
"soup2",
2023-02-21 07:58:47 +00:00
"tao",
"thiserror",
"url",
"webkit2gtk",
"webkit2gtk-sys",
"webview2-com",
2023-09-02 05:15:48 +00:00
"windows 0.39.0",
2023-02-21 07:58:47 +00:00
"windows-implement",
]
[[package]]
name = "x11"
version = "2.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
dependencies = [
"libc",
"pkg-config",
]
[[package]]
name = "x11-dl"
version = "2.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
dependencies = [
"libc",
"once_cell",
"pkg-config",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "x25519-dalek"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a0c105152107e3b96f6a00a65e86ce82d9b125230e1c4302940eca58ff71f4f"
dependencies = [
"curve25519-dalek",
"rand_core 0.5.1",
"zeroize",
]
2023-07-29 02:28:15 +00:00
[[package]]
name = "xattr"
2023-08-09 02:04:16 +00:00
version = "1.0.1"
2023-07-29 02:28:15 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-09 02:04:16 +00:00
checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985"
2023-07-29 02:28:15 +00:00
dependencies = [
"libc",
]
2023-05-04 15:12:11 +00:00
[[package]]
name = "xdg-home"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd"
dependencies = [
2023-09-02 01:50:54 +00:00
"nix 0.26.4",
2023-05-04 15:12:11 +00:00
"winapi",
]
2023-09-04 07:35:57 +00:00
[[package]]
name = "xml5ever"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4034e1d05af98b51ad7214527730626f019682d797ba38b51689212118d8e650"
dependencies = [
"log",
"mac",
"markup5ever 0.11.0",
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "zbus"
2023-07-09 10:38:54 +00:00
version = "3.14.1"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948"
2023-04-14 09:15:06 +00:00
dependencies = [
"async-broadcast",
"async-executor",
"async-fs",
"async-io",
"async-lock",
2023-07-09 10:38:54 +00:00
"async-process",
2023-04-14 09:15:06 +00:00
"async-recursion",
"async-task",
"async-trait",
2023-07-09 10:38:54 +00:00
"blocking",
2023-04-14 09:15:06 +00:00
"byteorder",
"derivative",
"enumflags2",
2023-09-28 01:22:38 +00:00
"event-listener 2.5.3",
2023-04-14 09:15:06 +00:00
"futures-core",
"futures-sink",
"futures-util",
"hex",
2023-09-02 01:50:54 +00:00
"nix 0.26.4",
2023-04-14 09:15:06 +00:00
"once_cell",
"ordered-stream",
"rand 0.8.5",
"serde",
"serde_repr",
"sha1",
"static_assertions",
"tracing",
"uds_windows",
"winapi",
2023-05-04 15:12:11 +00:00
"xdg-home",
2023-04-14 09:15:06 +00:00
"zbus_macros",
"zbus_names",
"zvariant",
]
[[package]]
name = "zbus_macros"
2023-07-09 10:38:54 +00:00
version = "3.14.1"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d"
2023-04-14 09:15:06 +00:00
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
"regex",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-04-14 09:15:06 +00:00
"zvariant_utils",
]
[[package]]
name = "zbus_names"
2023-07-09 10:38:54 +00:00
version = "2.6.0"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9"
2023-04-14 09:15:06 +00:00
dependencies = [
"serde",
"static_assertions",
"zvariant",
]
2023-07-09 00:55:23 +00:00
[[package]]
name = "zeroize"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
dependencies = [
"proc-macro2",
"quote",
2023-09-20 01:22:02 +00:00
"syn 2.0.37",
2023-07-09 00:55:23 +00:00
]
2023-04-14 09:15:06 +00:00
[[package]]
name = "zvariant"
2023-07-09 10:38:54 +00:00
version = "3.15.0"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c"
2023-04-14 09:15:06 +00:00
dependencies = [
"byteorder",
"enumflags2",
"libc",
"serde",
"static_assertions",
"zvariant_derive",
]
[[package]]
name = "zvariant_derive"
2023-07-09 10:38:54 +00:00
version = "3.15.0"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd"
2023-04-14 09:15:06 +00:00
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-04-14 09:15:06 +00:00
"zvariant_utils",
]
[[package]]
name = "zvariant_utils"
2023-07-09 10:38:54 +00:00
version = "1.0.1"
2023-04-14 09:15:06 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-09 10:38:54 +00:00
checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200"
2023-04-14 09:15:06 +00:00
dependencies = [
"proc-macro2",
"quote",
2023-04-17 07:22:24 +00:00
"syn 1.0.109",
2023-04-14 09:15:06 +00:00
]