forked from meli/meli
1
Fork 0
meli/Cargo.lock

2629 lines
64 KiB
Plaintext
Raw Permalink Normal View History

2019-09-28 10:42:51 +03:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-09-08 16:20:02 +03:00
version = 3
2023-06-05 19:37:03 +03:00
[[package]]
name = "abnf-core"
2023-07-04 21:40:51 +03:00
version = "0.6.0"
2023-06-05 19:37:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 21:40:51 +03:00
checksum = "ec182d1f071b906a9f59269c89af101515a5cbe58f723eb6717e7fe7445c0dea"
2023-06-05 19:37:03 +03:00
dependencies = [
"nom",
]
[[package]]
name = "adler"
2022-05-02 15:44:39 +03:00
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2019-09-28 10:42:51 +03:00
[[package]]
name = "ahash"
version = "0.8.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
2022-05-02 15:44:39 +03:00
dependencies = [
"cfg-if 1.0.0",
2022-05-02 15:44:39 +03:00
"once_cell",
"version_check",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "aho-corasick"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
dependencies = [
"memchr",
]
[[package]]
name = "allocator-api2"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56fc6cf8dc8c4158eed8649f9b8b0ea1518eb62b544fe9490d66fa0b349eafe9"
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2022-09-10 19:32:51 +03:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2019-09-28 10:42:51 +03:00
[[package]]
2020-09-13 16:34:07 +03:00
name = "async-channel"
version = "1.8.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833"
2020-09-13 16:34:07 +03:00
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
2019-09-28 10:42:51 +03:00
2020-09-18 13:49:09 +03:00
[[package]]
name = "async-executor"
version = "1.5.1"
2020-09-18 13:49:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb"
2020-09-18 13:49:09 +03:00
dependencies = [
"async-lock",
2022-05-02 15:44:39 +03:00
"async-task",
2020-09-18 13:49:09 +03:00
"concurrent-queue",
"fastrand",
"futures-lite",
2022-05-02 15:44:39 +03:00
"slab",
2020-09-18 13:49:09 +03:00
]
[[package]]
name = "async-fs"
version = "1.6.0"
2020-09-18 13:49:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
2020-09-18 13:49:09 +03:00
dependencies = [
"async-lock",
"autocfg",
2020-09-18 13:49:09 +03:00
"blocking",
"futures-lite",
]
[[package]]
name = "async-io"
version = "1.13.0"
2020-09-18 13:49:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
2020-09-18 13:49:09 +03:00
dependencies = [
"async-lock",
"autocfg",
"cfg-if 1.0.0",
2020-09-18 13:49:09 +03:00
"concurrent-queue",
"futures-lite",
"log",
"parking",
"polling",
"rustix",
2022-05-02 15:44:39 +03:00
"slab",
"socket2",
2020-09-18 13:49:09 +03:00
"waker-fn",
]
[[package]]
name = "async-lock"
version = "2.7.0"
2020-09-18 13:49:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7"
2020-09-18 13:49:09 +03:00
dependencies = [
"event-listener",
]
[[package]]
name = "async-net"
version = "1.7.0"
2020-09-18 13:49:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4051e67316bc7eff608fe723df5d32ed639946adcd69e07df41fd42a7b411f1f"
2020-09-18 13:49:09 +03:00
dependencies = [
"async-io",
"autocfg",
2020-09-18 13:49:09 +03:00
"blocking",
"futures-lite",
]
[[package]]
name = "async-process"
version = "1.7.0"
2020-09-18 13:49:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9"
2020-09-18 13:49:09 +03:00
dependencies = [
"async-io",
"async-lock",
"autocfg",
2020-09-18 13:49:09 +03:00
"blocking",
2022-05-02 15:44:39 +03:00
"cfg-if 1.0.0",
2020-09-18 13:49:09 +03:00
"event-listener",
"futures-lite",
"rustix",
2020-09-18 13:49:09 +03:00
"signal-hook",
2023-07-04 21:40:51 +03:00
"windows-sys",
2020-09-18 13:49:09 +03:00
]
[[package]]
name = "async-stream"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
dependencies = [
"async-stream-impl",
"futures-core",
"pin-project-lite",
]
[[package]]
name = "async-stream-impl"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
dependencies = [
"proc-macro2",
2022-05-02 15:44:39 +03:00
"quote",
"syn 2.0.23",
]
2020-06-22 11:29:36 +03:00
[[package]]
name = "async-task"
version = "4.4.0"
2020-06-22 11:29:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
2020-06-22 11:29:36 +03:00
2019-09-28 10:42:51 +03:00
[[package]]
2020-09-13 16:34:07 +03:00
name = "atomic-waker"
version = "1.1.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
2019-09-28 10:42:51 +03:00
2022-09-10 19:32:51 +03:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi 0.1.19",
2022-09-10 19:32:51 +03:00
"libc",
"winapi 0.3.9",
]
2019-09-28 10:42:51 +03:00
[[package]]
2020-09-13 16:34:07 +03:00
name = "autocfg"
2022-05-02 15:44:39 +03:00
version = "1.1.0"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2019-12-03 13:25:49 +02:00
[[package]]
name = "base64"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2023-06-05 19:37:03 +03:00
[[package]]
name = "base64"
version = "0.21.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
[[package]]
name = "base64-compat"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a8d4d2746f89841e49230dd26917df1876050f95abafafbe34f47cb534b88d7"
dependencies = [
"byteorder",
]
[[package]]
name = "bitflags"
2022-05-02 15:44:39 +03:00
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2019-09-28 10:42:51 +03:00
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
2019-09-28 10:42:51 +03:00
[[package]]
name = "blocking"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
dependencies = [
2020-09-13 16:34:07 +03:00
"async-channel",
"async-lock",
2022-05-02 15:44:39 +03:00
"async-task",
2020-09-13 16:34:07 +03:00
"atomic-waker",
2020-09-18 13:49:09 +03:00
"fastrand",
2020-09-13 16:34:07 +03:00
"futures-lite",
"log",
]
2022-09-10 19:32:51 +03:00
[[package]]
name = "bufstream"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40e38929add23cdf8a366df9b0e088953150724bcbe5fc330b0d8eb3b328eec8"
[[package]]
name = "bumpalo"
version = "3.13.0"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
2022-09-10 19:32:51 +03:00
2019-12-03 13:25:49 +02:00
[[package]]
name = "byteorder"
version = "1.4.3"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2019-09-28 10:42:51 +03:00
[[package]]
name = "bytes"
version = "1.4.0"
2022-05-02 15:44:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
2022-05-02 15:44:39 +03:00
[[package]]
name = "castaway"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "a2698f953def977c68f935bb0dfa959375ad4638570e969e2f1e9f433cbf1af6"
2019-09-28 10:42:51 +03:00
[[package]]
name = "cc"
version = "1.0.79"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2020-09-13 16:34:07 +03:00
dependencies = [
"jobserver",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "cfg-if"
2020-02-09 19:52:00 +02:00
version = "0.1.10"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2019-09-28 10:42:51 +03:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2022-09-10 19:32:51 +03:00
[[package]]
name = "chrono"
version = "0.4.26"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
2022-09-10 19:32:51 +03:00
dependencies = [
"android-tzdata",
2022-09-10 19:32:51 +03:00
"iana-time-zone",
"js-sys",
"num-traits",
"wasm-bindgen",
"winapi 0.3.9",
]
2020-06-07 18:02:20 +03:00
[[package]]
name = "clap"
2022-05-02 15:44:39 +03:00
version = "2.34.0"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
2020-06-07 18:02:20 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"bitflags",
2020-06-07 18:02:20 +03:00
"textwrap",
"unicode-width",
]
[[package]]
name = "concurrent-queue"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
dependencies = [
"crossbeam-utils",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "core-foundation"
2022-05-02 15:44:39 +03:00
version = "0.9.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"core-foundation-sys",
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "core-foundation-sys"
version = "0.8.4"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2019-09-28 10:42:51 +03:00
[[package]]
name = "crc32fast"
2022-05-02 15:44:39 +03:00
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
"cfg-if 1.0.0",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "crossbeam"
2022-08-01 04:09:42 +03:00
version = "0.8.2"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-01 04:09:42 +03:00
checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"cfg-if 1.0.0",
2020-05-29 15:52:18 +03:00
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-epoch",
"crossbeam-queue",
2022-05-02 15:44:39 +03:00
"crossbeam-utils",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "crossbeam-channel"
version = "0.5.8"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"cfg-if 1.0.0",
"crossbeam-utils",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "crossbeam-deque"
version = "0.8.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"cfg-if 1.0.0",
2020-05-29 15:52:18 +03:00
"crossbeam-epoch",
2022-05-02 15:44:39 +03:00
"crossbeam-utils",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "crossbeam-epoch"
version = "0.9.15"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"autocfg",
2022-05-02 15:44:39 +03:00
"cfg-if 1.0.0",
"crossbeam-utils",
"memoffset 0.9.0",
2020-05-29 15:52:18 +03:00
"scopeguard",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "crossbeam-queue"
version = "0.3.8"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"cfg-if 1.0.0",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
dependencies = [
"cfg-if 1.0.0",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "curl"
2022-08-01 04:09:42 +03:00
version = "0.4.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-01 04:09:42 +03:00
checksum = "509bd11746c7ac09ebd19f0b17782eae80aadee26237658a6b4808afb5c11a22"
dependencies = [
"curl-sys",
"libc",
"openssl-probe",
"openssl-sys",
"schannel",
"socket2",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
]
[[package]]
name = "curl-sys"
version = "0.4.63+curl-8.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aeb0fef7046022a1e2ad67a004978f0e3cacb9e3123dc62ce768f92197b771dc"
dependencies = [
"cc",
"libc",
"libnghttp2-sys",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "data-encoding"
version = "2.4.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
2019-09-28 10:42:51 +03:00
[[package]]
name = "dbus"
version = "0.9.7"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b"
2019-09-28 10:42:51 +03:00
dependencies = [
"libc",
"libdbus-sys",
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
2022-05-02 15:44:39 +03:00
[[package]]
name = "dirs-next"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
"cfg-if 1.0.0",
"dirs-sys-next",
]
[[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 0.3.9",
]
2022-09-10 19:32:51 +03:00
[[package]]
name = "either"
version = "1.8.1"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2022-09-10 19:32:51 +03:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "encoding"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding-index-japanese",
"encoding-index-korean",
"encoding-index-simpchinese",
"encoding-index-singlebyte",
"encoding-index-tradchinese",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding-index-japanese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding_index_tests",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding-index-korean"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding_index_tests",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding-index-simpchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding_index_tests",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding-index-singlebyte"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding_index_tests",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding-index-tradchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"encoding_index_tests",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "encoding_index_tests"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
2019-09-28 10:42:51 +03:00
2019-12-03 13:25:49 +02:00
[[package]]
name = "encoding_rs"
version = "0.8.32"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
2019-09-28 10:42:51 +03:00
dependencies = [
"cfg-if 1.0.0",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "errno"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
dependencies = [
"errno-dragonfly",
"libc",
2023-07-04 21:40:51 +03:00
"windows-sys",
]
[[package]]
name = "errno-dragonfly"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
dependencies = [
"cc",
"libc",
]
2020-09-13 16:34:07 +03:00
[[package]]
name = "event-listener"
2022-08-01 04:09:42 +03:00
version = "2.5.3"
2020-09-13 16:34:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-01 04:09:42 +03:00
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2020-09-13 16:34:07 +03:00
2019-10-07 16:42:44 +03:00
[[package]]
name = "fallible-iterator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
2019-10-07 16:42:44 +03:00
[[package]]
name = "fallible-streaming-iterator"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
2019-10-07 16:42:44 +03:00
[[package]]
name = "fastrand"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "filetime"
version = "0.2.21"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153"
2019-09-28 10:42:51 +03:00
dependencies = [
"cfg-if 1.0.0",
2020-05-29 15:52:18 +03:00
"libc",
"redox_syscall 0.2.16",
2023-07-04 21:40:51 +03:00
"windows-sys",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "flate2"
version = "1.0.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
dependencies = [
"crc32fast",
"miniz_oxide",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "fnv"
2020-05-29 15:52:18 +03:00
version = "1.0.7"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2019-09-28 10:42:51 +03:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"foreign-types-shared",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2019-09-28 10:42:51 +03:00
[[package]]
name = "form_urlencoded"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
dependencies = [
"percent-encoding",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "fsevent"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"bitflags",
2020-05-29 15:52:18 +03:00
"fsevent-sys",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "fsevent-sys"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"bitflags",
2020-05-29 15:52:18 +03:00
"fuchsia-zircon-sys",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
2019-09-28 10:42:51 +03:00
2020-06-22 11:29:36 +03:00
[[package]]
name = "futures"
version = "0.3.28"
2020-06-22 11:29:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
2020-06-22 11:29:36 +03:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2019-12-03 13:25:49 +02:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "futures-channel"
version = "0.3.28"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"futures-core",
2020-06-22 11:29:36 +03:00
"futures-sink",
2019-12-03 13:25:49 +02:00
]
[[package]]
2020-02-09 19:52:00 +02:00
name = "futures-core"
version = "0.3.28"
2020-02-09 19:52:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
2020-02-09 19:52:00 +02:00
2020-06-22 11:29:36 +03:00
[[package]]
name = "futures-executor"
version = "0.3.28"
2020-06-22 11:29:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
2020-06-22 11:29:36 +03:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2020-02-09 19:52:00 +02:00
[[package]]
name = "futures-io"
version = "0.3.28"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
2019-12-03 13:25:49 +02:00
2020-09-13 16:34:07 +03:00
[[package]]
name = "futures-lite"
version = "1.13.0"
2020-09-13 16:34:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
2020-09-13 16:34:07 +03:00
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
2020-09-18 13:49:09 +03:00
"parking",
2020-09-13 16:34:07 +03:00
"pin-project-lite",
"waker-fn",
]
2020-06-22 11:29:36 +03:00
[[package]]
name = "futures-macro"
version = "0.3.28"
2020-06-22 11:29:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
2020-06-22 11:29:36 +03:00
dependencies = [
"proc-macro2",
2022-05-02 15:44:39 +03:00
"quote",
"syn 2.0.23",
2020-06-22 11:29:36 +03:00
]
2019-12-03 13:25:49 +02:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "futures-sink"
version = "0.3.28"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
2019-12-03 13:25:49 +02:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "futures-task"
version = "0.3.28"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
2019-12-03 13:25:49 +02:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "futures-util"
version = "0.3.28"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-06-22 11:29:36 +03:00
"futures-channel",
2020-05-29 15:52:18 +03:00
"futures-core",
"futures-io",
2020-06-22 11:29:36 +03:00
"futures-macro",
"futures-sink",
2020-05-29 15:52:18 +03:00
"futures-task",
2020-06-06 23:22:26 +03:00
"memchr",
2022-05-02 15:44:39 +03:00
"pin-project-lite",
2020-05-29 15:52:18 +03:00
"pin-utils",
"slab",
2019-12-03 13:25:49 +02:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "getrandom"
version = "0.2.10"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
2019-09-28 10:42:51 +03:00
dependencies = [
"cfg-if 1.0.0",
2020-05-29 15:52:18 +03:00
"libc",
"wasi",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "hashbrown"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
dependencies = [
"ahash",
"allocator-api2",
]
[[package]]
name = "hashlink"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f"
dependencies = [
"hashbrown 0.14.0",
]
2020-06-07 18:02:20 +03:00
[[package]]
name = "heck"
2022-05-02 15:44:39 +03:00
version = "0.3.3"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
2020-06-07 18:02:20 +03:00
dependencies = [
"unicode-segmentation",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "hermit-abi"
2022-05-02 15:44:39 +03:00
version = "0.1.19"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "hermit-abi"
2023-07-04 21:40:51 +03:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 21:40:51 +03:00
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
[[package]]
name = "home"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
dependencies = [
2023-07-04 21:40:51 +03:00
"windows-sys",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "http"
version = "0.2.9"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"bytes",
"fnv",
"itoa",
2019-12-03 13:25:49 +02:00
]
2022-09-10 19:32:51 +03:00
[[package]]
name = "iana-time-zone"
version = "0.1.57"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
2022-09-10 19:32:51 +03:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
2022-09-10 19:32:51 +03:00
"js-sys",
"wasm-bindgen",
"windows 0.48.0",
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
"cc",
2022-09-10 19:32:51 +03:00
]
[[package]]
name = "idna"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2023-06-05 19:37:03 +03:00
[[package]]
name = "imap-codec"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c0f449c37f0e9bc930b442ce83126bea3563c4487758ce2e47bb76be3773650"
2023-06-05 19:37:03 +03:00
dependencies = [
"abnf-core",
"base64 0.21.2",
"chrono",
"imap-types",
2023-07-04 21:40:51 +03:00
"log",
2023-06-05 19:37:03 +03:00
"nom",
2023-07-04 21:40:51 +03:00
"thiserror",
2023-06-05 19:37:03 +03:00
]
[[package]]
name = "imap-types"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b6eba9dbc66f3d8998674d0d502b24ef9f9cb905b10682ae57fd28925898293"
2023-06-05 19:37:03 +03:00
dependencies = [
"base64 0.21.2",
"chrono",
"thiserror",
]
[[package]]
name = "indexmap"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
"hashbrown 0.12.3",
"serde",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "inotify"
2020-06-06 23:22:26 +03:00
version = "0.7.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-06 23:22:26 +03:00
checksum = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"bitflags",
2020-05-29 15:52:18 +03:00
"inotify-sys",
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "inotify-sys"
2022-05-02 15:44:39 +03:00
version = "0.1.5"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "instant"
2022-05-02 15:44:39 +03:00
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "io-lifetimes"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
dependencies = [
2023-07-04 21:40:51 +03:00
"hermit-abi 0.3.2",
"libc",
2023-07-04 21:40:51 +03:00
"windows-sys",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "iovec"
2020-02-09 19:52:00 +02:00
version = "0.1.4"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "isahc"
2022-08-01 04:09:42 +03:00
version = "1.7.2"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-01 04:09:42 +03:00
checksum = "334e04b4d781f436dc315cb1e7515bd96826426345d498149e4bde36b67f8ee9"
dependencies = [
2022-05-02 15:44:39 +03:00
"async-channel",
"castaway",
"crossbeam-utils",
"curl",
"curl-sys",
"encoding_rs",
2022-05-02 15:44:39 +03:00
"event-listener",
"futures-lite",
"http",
"log",
"mime",
"once_cell",
2022-05-02 15:44:39 +03:00
"polling",
"serde",
"serde_json",
"slab",
"sluice",
"tracing",
"tracing-futures",
"url",
"waker-fn",
]
2019-09-28 10:42:51 +03:00
2019-12-03 13:25:49 +02:00
[[package]]
name = "itoa"
2023-07-04 21:40:51 +03:00
version = "1.0.8"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 21:40:51 +03:00
checksum = "62b02a5381cc465bd3041d84623d0fa3b66738b52b8e2fc3bab8ad63ab032f4a"
2020-09-13 16:34:07 +03:00
[[package]]
name = "jobserver"
version = "0.1.26"
2020-09-13 16:34:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
2020-09-13 16:34:07 +03:00
dependencies = [
"libc",
]
2019-12-03 13:25:49 +02:00
2022-09-10 19:32:51 +03:00
[[package]]
name = "js-sys"
version = "0.3.64"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
2022-09-10 19:32:51 +03:00
dependencies = [
"wasm-bindgen",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"winapi 0.2.8",
"winapi-build",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-09-28 10:42:51 +03:00
[[package]]
name = "lazycell"
2020-09-13 16:34:07 +03:00
version = "1.3.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2019-09-28 10:42:51 +03:00
[[package]]
name = "libc"
version = "0.2.147"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
2019-09-28 10:42:51 +03:00
[[package]]
name = "libdbus-sys"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06085512b750d640299b79be4bad3d2fa90a9c00b1fd9e1b46364f66f0485c72"
dependencies = [
"pkg-config",
]
2020-02-26 14:18:00 +02:00
[[package]]
name = "libloading"
version = "0.7.4"
2020-02-26 14:18:00 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
2020-02-26 14:18:00 +02:00
dependencies = [
"cfg-if 1.0.0",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2020-02-26 14:18:00 +02:00
]
[[package]]
name = "libnghttp2-sys"
2022-05-02 15:44:39 +03:00
version = "0.1.7+1.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "57ed28aba195b38d5ff02b9170cbff627e336a20925e43b4945390401c5dc93f"
dependencies = [
"cc",
"libc",
]
2019-10-07 16:42:44 +03:00
[[package]]
name = "libsqlite3-sys"
version = "0.25.2"
2019-10-07 16:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa"
2019-10-07 16:42:44 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"pkg-config",
"vcpkg",
2019-10-07 16:42:44 +03:00
]
[[package]]
name = "libz-sys"
version = "1.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db"
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "linkify"
2022-05-02 15:44:39 +03:00
version = "0.8.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "28d9967eb7d0bc31c39c6f52e8fce42991c0cd1f7a2078326f0b7a399a584c8d"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-06-06 23:22:26 +03:00
"memchr",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "linux-raw-sys"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
2019-10-07 16:42:44 +03:00
[[package]]
name = "log"
version = "0.4.19"
2019-10-07 16:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
2019-10-07 16:42:44 +03:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "mac-notification-sys"
version = "0.5.6"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e72d50edb17756489e79d52eb146927bec8eba9dd48faadf9ef08bca3791ad5"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cc",
2022-05-02 15:44:39 +03:00
"dirs-next",
2020-05-29 15:52:18 +03:00
"objc-foundation",
2022-05-02 15:44:39 +03:00
"objc_id",
"time",
2022-09-10 19:32:51 +03:00
]
[[package]]
name = "mailin"
version = "0.6.3"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d685cc697caba9c320fd0be79835c49af79009fccf05e13200d988b07a24b429"
2022-09-10 19:32:51 +03:00
dependencies = [
"base64-compat",
2022-09-10 19:32:51 +03:00
"either",
"log",
"nom",
"ternop",
]
[[package]]
name = "mailin-embedded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2f29d14249fb45f7795bc8564175ca7b963254217f24e8cde84ba40d38b58cc"
dependencies = [
"bufstream",
"lazy_static",
"log",
"mailin",
"rustls",
"rustls-pemfile",
"scoped_threadpool",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "meli"
2021-10-15 12:36:37 +03:00
version = "0.7.2"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"async-task",
"bitflags",
2020-05-29 15:52:18 +03:00
"crossbeam",
2020-10-17 20:50:29 +03:00
"flate2",
2020-06-22 11:29:36 +03:00
"futures",
"indexmap",
2020-05-29 15:52:18 +03:00
"libc",
"linkify",
"melib",
"nix",
2020-05-29 15:52:18 +03:00
"notify",
"notify-rust",
"num_cpus",
"pcre2",
"proc-macro2",
2022-05-02 15:44:39 +03:00
"quote",
"regex",
2020-05-29 15:52:18 +03:00
"serde",
"serde_derive",
"serde_json",
"signal-hook",
"signal-hook-registry",
"smallvec",
2020-06-07 18:02:20 +03:00
"structopt",
"svg",
"syn 1.0.109",
"tempfile",
2020-05-29 15:52:18 +03:00
"termion",
"toml",
"unicode-segmentation",
"xdg",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "melib"
2021-10-15 12:36:37 +03:00
version = "0.7.2"
2019-09-28 10:42:51 +03:00
dependencies = [
"async-stream",
"base64 0.13.1",
2022-05-02 15:44:39 +03:00
"bitflags",
2020-05-29 15:52:18 +03:00
"data-encoding",
"encoding",
"encoding_rs",
"flate2",
2020-06-22 11:29:36 +03:00
"futures",
2023-06-05 19:37:03 +03:00
"imap-codec",
"indexmap",
"isahc",
2020-05-29 15:52:18 +03:00
"libc",
"libloading",
"log",
2022-09-10 19:32:51 +03:00
"mailin-embedded",
2020-05-29 15:52:18 +03:00
"native-tls",
"nix",
2020-06-06 23:22:26 +03:00
"nom",
2020-05-29 15:52:18 +03:00
"notify",
"regex",
2020-05-30 15:35:51 +03:00
"rusqlite",
2020-05-29 15:52:18 +03:00
"serde",
"serde_derive",
"serde_json",
"smallvec",
"smol",
2022-09-10 19:32:51 +03:00
"stderrlog",
2020-05-29 15:52:18 +03:00
"unicode-segmentation",
"uuid",
"xdg",
"xdg-utils",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "memchr"
2022-05-02 15:44:39 +03:00
version = "2.5.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2019-09-28 10:42:51 +03:00
[[package]]
name = "memoffset"
2022-05-02 15:44:39 +03:00
version = "0.6.5"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"autocfg",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "memoffset"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
dependencies = [
"autocfg",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "mime"
version = "0.3.17"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2019-12-03 13:25:49 +02:00
2022-05-02 16:50:18 +03:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "mio"
version = "0.6.23"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
2019-09-28 10:42:51 +03:00
dependencies = [
"cfg-if 0.1.10",
2020-05-29 15:52:18 +03:00
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow",
"net2",
"slab",
"winapi 0.2.8",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "mio-extras"
2020-02-09 19:52:00 +02:00
version = "2.0.6"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"lazycell",
"log",
"mio",
"slab",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "miow"
version = "0.2.2"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "native-tls"
version = "0.2.11"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "net2"
version = "0.2.39"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b13b648036a2339d06de780866fbdfda0dde886de7b3af2ddeba8b14f4ee34ac"
2019-09-28 10:42:51 +03:00
dependencies = [
"cfg-if 0.1.10",
2020-05-29 15:52:18 +03:00
"libc",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
2022-05-02 15:44:39 +03:00
[[package]]
name = "nix"
version = "0.24.3"
2022-05-02 15:44:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
2022-05-02 15:44:39 +03:00
dependencies = [
"bitflags",
"cfg-if 1.0.0",
"libc",
"memoffset 0.6.5",
]
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
2020-06-06 23:22:26 +03:00
"memchr",
2022-05-02 16:50:18 +03:00
"minimal-lexical",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "notify"
2022-05-02 15:44:39 +03:00
version = "4.0.17"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "ae03c8c853dba7bfd23e571ff0cff7bc9dceb40a4cd684cd1681824183f45257"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"bitflags",
2020-05-29 15:52:18 +03:00
"filetime",
"fsevent",
"fsevent-sys",
"inotify",
"libc",
"mio",
"mio-extras",
"walkdir",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "notify-rust"
version = "4.8.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bfa211d18e360f08e36c364308f394b5eb23a6629150690e109a916dc6f610e"
2019-09-28 10:42:51 +03:00
dependencies = [
"dbus",
"log",
2020-05-29 15:52:18 +03:00
"mac-notification-sys",
"tauri-winrt-notification",
2022-09-10 19:32:51 +03:00
]
[[package]]
name = "num-traits"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
2019-09-28 10:42:51 +03:00
[[package]]
2022-05-02 15:44:39 +03:00
name = "num_cpus"
version = "1.16.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2019-12-03 13:25:49 +02:00
dependencies = [
2023-07-04 21:40:51 +03:00
"hermit-abi 0.3.2",
2020-05-29 15:52:18 +03:00
"libc",
2019-12-03 13:25:49 +02:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "numtoa"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef"
2019-09-28 10:42:51 +03:00
[[package]]
name = "objc"
2020-02-09 19:52:00 +02:00
version = "0.2.7"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"malloc_buf",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"block",
"objc",
"objc_id",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "objc_id"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"objc",
2019-09-28 10:42:51 +03:00
]
2020-05-29 15:52:18 +03:00
[[package]]
name = "once_cell"
version = "1.18.0"
2020-05-29 15:52:18 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
2020-05-29 15:52:18 +03:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "openssl"
version = "0.10.55"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"bitflags",
"cfg-if 1.0.0",
2020-05-29 15:52:18 +03:00
"foreign-types",
"libc",
2022-05-02 15:44:39 +03:00
"once_cell",
2022-08-01 04:09:42 +03:00
"openssl-macros",
2020-05-29 15:52:18 +03:00
"openssl-sys",
2019-09-28 10:42:51 +03:00
]
2022-08-01 04:09:42 +03:00
[[package]]
name = "openssl-macros"
version = "0.1.1"
2022-08-01 04:09:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2022-08-01 04:09:42 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.23",
2022-08-01 04:09:42 +03:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "openssl-probe"
2022-05-02 15:44:39 +03:00
version = "0.1.5"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2019-09-28 10:42:51 +03:00
[[package]]
name = "openssl-sys"
version = "0.9.90"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"cc",
"libc",
"pkg-config",
"vcpkg",
2019-12-03 13:25:49 +02:00
]
2020-09-13 16:34:07 +03:00
[[package]]
name = "parking"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
[[package]]
name = "pcre2"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "486aca7e74edb8cab09a48d461177f450a5cca3b55e61d139f7552190e2bbcf5"
dependencies = [
"libc",
"log",
"pcre2-sys",
"thread_local",
]
[[package]]
name = "pcre2-sys"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae234f441970dbd52d4e29bee70f3b56ca83040081cb2b55b7df772b16e0b06e"
dependencies = [
"cc",
"libc",
"pkg-config",
]
[[package]]
name = "percent-encoding"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
[[package]]
name = "pin-project"
version = "1.1.2"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842"
2019-12-03 13:25:49 +02:00
dependencies = [
2022-05-02 15:44:39 +03:00
"pin-project-internal",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "pin-project-internal"
version = "1.1.2"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"proc-macro2",
2022-05-02 15:44:39 +03:00
"quote",
"syn 2.0.23",
2019-12-03 13:25:49 +02:00
]
2020-09-13 16:34:07 +03:00
[[package]]
name = "pin-project-lite"
version = "0.2.10"
2020-09-13 16:34:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
2020-09-13 16:34:07 +03:00
2019-12-03 13:25:49 +02:00
[[package]]
name = "pin-utils"
2020-05-29 15:52:18 +03:00
version = "0.1.0"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2019-12-03 13:25:49 +02:00
2019-09-28 10:42:51 +03:00
[[package]]
name = "pkg-config"
version = "0.3.27"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
2019-09-28 10:42:51 +03:00
2020-09-18 13:49:09 +03:00
[[package]]
name = "polling"
version = "2.8.0"
2020-09-18 13:49:09 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
2020-09-18 13:49:09 +03:00
dependencies = [
"autocfg",
"bitflags",
2022-05-02 15:44:39 +03:00
"cfg-if 1.0.0",
"concurrent-queue",
2020-09-18 13:49:09 +03:00
"libc",
"log",
"pin-project-lite",
2023-07-04 21:40:51 +03:00
"windows-sys",
2020-09-18 13:49:09 +03:00
]
2020-06-07 18:02:20 +03:00
[[package]]
name = "proc-macro-error"
2020-09-13 16:34:07 +03:00
version = "1.0.4"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2020-06-07 18:02:20 +03:00
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
2022-05-02 15:44:39 +03:00
"quote",
"syn 1.0.109",
2020-06-07 18:02:20 +03:00
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
2020-09-13 16:34:07 +03:00
version = "1.0.4"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2020-06-07 18:02:20 +03:00
dependencies = [
"proc-macro2",
2022-05-02 15:44:39 +03:00
"quote",
2020-06-07 18:02:20 +03:00
"version_check",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "proc-macro2"
version = "1.0.63"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
2019-12-03 13:25:49 +02:00
dependencies = [
2022-08-01 04:09:42 +03:00
"unicode-ident",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "quick-xml"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11bafc859c6815fbaffbbbf4229ecb767ac913fecb27f9ad4343662e9ef099ea"
dependencies = [
"memchr",
]
[[package]]
name = "quote"
version = "1.0.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
2022-05-02 15:44:39 +03:00
dependencies = [
"proc-macro2",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "redox_syscall"
2022-08-01 04:09:42 +03:00
version = "0.2.16"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-01 04:09:42 +03:00
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
2022-05-02 15:44:39 +03:00
dependencies = [
"bitflags",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "redox_termios"
2022-05-02 15:44:39 +03:00
version = "0.1.2"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "8440d8acb4fd3d277125b4bd01a6f38aee8d814b3b5fc09b3f2b825d37d3fe8f"
2019-09-28 10:42:51 +03:00
dependencies = [
"redox_syscall 0.2.16",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "redox_users"
2022-05-02 15:44:39 +03:00
version = "0.4.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"getrandom",
"redox_syscall 0.2.16",
2022-05-02 15:44:39 +03:00
"thiserror",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "regex"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89089e897c013b3deb627116ae56a6955a72b8bed395c9526af31c9fe528b484"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa250384981ea14565685dea16a9ccc4d1c541a13f82b9c168572264d1df8c56"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-syntax"
version = "0.7.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ab07dc67230e4a4718e70fd5c20055a4334b121f1f9db8fe63ef39ce9b8c846"
2019-09-28 10:42:51 +03:00
2022-09-10 19:32:51 +03:00
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi 0.3.9",
]
2019-10-07 16:42:44 +03:00
[[package]]
name = "rusqlite"
version = "0.28.0"
2019-10-07 16:42:44 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a"
2019-10-07 16:42:44 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"bitflags",
2020-05-29 15:52:18 +03:00
"fallible-iterator",
"fallible-streaming-iterator",
"hashlink",
2020-05-29 15:52:18 +03:00
"libsqlite3-sys",
2020-08-28 00:24:43 +03:00
"smallvec",
2019-10-07 16:42:44 +03:00
]
[[package]]
name = "rustix"
version = "0.37.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8818fa822adcc98b18fedbb3632a6a33213c070556b5aa7c4c8cc21cff565c4c"
dependencies = [
"bitflags",
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys",
2023-07-04 21:40:51 +03:00
"windows-sys",
]
2022-09-10 19:32:51 +03:00
[[package]]
name = "rustls"
version = "0.20.8"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f"
2022-09-10 19:32:51 +03:00
dependencies = [
"log",
"ring",
"sct",
"webpki",
]
[[package]]
name = "rustls-pemfile"
version = "1.0.3"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
2022-09-10 19:32:51 +03:00
dependencies = [
"base64 0.21.2",
2022-09-10 19:32:51 +03:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "ryu"
2023-07-04 21:40:51 +03:00
version = "1.0.14"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 21:40:51 +03:00
checksum = "fe232bdf6be8c8de797b22184ee71118d63780ea42ac85b61d1baa6d3b782ae9"
2019-09-28 10:42:51 +03:00
[[package]]
name = "same-file"
2020-02-09 19:52:00 +02:00
version = "1.0.6"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"winapi-util",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "schannel"
2023-07-04 21:40:51 +03:00
version = "0.1.22"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 21:40:51 +03:00
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
2019-09-28 10:42:51 +03:00
dependencies = [
2023-07-04 21:40:51 +03:00
"windows-sys",
2019-09-28 10:42:51 +03:00
]
2022-09-10 19:32:51 +03:00
[[package]]
name = "scoped_threadpool"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
2019-09-28 10:42:51 +03:00
[[package]]
name = "scopeguard"
2020-05-29 15:52:18 +03:00
version = "1.1.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2019-09-28 10:42:51 +03:00
2022-09-10 19:32:51 +03:00
[[package]]
name = "sct"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
dependencies = [
"ring",
"untrusted",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "security-framework"
version = "2.9.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"bitflags",
2020-05-29 15:52:18 +03:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "security-framework-sys"
version = "2.9.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"core-foundation-sys",
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
2020-05-29 15:52:18 +03:00
name = "serde"
2023-07-04 21:40:51 +03:00
version = "1.0.166"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 21:40:51 +03:00
checksum = "d01b7404f9d441d3ad40e6a636a7782c377d2abdbe4fa2440e2edcc2f4f10db8"
2019-09-28 10:42:51 +03:00
[[package]]
name = "serde_derive"
2023-07-04 21:40:51 +03:00
version = "1.0.166"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 21:40:51 +03:00
checksum = "5dd83d6dde2b6b2d466e14d9d1acce8816dedee94f735eac6395808b3483c6d6"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"proc-macro2",
2022-05-02 15:44:39 +03:00
"quote",
"syn 2.0.23",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "serde_json"
version = "1.0.100"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f1e14e89be7aa4c4b78bdbdc9eb5bf8517829a600ae8eaa39a6e1d960b5185c"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"itoa",
"ryu",
"serde",
2019-09-28 10:42:51 +03:00
]
2022-05-02 15:44:39 +03:00
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
2019-09-28 10:42:51 +03:00
[[package]]
name = "signal-hook"
version = "0.3.15"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
"signal-hook-registry",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "slab"
version = "0.4.8"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
2022-08-01 04:09:42 +03:00
dependencies = [
"autocfg",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "sluice"
2022-05-02 15:44:39 +03:00
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "6d7400c0eff44aa2fcb5e31a5f24ba9716ed90138769e4977a2ba6014ae63eb5"
dependencies = [
2022-05-02 15:44:39 +03:00
"async-channel",
"futures-core",
"futures-io",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "smallvec"
version = "1.10.0"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
dependencies = [
2020-05-29 15:52:18 +03:00
"serde",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "smol"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1"
dependencies = [
2020-09-18 13:49:09 +03:00
"async-channel",
"async-executor",
"async-fs",
"async-io",
"async-lock",
"async-net",
"async-process",
"blocking",
2020-09-18 13:49:09 +03:00
"futures-lite",
]
2020-06-06 23:22:26 +03:00
[[package]]
name = "socket2"
version = "0.4.9"
2020-06-06 23:22:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
2020-06-06 23:22:26 +03:00
dependencies = [
"libc",
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2020-06-06 23:22:26 +03:00
]
2022-09-10 19:32:51 +03:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "stderrlog"
version = "0.5.4"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69a26bbf6de627d389164afa9783739b56746c6c72c4ed16539f4ff54170327b"
2022-09-10 19:32:51 +03:00
dependencies = [
"atty",
"chrono",
"log",
"termcolor",
"thread_local",
]
2020-06-07 18:02:20 +03:00
[[package]]
name = "structopt"
2022-05-02 15:44:39 +03:00
version = "0.3.26"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
2020-06-07 18:02:20 +03:00
dependencies = [
"clap",
"lazy_static",
"structopt-derive",
]
[[package]]
name = "structopt-derive"
2022-05-02 15:44:39 +03:00
version = "0.4.18"
2020-06-07 18:02:20 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
2020-06-07 18:02:20 +03:00
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
2022-05-02 15:44:39 +03:00
"quote",
"syn 1.0.109",
2020-06-07 18:02:20 +03:00
]
[[package]]
name = "svg"
2023-07-01 20:11:22 +03:00
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-01 20:11:22 +03:00
checksum = "02d815ad337e8449d2374d4248448645edfe74e699343dd5719139d93fa87112"
[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
version = "2.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59fb7d6d8281a51045d62b8eb3a7d1ce347b76f312af50cd3dc0af39c87c1737"
2019-12-03 13:25:49 +02:00
dependencies = [
2020-05-29 15:52:18 +03:00
"proc-macro2",
2022-05-02 15:44:39 +03:00
"quote",
2022-08-01 04:09:42 +03:00
"unicode-ident",
2020-06-07 18:02:20 +03: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",
"windows 0.39.0",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "tempfile"
version = "3.6.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6"
2019-09-28 10:42:51 +03:00
dependencies = [
"autocfg",
2022-05-02 15:44:39 +03:00
"cfg-if 1.0.0",
"fastrand",
"redox_syscall 0.3.5",
"rustix",
2023-07-04 21:40:51 +03:00
"windows-sys",
2019-09-28 10:42:51 +03:00
]
2022-09-10 19:32:51 +03:00
[[package]]
name = "termcolor"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "termion"
2022-05-02 15:44:39 +03:00
version = "1.5.6"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "077185e2eac69c3f8379a4298e1e07cd36beb962290d4a51199acf0fdc10607e"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"libc",
"numtoa",
"redox_syscall 0.2.16",
2020-05-29 15:52:18 +03:00
"redox_termios",
2019-09-28 10:42:51 +03:00
]
2022-09-10 19:32:51 +03:00
[[package]]
name = "ternop"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d4ae32d0a4605a89c28534371b056919c12e7a070ee07505af75130ff030111"
2020-06-07 18:02:20 +03:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
2022-05-02 15:44:39 +03:00
[[package]]
name = "thiserror"
version = "1.0.41"
2022-05-02 15:44:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c16a64ba9387ef3fdae4f9c1a7f07a0997fce91985c0336f1ddc1822b3b37802"
2022-05-02 15:44:39 +03:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.41"
2022-05-02 15:44:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d14928354b01c4d6a4f0e549069adef399a284e7995c7ccca94e8a07a5346c59"
2022-05-02 15:44:39 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.23",
2022-05-02 15:44:39 +03:00
]
[[package]]
name = "thread_local"
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
dependencies = [
"cfg-if 1.0.0",
2022-05-02 15:44:39 +03:00
"once_cell",
]
2022-09-10 19:32:51 +03:00
[[package]]
name = "time"
version = "0.3.22"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd"
2022-09-10 19:32:51 +03:00
dependencies = [
"serde",
"time-core",
2022-09-10 19:32:51 +03:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "time-core"
version = "0.1.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2019-09-28 10:42:51 +03:00
[[package]]
name = "tinyvec"
2022-05-02 15:44:39 +03:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
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"
2019-12-03 13:25:49 +02:00
[[package]]
2020-02-09 19:52:00 +02:00
name = "toml"
version = "0.5.11"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2019-12-03 13:25:49 +02:00
dependencies = [
"indexmap",
2020-05-29 15:52:18 +03:00
"serde",
2019-12-03 13:25:49 +02:00
]
2020-08-28 00:24:43 +03:00
[[package]]
name = "tools"
version = "0.4.1"
dependencies = [
"crossbeam",
"meli",
2020-08-28 00:24:43 +03:00
"melib",
"nix",
"signal-hook",
"signal-hook-registry",
2020-08-28 00:24:43 +03:00
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "tracing"
version = "0.1.37"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
dependencies = [
"cfg-if 1.0.0",
"log",
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
2019-12-03 13:25:49 +02:00
[[package]]
name = "tracing-attributes"
version = "0.1.26"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
2019-12-03 13:25:49 +02:00
dependencies = [
"proc-macro2",
2022-05-02 15:44:39 +03:00
"quote",
"syn 2.0.23",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "tracing-core"
version = "0.1.31"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2019-12-03 13:25:49 +02:00
dependencies = [
2022-08-01 04:09:42 +03:00
"once_cell",
2019-12-03 13:25:49 +02:00
]
[[package]]
name = "tracing-futures"
2022-05-02 15:44:39 +03:00
version = "0.2.5"
2019-12-03 13:25:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
2019-12-03 13:25:49 +02:00
dependencies = [
2022-05-02 15:44:39 +03:00
"pin-project",
"tracing",
2019-12-03 13:25:49 +02:00
]
2022-05-02 15:44:39 +03:00
[[package]]
name = "unicode-bidi"
version = "0.3.13"
2022-05-02 15:44:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2022-05-02 15:44:39 +03:00
2022-08-01 04:09:42 +03:00
[[package]]
name = "unicode-ident"
2023-07-04 21:40:51 +03:00
version = "1.0.10"
2022-08-01 04:09:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 21:40:51 +03:00
checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"
2022-08-01 04:09:42 +03:00
[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
"tinyvec",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "unicode-segmentation"
version = "1.10.1"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
2019-09-28 10:42:51 +03:00
2020-06-07 18:02:20 +03:00
[[package]]
name = "unicode-width"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2022-09-10 19:32:51 +03:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "uuid"
version = "1.4.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be"
2019-09-28 10:42:51 +03:00
dependencies = [
2022-05-02 15:44:39 +03:00
"getrandom",
2020-05-29 15:52:18 +03:00
"serde",
2022-05-02 15:44:39 +03:00
"sha1_smol",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "vcpkg"
2022-05-02 15:44:39 +03:00
version = "0.2.15"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2020-09-18 13:49:09 +03:00
2019-12-03 13:25:49 +02:00
[[package]]
name = "version_check"
2022-05-02 15:44:39 +03:00
version = "0.9.4"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-02 15:44:39 +03:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2019-09-28 10:42:51 +03:00
[[package]]
name = "waker-fn"
2020-09-13 16:34:07 +03:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
2019-09-28 10:42:51 +03:00
[[package]]
name = "walkdir"
version = "2.3.3"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"same-file",
"winapi-util",
2019-09-28 10:42:51 +03:00
]
2020-02-09 19:52:00 +02:00
[[package]]
name = "wasi"
2022-08-01 04:09:42 +03:00
version = "0.11.0+wasi-snapshot-preview1"
2020-09-13 16:34:07 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-01 04:09:42 +03:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2020-09-13 16:34:07 +03:00
2022-09-10 19:32:51 +03:00
[[package]]
name = "wasm-bindgen"
version = "0.2.87"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
2022-09-10 19:32:51 +03:00
dependencies = [
"cfg-if 1.0.0",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.87"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
2022-09-10 19:32:51 +03:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn 2.0.23",
2022-09-10 19:32:51 +03:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.87"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
2022-09-10 19:32:51 +03:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.87"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
2022-09-10 19:32:51 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.23",
2022-09-10 19:32:51 +03:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.87"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2022-09-10 19:32:51 +03:00
[[package]]
name = "web-sys"
version = "0.3.64"
2022-09-10 19:32:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
2022-09-10 19:32:51 +03:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
dependencies = [
"ring",
"untrusted",
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2019-09-28 10:42:51 +03:00
[[package]]
name = "winapi"
2020-09-13 16:34:07 +03:00
version = "0.3.9"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-09-13 16:34:07 +03:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2019-09-28 10:42:51 +03:00
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019-09-28 10:42:51 +03:00
[[package]]
name = "winapi-util"
2020-05-29 15:52:18 +03:00
version = "0.1.5"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-09-13 16:34:07 +03:00
"winapi 0.3.9",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2019-09-28 10:42:51 +03:00
[[package]]
2022-05-02 15:44:39 +03:00
name = "windows"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a"
dependencies = [
"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",
]
[[package]]
name = "windows"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
dependencies = [
"windows-targets",
2022-08-01 04:09:42 +03:00
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
version = "0.48.1"
2022-08-01 04:09:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
2022-08-01 04:09:42 +03:00
dependencies = [
2023-07-04 21:40:51 +03:00
"windows_aarch64_gnullvm",
"windows_aarch64_msvc 0.48.0",
"windows_i686_gnu 0.48.0",
"windows_i686_msvc 0.48.0",
"windows_x86_64_gnu 0.48.0",
2023-07-04 21:40:51 +03:00
"windows_x86_64_gnullvm",
"windows_x86_64_msvc 0.48.0",
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.39.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2"
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
[[package]]
name = "windows_i686_gnu"
version = "0.39.0"
2022-08-01 04:09:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b"
2022-08-01 04:09:42 +03:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.0"
2022-08-01 04:09:42 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
2022-08-01 04:09:42 +03:00
2022-05-02 15:44:39 +03:00
[[package]]
name = "windows_i686_msvc"
version = "0.39.0"
2022-05-02 15:44:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106"
2022-05-02 15:44:39 +03:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
2022-08-01 04:09:42 +03:00
2022-05-02 15:44:39 +03:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.39.0"
2022-05-02 15:44:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65"
2022-05-02 15:44:39 +03:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
2022-08-01 04:09:42 +03:00
2022-05-02 15:44:39 +03:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.39.0"
2022-05-02 15:44:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809"
2022-05-02 15:44:39 +03:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
2019-09-28 10:42:51 +03:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-29 15:52:18 +03:00
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
2019-09-28 10:42:51 +03:00
dependencies = [
2020-05-29 15:52:18 +03:00
"winapi 0.2.8",
"winapi-build",
2019-09-28 10:42:51 +03:00
]
[[package]]
name = "xdg"
version = "2.5.0"
2019-09-28 10:42:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "688597db5a750e9cad4511cb94729a078e274308099a0382b5b8203bbc767fee"
2022-05-02 15:44:39 +03:00
dependencies = [
"home",
2022-05-02 15:44:39 +03:00
]
2019-09-28 10:42:51 +03:00
[[package]]
name = "xdg-utils"
2020-11-28 14:44:50 +02:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-28 14:44:50 +02:00
checksum = "db9fefe62d5969721e2cfc529e6a760901cc0da422b6d67e7bfd18e69490dba6"