Files
topgrade/Cargo.lock

3051 lines
75 KiB
Plaintext
Raw Normal View History

2019-04-14 11:35:18 +03:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-07-06 09:38:10 +03:00
version = 3
2022-11-11 09:39:29 -05:00
[[package]]
name = "addr2line"
2023-11-24 07:50:41 +08:00
version = "0.21.0"
2022-11-11 09:39:29 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2022-11-11 09:39:29 -05:00
dependencies = [
"gimli",
]
2018-11-07 14:31:44 +02:00
[[package]]
2021-07-06 09:38:10 +03:00
name = "adler"
version = "1.0.2"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2018-11-07 14:31:44 +02:00
2018-06-17 14:17:36 +03:00
[[package]]
name = "aho-corasick"
2023-11-24 07:50:41 +08:00
version = "1.1.2"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
2018-06-17 14:17:36 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"memchr",
2018-06-17 14:17:36 +03:00
]
2023-06-27 10:02:27 +00:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2022-10-17 22:53:24 +02:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2023-11-24 07:50:41 +08:00
[[package]]
name = "anstream"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
[[package]]
name = "anstyle-parse"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "317b9a89c1868f5ea6ff1d9539a69f45dffc21ce321ac1fd1160dfa48c8e2140"
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"
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628"
dependencies = [
"anstyle",
"windows-sys 0.48.0",
]
2019-06-02 09:08:47 +03:00
[[package]]
2022-03-23 22:31:18 +02:00
name = "async-broadcast"
version = "0.5.1"
2019-06-02 09:08:47 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b"
2022-03-23 22:31:18 +02:00
dependencies = [
2023-11-24 07:50:41 +08:00
"event-listener 2.5.3",
2022-03-23 22:31:18 +02:00
"futures-core",
]
2019-06-02 09:08:47 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
2022-03-23 22:31:18 +02:00
name = "async-channel"
2023-11-24 07:50:41 +08:00
version = "2.1.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "d37875bd9915b7d67c2f117ea2c30a0989874d0b2cb694fe25403c85763c0c9e"
2022-03-23 22:31:18 +02:00
dependencies = [
2022-11-29 15:17:20 +00:00
"concurrent-queue",
2023-11-24 07:50:41 +08:00
"event-listener 3.1.0",
"event-listener-strategy",
2022-03-23 22:31:18 +02:00
"futures-core",
2023-11-24 07:50:41 +08:00
"pin-project-lite",
2022-03-23 22:31:18 +02:00
]
[[package]]
name = "async-executor"
2023-11-24 07:50:41 +08:00
version = "1.7.2"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "fc5ea910c42e5ab19012bab31f53cb4d63d54c3a27730f9a833a88efcf4bb52d"
2022-03-23 22:31:18 +02:00
dependencies = [
2023-11-24 07:50:41 +08:00
"async-lock 3.1.1",
2022-03-23 22:31:18 +02:00
"async-task",
2022-11-29 15:17:20 +00:00
"concurrent-queue",
2023-11-24 07:50:41 +08:00
"fastrand 2.0.1",
"futures-lite 2.0.1",
2022-03-23 22:31:18 +02:00
"slab",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "async-fs"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
dependencies = [
2023-11-24 07:50:41 +08:00
"async-lock 2.8.0",
"autocfg",
"blocking",
2023-11-24 07:50:41 +08:00
"futures-lite 1.13.0",
]
[[package]]
name = "async-io"
2023-05-01 15:02:16 +00:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 15:02:16 +00:00
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
dependencies = [
2023-11-24 07:50:41 +08:00
"async-lock 2.8.0",
2022-10-17 22:53:24 +02:00
"autocfg",
2023-05-01 15:02:16 +00:00
"cfg-if",
2022-11-29 15:17:20 +00:00
"concurrent-queue",
2023-11-24 07:50:41 +08:00
"futures-lite 1.13.0",
"log",
"parking",
2023-11-24 07:50:41 +08:00
"polling 2.8.0",
"rustix 0.37.27",
"slab",
"socket2 0.4.10",
"waker-fn",
]
[[package]]
name = "async-io"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41ed9d5715c2d329bf1b4da8d60455b99b187f27ba726df2883799af9af60997"
dependencies = [
"async-lock 3.1.1",
"cfg-if",
"concurrent-queue",
"futures-io",
"futures-lite 2.0.1",
"parking",
"polling 3.3.0",
"rustix 0.38.25",
"slab",
2023-11-24 07:50:41 +08:00
"tracing",
"waker-fn",
2023-11-24 07:50:41 +08:00
"windows-sys 0.48.0",
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "async-lock"
2023-11-24 07:50:41 +08:00
version = "2.8.0"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
2022-03-23 22:31:18 +02:00
dependencies = [
2023-11-24 07:50:41 +08:00
"event-listener 2.5.3",
]
[[package]]
name = "async-lock"
version = "3.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "655b9c7fe787d3b25cc0f804a1a8401790f0c5bc395beb5a64dc77d8de079105"
dependencies = [
"event-listener 3.1.0",
"event-listener-strategy",
"pin-project-lite",
2022-03-23 22:31:18 +02:00
]
[[package]]
name = "async-process"
2023-11-24 07:50:41 +08:00
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
dependencies = [
2023-11-24 07:50:41 +08:00
"async-io 1.13.0",
"async-lock 2.8.0",
"async-signal",
"blocking",
"cfg-if",
2023-11-24 07:50:41 +08:00
"event-listener 3.1.0",
"futures-lite 1.13.0",
"rustix 0.38.25",
"windows-sys 0.48.0",
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "async-recursion"
2023-11-24 07:50:41 +08:00
version = "1.0.5"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0"
2022-03-23 22:31:18 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-11-24 07:50:41 +08:00
"syn 2.0.39",
]
[[package]]
name = "async-signal"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
dependencies = [
"async-io 2.2.0",
"async-lock 2.8.0",
"atomic-waker",
"cfg-if",
"futures-core",
"futures-io",
"rustix 0.38.25",
"signal-hook-registry",
"slab",
"windows-sys 0.48.0",
2022-03-23 22:31:18 +02:00
]
[[package]]
name = "async-task"
2023-11-24 07:50:41 +08:00
version = "4.5.0"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "b4eb2cdb97421e01129ccb49169d8279ed21e829929144f4a22a6e54ac549ca1"
2022-03-23 22:31:18 +02:00
[[package]]
name = "async-trait"
2023-11-24 07:50:41 +08:00
version = "0.1.74"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9"
2022-03-23 22:31:18 +02:00
dependencies = [
"proc-macro2",
"quote",
2023-11-24 07:50:41 +08:00
"syn 2.0.39",
2022-03-23 22:31:18 +02:00
]
[[package]]
name = "atomic-waker"
2023-11-24 07:50:41 +08:00
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
2018-06-12 11:30:03 +03:00
2020-02-10 22:17:59 +02:00
[[package]]
name = "autocfg"
2022-03-23 22:31:18 +02:00
version = "1.1.0"
2020-02-10 22:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2020-02-10 22:17:59 +02:00
2022-11-11 09:39:29 -05:00
[[package]]
name = "backtrace"
2023-11-24 07:50:41 +08:00
version = "0.3.69"
2022-11-11 09:39:29 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
2022-11-11 09:39:29 -05:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
2023-11-24 07:50:41 +08:00
"miniz_oxide",
2022-11-11 09:39:29 -05:00
"object",
"rustc-demangle",
]
2020-06-11 17:39:06 +03:00
[[package]]
name = "base64"
2023-11-24 07:50:41 +08:00
version = "0.21.5"
2020-06-11 17:39:06 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
2020-06-18 22:25:27 +03:00
[[package]]
name = "bitflags"
2021-10-25 22:41:12 +03:00
version = "1.3.2"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2018-06-12 11:30:03 +03:00
2023-11-24 07:50:41 +08:00
[[package]]
name = "bitflags"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
2020-01-03 10:26:21 +02:00
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
[[package]]
name = "blocking"
2023-11-24 07:50:41 +08:00
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
dependencies = [
"async-channel",
2023-11-24 07:50:41 +08:00
"async-lock 3.1.1",
"async-task",
2023-11-24 07:50:41 +08:00
"fastrand 2.0.1",
"futures-io",
"futures-lite 2.0.1",
"piper",
"tracing",
]
2020-05-09 07:22:51 +03:00
[[package]]
name = "bumpalo"
2023-11-24 07:50:41 +08:00
version = "3.14.0"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
2020-01-03 10:26:21 +02:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "byteorder"
2023-11-24 07:50:41 +08:00
version = "1.5.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2018-11-07 14:31:44 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "bytes"
2023-11-24 07:50:41 +08:00
version = "1.5.0"
2019-07-16 08:56:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
2018-05-29 23:48:30 +03:00
[[package]]
name = "cc"
2023-11-24 07:50:41 +08:00
version = "1.0.83"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
dependencies = [
"libc",
]
2018-05-29 23:48:30 +03:00
2020-11-02 14:00:04 +02:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2019-05-21 16:40:00 +03:00
[[package]]
name = "chrono"
2023-11-24 07:50:41 +08:00
version = "0.4.31"
2019-05-21 16:40:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
2019-05-21 16:40:00 +03:00
dependencies = [
2023-06-27 10:02:27 +00:00
"android-tzdata",
2022-10-17 22:53:24 +02:00
"iana-time-zone",
"js-sys",
2020-05-09 07:22:51 +03:00
"num-traits",
2022-10-17 22:53:24 +02:00
"wasm-bindgen",
2023-11-24 07:50:41 +08:00
"windows-targets 0.48.5",
2019-05-21 16:40:00 +03:00
]
2018-06-12 11:30:03 +03:00
[[package]]
name = "clap"
2023-11-24 07:50:41 +08:00
version = "4.4.8"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64"
2018-06-12 11:30:03 +03:00
dependencies = [
2023-11-24 07:50:41 +08:00
"clap_builder",
"clap_derive",
2023-11-24 07:50:41 +08:00
]
[[package]]
name = "clap_builder"
version = "4.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc"
dependencies = [
"anstream",
"anstyle",
"clap_lex",
2020-05-09 07:22:51 +03:00
"strsim",
]
[[package]]
name = "clap_complete"
2023-11-24 07:50:41 +08:00
version = "4.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "bffe91f06a11b4b9420f62103854e90867812cd5d01557f853c5ee8e791b12ae"
dependencies = [
"clap",
]
[[package]]
name = "clap_derive"
2023-11-24 07:50:41 +08:00
version = "4.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442"
dependencies = [
2023-06-27 10:02:27 +00:00
"heck",
"proc-macro2",
"quote",
2023-11-24 07:50:41 +08:00
"syn 2.0.39",
]
[[package]]
name = "clap_lex"
2023-11-24 07:50:41 +08:00
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
2018-06-12 11:30:03 +03:00
[[package]]
name = "clap_mangen"
2023-11-24 07:50:41 +08:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "d3be86020147691e1d2ef58f75346a3d4d94807bfc473e377d52f09f0f7d77f7"
dependencies = [
"clap",
"roff",
]
2022-11-11 09:39:29 -05:00
[[package]]
name = "color-eyre"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
dependencies = [
"backtrace",
"color-spantrace",
"eyre",
"indenter",
"once_cell",
"owo-colors",
"tracing-error",
]
[[package]]
name = "color-spantrace"
2023-11-24 07:50:41 +08:00
version = "0.2.1"
2022-11-11 09:39:29 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "cd6be1b2a7e382e2b98b43b2adcca6bb0e465af0bdd38123873ae61eb17a72c2"
2022-11-11 09:39:29 -05:00
dependencies = [
"once_cell",
"owo-colors",
"tracing-core",
"tracing-error",
]
2023-11-24 07:50:41 +08:00
[[package]]
name = "colorchoice"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
2022-11-16 13:43:57 -05:00
[[package]]
name = "concurrent-queue"
2023-11-24 07:50:41 +08:00
version = "2.3.0"
2022-11-16 13:43:57 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400"
2022-11-16 13:43:57 -05:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "console"
2023-06-27 10:02:27 +00:00
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 10:02:27 +00:00
checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
2020-06-05 15:28:43 +03:00
dependencies = [
"encode_unicode",
2022-10-17 22:53:24 +02:00
"lazy_static",
2020-06-05 15:28:43 +03:00
"libc",
"unicode-width",
2023-06-27 10:02:27 +00:00
"windows-sys 0.45.0",
2020-12-07 20:51:41 +02:00
]
[[package]]
name = "const-random"
2023-11-24 07:50:41 +08:00
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "5aaf16c9c2c612020bcfd042e170f6e32de9b9d75adb5277cdbbd2e2c8c8299a"
dependencies = [
"const-random-macro",
]
[[package]]
name = "const-random-macro"
2023-11-24 07:50:41 +08:00
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
dependencies = [
"getrandom",
"once_cell",
"tiny-keccak",
]
2023-11-24 07:50:41 +08:00
[[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",
]
2022-10-17 22:53:24 +02:00
[[package]]
name = "core-foundation-sys"
2023-05-01 15:02:16 +00:00
version = "0.8.4"
2022-10-17 22:53:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 15:02:16 +00:00
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
2022-10-17 22:53:24 +02:00
[[package]]
name = "cpufeatures"
2023-11-24 07:50:41 +08:00
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
dependencies = [
"libc",
]
[[package]]
name = "crc32fast"
2022-03-23 22:31:18 +02:00
version = "1.3.2"
2020-02-13 15:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2020-02-13 15:38:28 +02:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-02-13 15:38:28 +02:00
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "crossbeam-utils"
2023-06-27 10:02:27 +00:00
version = "0.8.16"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 10:02:27 +00:00
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
2022-04-30 16:17:27 +03:00
dependencies = [
"cfg-if",
2022-10-17 22:53:24 +02:00
]
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
2023-11-24 07:50:41 +08:00
[[package]]
name = "deranged"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3"
dependencies = [
"powerfmt",
]
2020-01-03 10:26:21 +02:00
[[package]]
name = "derivative"
version = "2.2.0"
2020-01-03 10:26:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
2020-01-03 10:26:21 +02:00
dependencies = [
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"syn 1.0.109",
2020-01-03 10:26:21 +02:00
]
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"crypto-common",
]
2022-10-17 22:53:24 +02:00
[[package]]
name = "dirs"
2023-11-24 07:50:41 +08:00
version = "5.0.1"
2022-10-17 22:53:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
2022-10-17 22:53:24 +02:00
dependencies = [
"dirs-sys",
]
2020-01-05 21:55:05 +02:00
[[package]]
2021-01-07 10:03:20 +02:00
name = "dirs-next"
version = "2.0.0"
2020-01-05 21:55:05 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-01-07 10:03:20 +02:00
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
2020-01-05 21:55:05 +02:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2021-01-07 10:03:20 +02:00
"dirs-sys-next",
2020-01-05 21:55:05 +02:00
]
2019-06-02 09:08:47 +03:00
[[package]]
name = "dirs-sys"
2023-11-24 07:50:41 +08:00
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
2023-11-24 07:50:41 +08:00
"option-ext",
2022-03-23 22:31:18 +02:00
"redox_users",
2023-11-24 07:50:41 +08:00
"windows-sys 0.48.0",
2021-01-07 10:03:20 +02:00
]
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
2021-01-07 10:03:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
2021-01-07 10:03:20 +02:00
dependencies = [
"libc",
2022-03-23 22:31:18 +02:00
"redox_users",
2021-01-07 10:03:20 +02:00
"winapi",
]
2020-02-29 20:15:28 +02:00
[[package]]
name = "dlv-list"
2023-11-24 07:50:41 +08:00
version = "0.5.2"
2020-02-29 20:15:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
dependencies = [
"const-random",
]
2020-02-29 20:15:28 +02:00
[[package]]
name = "either"
2023-11-24 07:50:41 +08:00
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
2019-01-14 09:28:20 +02:00
[[package]]
name = "encode_unicode"
2019-08-26 21:06:15 +03:00
version = "0.3.6"
2019-01-14 09:28:20 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
2019-01-14 09:28:20 +02:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "encoding_rs"
2023-11-24 07:50:41 +08:00
version = "0.8.33"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
2018-11-07 14:31:44 +02:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "enumflags2"
2023-11-24 07:50:41 +08:00
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "5998b4f30320c9d93aed72f63af821bfdac50465b75428fce77b48ec482c3939"
dependencies = [
"enumflags2_derive",
"serde",
]
[[package]]
name = "enumflags2_derive"
2023-11-24 07:50:41 +08:00
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f95e2801cd355d4a1a3e3953ce6ee5ae9603a5c833455343a8bfe3f44d418246"
dependencies = [
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
2023-11-24 07:50:41 +08:00
"syn 2.0.39",
2023-05-01 15:02:16 +00:00
]
[[package]]
2023-11-24 07:50:41 +08:00
name = "equivalent"
version = "1.0.1"
2023-05-01 15:02:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-05-01 15:02:16 +00:00
[[package]]
2023-11-24 07:50:41 +08:00
name = "errno"
version = "0.3.7"
2023-05-01 15:02:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f258a7194e7f7c2a7837a8913aeab7fd8c383457034fa20ce4dd3dcb813e8eb8"
2023-05-01 15:02:16 +00:00
dependencies = [
"libc",
2023-11-24 07:50:41 +08:00
"windows-sys 0.48.0",
]
[[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",
]
2022-11-23 15:18:09 +00:00
[[package]]
name = "event-listener"
version = "2.5.3"
2022-11-23 15:18:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2022-11-23 15:18:09 +00:00
2023-11-24 07:50:41 +08:00
[[package]]
name = "event-listener"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
]
[[package]]
name = "event-listener-strategy"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d96b852f1345da36d551b9473fa1e2b1eb5c5195585c6c018118bc92a8d91160"
dependencies = [
"event-listener 3.1.0",
"pin-project-lite",
]
2022-11-11 09:39:29 -05:00
[[package]]
name = "eyre"
2023-11-24 07:50:41 +08:00
version = "0.6.9"
2022-11-11 09:39:29 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "80f656be11ddf91bd709454d15d5bd896fbaf4cc3314e69349e4d1569f5b46cd"
2022-11-11 09:39:29 -05:00
dependencies = [
"indenter",
"once_cell",
]
[[package]]
name = "fastrand"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
dependencies = [
"instant",
]
2023-11-24 07:50:41 +08:00
[[package]]
name = "fastrand"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
2018-11-07 14:31:44 +02:00
[[package]]
name = "filetime"
2023-11-24 07:50:41 +08:00
version = "0.2.22"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
2018-11-07 14:31:44 +02:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-05-09 07:22:51 +03:00
"libc",
2023-11-24 07:50:41 +08:00
"redox_syscall 0.3.5",
2023-05-01 15:02:16 +00:00
"windows-sys 0.48.0",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "flate2"
2023-11-24 07:50:41 +08:00
version = "1.0.28"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"crc32fast",
2023-11-24 07:50:41 +08:00
"miniz_oxide",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "fnv"
2020-06-11 17:39:06 +03:00
version = "1.0.7"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 17:39:06 +03:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2018-11-07 14:31:44 +02:00
2020-12-07 20:51:41 +02:00
[[package]]
name = "form_urlencoded"
2023-11-24 07:50:41 +08:00
version = "1.2.1"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
2020-12-07 20:51:41 +02:00
dependencies = [
2021-01-07 10:03:20 +02:00
"percent-encoding",
]
[[package]]
name = "futures"
2023-11-24 07:50:41 +08:00
version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-channel"
2023-11-24 07:50:41 +08:00
version = "0.3.29"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb"
2020-05-09 07:22:51 +03:00
dependencies = [
"futures-core",
"futures-sink",
2020-05-09 07:22:51 +03:00
]
2018-11-07 14:31:44 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "futures-core"
2023-11-24 07:50:41 +08:00
version = "0.3.29"
2020-02-10 22:17:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c"
2020-02-10 22:17:59 +02:00
[[package]]
name = "futures-executor"
2023-11-24 07:50:41 +08:00
version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2020-02-10 22:17:59 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "futures-io"
2023-11-24 07:50:41 +08:00
version = "0.3.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa"
[[package]]
name = "futures-lite"
2023-05-01 15:02:16 +00:00
version = "1.13.0"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 15:02:16 +00:00
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
dependencies = [
2023-11-24 07:50:41 +08:00
"fastrand 1.9.0",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
2020-05-09 07:22:51 +03:00
2023-11-24 07:50:41 +08:00
[[package]]
name = "futures-lite"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3831c2651acb5177cbd83943f3d9c8912c5ad03c76afcc0e9511ba568ec5ebb"
dependencies = [
"fastrand 2.0.1",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
]
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-macro"
2023-11-24 07:50:41 +08:00
version = "0.3.29"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
2023-11-24 07:50:41 +08:00
"syn 2.0.39",
2020-05-09 07:22:51 +03:00
]
[[package]]
name = "futures-sink"
2023-11-24 07:50:41 +08:00
version = "0.3.29"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817"
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-task"
2023-11-24 07:50:41 +08:00
version = "0.3.29"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2"
2020-05-09 07:22:51 +03:00
[[package]]
name = "futures-util"
2023-11-24 07:50:41 +08:00
version = "0.3.29"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104"
2020-05-09 07:22:51 +03:00
dependencies = [
"futures-channel",
2020-05-09 07:22:51 +03:00
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
2020-05-09 07:22:51 +03:00
"futures-task",
"memchr",
"pin-project-lite",
2020-05-09 07:22:51 +03:00
"pin-utils",
"slab",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
]
2019-07-16 08:56:26 +03:00
[[package]]
name = "getrandom"
2023-11-24 07:50:41 +08:00
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
"libc",
2023-11-24 07:50:41 +08:00
"wasi",
]
2022-11-11 09:39:29 -05:00
[[package]]
name = "gimli"
2023-11-24 07:50:41 +08:00
version = "0.28.0"
2022-11-11 09:39:29 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
2022-11-11 09:39:29 -05:00
[[package]]
name = "glob"
v10.2.5 release (#330) * Don't show desktop notification on error (if `skip_notify = true`) (#275) * Use ─ (U+2500) to draw borders (#282) * Adds Pclinuxos support (#283) * Add Devkitpro Pacman support (#291) * Added support for Neovim package manager lazy.nvim (#293) * Added support for lazy.nvim From https://github.com/folke/lazy.nvim Authored-by: Jacob Lane Ledbetter <jledbetter460@gmail.com> * Make garuda-update update AUR packages by default (#296) * fix(#298): Don't throw error if no Helm repository found (#305) * Skip .NET when `dotnet tool list` is not successful (#302) * feat(pacstall): add `-y` flag variant (#312) * Add openSUSE MicroOS support (#315) * Adds notify-send timeout of 10s (#318) * Don't run yum when rpm-ostree is available (#313) * don't run yum when rpm-ostree is available * Clippy fix * rpm-ostree: set default value to true * Fixes if loop error * Fixes gem update --system requires sudo now (#317) * Fixes gem update --system requires sudo now * rubygem: Adds arg -EH to sudo * Use fixed nala path instead of which(nala) (#314) * Adds notify-send bug warning when topgrade is run (#324) * Adds notify-send bug warning when topgrade is run * fix typo + clippy * notify-send warning respects skip_notify flag * nix: Adds additional arguments support (#325) * Adds pip-review and pipupgrade support (#316) * Adds pip-review and pipupgrade support * Python: fixes pip_review and pipupgrade * v10.2.5 patch (#329) * WSL: Adds new wsl --update flags (#327) * wsl: Updates available flags * Clippy fix * Add WslUpdate runner * wsl: Code Typo * wsl: Code Typos * wsl: Code Typos * wsl: Code Typo * Adds AM Package Manager (#328) * Adds AM Package Manager * Clippy fixes * Cargo fmt * Moves am to linux only in main file --------- Co-authored-by: Guilherme Silva <626206+guihkx@users.noreply.github.com> Co-authored-by: Gabriel Augendre <gabriel@augendre.info> Co-authored-by: Cat Core <34719527+arthurbambou@users.noreply.github.com> Co-authored-by: Hugo Haas <hugoh@hugoh.net> Co-authored-by: Baptiste <32563450+BapRx@users.noreply.github.com> Co-authored-by: bbx0 <39773919+bbx0@users.noreply.github.com> Co-authored-by: Sourajyoti Basak <wiz28@protonmail.com>
2023-01-29 19:19:27 +00:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
v10.2.5 release (#330) * Don't show desktop notification on error (if `skip_notify = true`) (#275) * Use ─ (U+2500) to draw borders (#282) * Adds Pclinuxos support (#283) * Add Devkitpro Pacman support (#291) * Added support for Neovim package manager lazy.nvim (#293) * Added support for lazy.nvim From https://github.com/folke/lazy.nvim Authored-by: Jacob Lane Ledbetter <jledbetter460@gmail.com> * Make garuda-update update AUR packages by default (#296) * fix(#298): Don't throw error if no Helm repository found (#305) * Skip .NET when `dotnet tool list` is not successful (#302) * feat(pacstall): add `-y` flag variant (#312) * Add openSUSE MicroOS support (#315) * Adds notify-send timeout of 10s (#318) * Don't run yum when rpm-ostree is available (#313) * don't run yum when rpm-ostree is available * Clippy fix * rpm-ostree: set default value to true * Fixes if loop error * Fixes gem update --system requires sudo now (#317) * Fixes gem update --system requires sudo now * rubygem: Adds arg -EH to sudo * Use fixed nala path instead of which(nala) (#314) * Adds notify-send bug warning when topgrade is run (#324) * Adds notify-send bug warning when topgrade is run * fix typo + clippy * notify-send warning respects skip_notify flag * nix: Adds additional arguments support (#325) * Adds pip-review and pipupgrade support (#316) * Adds pip-review and pipupgrade support * Python: fixes pip_review and pipupgrade * v10.2.5 patch (#329) * WSL: Adds new wsl --update flags (#327) * wsl: Updates available flags * Clippy fix * Add WslUpdate runner * wsl: Code Typo * wsl: Code Typos * wsl: Code Typos * wsl: Code Typo * Adds AM Package Manager (#328) * Adds AM Package Manager * Clippy fixes * Cargo fmt * Moves am to linux only in main file --------- Co-authored-by: Guilherme Silva <626206+guihkx@users.noreply.github.com> Co-authored-by: Gabriel Augendre <gabriel@augendre.info> Co-authored-by: Cat Core <34719527+arthurbambou@users.noreply.github.com> Co-authored-by: Hugo Haas <hugoh@hugoh.net> Co-authored-by: Baptiste <32563450+BapRx@users.noreply.github.com> Co-authored-by: bbx0 <39773919+bbx0@users.noreply.github.com> Co-authored-by: Sourajyoti Basak <wiz28@protonmail.com>
2023-01-29 19:19:27 +00:00
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2018-11-07 14:31:44 +02:00
[[package]]
name = "h2"
version = "0.3.24"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9"
2018-11-07 14:31:44 +02:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
2020-07-14 08:20:01 +03:00
"tracing",
2018-11-07 14:31:44 +02:00
]
2020-02-29 20:15:28 +02:00
[[package]]
name = "hashbrown"
2023-11-24 07:50:41 +08:00
version = "0.13.2"
2021-07-06 09:38:10 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
[[package]]
name = "hashbrown"
2023-11-24 07:50:41 +08:00
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"
2021-07-06 09:38:10 +03:00
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2019-11-04 06:42:20 +02:00
[[package]]
name = "hermit-abi"
2023-11-24 07:50:41 +08:00
version = "0.3.3"
2023-05-01 15:02:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2023-05-01 15:02:16 +00:00
2022-03-23 22:31:18 +02:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "home"
2023-05-01 15:02:16 +00:00
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 15:02:16 +00:00
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
dependencies = [
2023-05-01 15:02:16 +00:00
"windows-sys 0.48.0",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "http"
2023-11-24 07:50:41 +08:00
version = "0.2.11"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
2018-11-07 14:31:44 +02:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"fnv",
2022-03-23 22:31:18 +02:00
"itoa",
2018-11-07 14:31:44 +02:00
]
2019-05-30 21:14:21 +03:00
[[package]]
name = "http-body"
2022-10-17 22:53:24 +02:00
version = "0.4.5"
2019-05-30 21:14:21 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
2019-05-30 21:14:21 +03:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"http",
2021-07-06 09:38:10 +03:00
"pin-project-lite",
2019-05-30 21:14:21 +03:00
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "httparse"
2022-10-17 22:53:24 +02:00
version = "1.8.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2018-11-07 14:31:44 +02:00
2020-11-02 14:00:04 +02:00
[[package]]
name = "httpdate"
2023-11-24 07:50:41 +08:00
version = "1.0.3"
2020-11-02 14:00:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2020-11-02 14:00:04 +02:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "hyper"
2023-06-27 10:02:27 +00:00
version = "0.14.27"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 10:02:27 +00:00
checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
2020-05-09 07:22:51 +03:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
2020-11-02 14:00:04 +02:00
"httpdate",
2022-03-23 22:31:18 +02:00
"itoa",
2021-07-06 09:38:10 +03:00
"pin-project-lite",
2023-11-24 07:50:41 +08:00
"socket2 0.4.10",
2020-05-09 07:22:51 +03:00
"tokio",
"tower-service",
2020-07-14 08:20:01 +03:00
"tracing",
2020-05-09 07:22:51 +03:00
"want",
2018-11-07 14:31:44 +02:00
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "hyper-rustls"
2023-11-24 07:50:41 +08:00
version = "0.24.2"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
2022-04-30 16:17:27 +03:00
dependencies = [
2023-11-24 07:50:41 +08:00
"futures-util",
2022-04-30 16:17:27 +03:00
"http",
"hyper",
"rustls",
"tokio",
"tokio-rustls",
]
2022-10-17 22:53:24 +02:00
[[package]]
name = "iana-time-zone"
2023-11-24 07:50:41 +08:00
version = "0.1.58"
2022-10-17 22:53:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20"
2022-10-17 22:53:24 +02:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
2023-11-24 07:50:41 +08:00
"windows-core",
2022-10-17 22:53:24 +02:00
]
[[package]]
name = "iana-time-zone-haiku"
2023-06-27 10:02:27 +00:00
version = "0.1.2"
2022-10-17 22:53:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 10:02:27 +00:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2022-10-17 22:53:24 +02:00
dependencies = [
2023-06-27 10:02:27 +00:00
"cc",
2022-10-17 22:53:24 +02:00
]
2019-09-04 21:07:43 +03:00
[[package]]
name = "idna"
2023-11-24 07:50:41 +08:00
version = "0.5.0"
2019-09-04 21:07:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
2019-09-04 21:07:43 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"unicode-bidi",
"unicode-normalization",
2019-09-04 21:07:43 +03:00
]
2022-11-11 09:39:29 -05:00
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2018-11-07 14:31:44 +02:00
[[package]]
name = "indexmap"
2023-11-24 07:50:41 +08:00
version = "2.1.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
2019-10-26 21:36:50 +03:00
dependencies = [
2023-11-24 07:50:41 +08:00
"equivalent",
"hashbrown 0.14.2",
2019-10-26 21:36:50 +03:00
]
2018-11-07 14:31:44 +02:00
2019-08-13 14:27:41 +03:00
[[package]]
name = "indicatif"
2022-01-24 12:10:02 +02:00
version = "0.16.2"
2019-08-13 14:27:41 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
2019-08-13 14:27:41 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"console",
2020-05-09 07:22:51 +03:00
"lazy_static",
"number_prefix",
"regex",
2019-08-13 14:27:41 +03:00
]
[[package]]
name = "instant"
2021-10-25 22:41:12 +03:00
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-25 22:41:12 +03:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
]
2023-05-01 15:02:16 +00:00
[[package]]
name = "io-lifetimes"
2023-06-27 10:02:27 +00:00
version = "1.0.11"
2023-05-01 15:02:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 10:02:27 +00:00
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
2023-05-01 15:02:16 +00:00
dependencies = [
2023-11-24 07:50:41 +08:00
"hermit-abi",
2023-05-01 15:02:16 +00:00
"libc",
"windows-sys 0.48.0",
]
2020-08-09 09:14:39 +03:00
[[package]]
name = "ipnet"
2023-11-24 07:50:41 +08:00
version = "2.9.0"
2020-08-09 09:14:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
2020-05-09 07:22:51 +03:00
2021-12-16 09:44:19 +02:00
[[package]]
name = "itoa"
2023-11-24 07:50:41 +08:00
version = "1.0.9"
2021-12-16 09:44:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
2021-12-16 09:44:19 +02:00
2020-05-09 07:22:51 +03:00
[[package]]
name = "js-sys"
2023-11-24 07:50:41 +08:00
version = "0.3.65"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8"
2020-05-09 07:22:51 +03:00
dependencies = [
"wasm-bindgen",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "lazy_static"
2019-08-26 21:06:15 +03:00
version = "1.4.0"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2018-06-17 14:17:36 +03:00
2018-05-29 23:48:30 +03:00
[[package]]
name = "libc"
2023-11-24 07:50:41 +08:00
version = "0.2.150"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
[[package]]
name = "libredox"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
dependencies = [
"bitflags 2.4.1",
"libc",
"redox_syscall 0.4.1",
]
2022-05-15 09:28:22 +03:00
2023-05-01 15:02:16 +00:00
[[package]]
name = "linux-raw-sys"
2023-06-27 10:02:27 +00:00
version = "0.3.8"
2023-05-01 15:02:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 10:02:27 +00:00
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
2023-05-01 15:02:16 +00:00
2023-11-24 07:50:41 +08:00
[[package]]
name = "linux-raw-sys"
version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829"
2018-06-17 14:17:36 +03:00
[[package]]
name = "log"
2023-11-24 07:50:41 +08:00
version = "0.4.20"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2018-06-17 14:17:36 +03:00
2020-01-03 10:26:21 +02:00
[[package]]
name = "mac-notification-sys"
2023-11-24 07:50:41 +08:00
version = "0.6.1"
2020-01-03 10:26:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "51fca4d74ff9dbaac16a01b924bc3693fa2bba0862c2c633abc73f9a8ea21f64"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"cc",
2022-03-23 22:31:18 +02:00
"dirs-next",
2020-05-09 07:22:51 +03:00
"objc-foundation",
2022-03-23 22:31:18 +02:00
"objc_id",
2023-11-24 07:50:41 +08:00
"time",
2020-01-03 10:26:21 +02:00
]
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
2020-01-03 10:26:21 +02:00
]
2022-11-16 13:43:57 -05:00
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
2023-11-24 07:50:41 +08:00
"regex-automata 0.1.10",
2022-11-16 13:43:57 -05:00
]
2018-06-17 14:17:36 +03:00
[[package]]
name = "memchr"
2023-11-24 07:50:41 +08:00
version = "2.6.4"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
2020-02-13 15:38:28 +02:00
[[package]]
name = "memoffset"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
dependencies = [
"autocfg",
]
[[package]]
name = "merge"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10bbef93abb1da61525bbc45eeaff6473a41907d19f8f9aa5168d214e10693e9"
dependencies = [
"merge_derive",
"num-traits",
]
[[package]]
name = "merge_derive"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "209d075476da2e63b4b29e72a2ef627b840589588e71400a25e3565c4f849d07"
dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
"syn 1.0.109",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "mime"
2023-05-01 15:02:16 +00:00
version = "0.3.17"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 15:02:16 +00:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2018-11-07 14:31:44 +02:00
2023-05-01 15:02:16 +00:00
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "mio"
2023-11-24 07:50:41 +08:00
version = "0.8.9"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
2023-11-24 07:50:41 +08:00
"wasi",
2023-06-27 10:02:27 +00:00
"windows-sys 0.48.0",
]
[[package]]
name = "nix"
2023-11-24 07:50:41 +08:00
version = "0.26.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b"
dependencies = [
2023-11-24 07:50:41 +08:00
"bitflags 1.3.2",
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-05-09 07:22:51 +03:00
"libc",
2023-11-24 07:50:41 +08:00
"memoffset",
]
2022-05-15 09:28:22 +03:00
[[package]]
name = "nix"
2023-11-24 07:50:41 +08:00
version = "0.27.1"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
2022-05-15 09:28:22 +03:00
dependencies = [
2023-11-24 07:50:41 +08:00
"bitflags 2.4.1",
2022-05-15 09:28:22 +03:00
"cfg-if",
"libc",
]
2020-01-03 10:26:21 +02:00
[[package]]
name = "notify-rust"
2023-11-24 07:50:41 +08:00
version = "4.10.0"
2020-01-03 10:26:21 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "827c5edfa80235ded4ab3fe8e9dc619b4f866ef16fe9b1c6b8a7f8692c0f2226"
2020-01-03 10:26:21 +02:00
dependencies = [
"log",
2020-05-09 07:22:51 +03:00
"mac-notification-sys",
"serde",
2022-10-17 22:53:24 +02:00
"tauri-winrt-notification",
"zbus",
2020-01-03 10:26:21 +02:00
]
2022-11-16 13:43:57 -05: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",
]
2019-05-21 16:40:00 +03:00
[[package]]
name = "num-traits"
2023-11-24 07:50:41 +08:00
version = "0.2.17"
2019-05-21 16:40:00 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
2019-05-30 21:14:21 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"autocfg",
2019-05-30 21:14:21 +03:00
]
2019-05-21 16:40:00 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "num_cpus"
2023-11-24 07:50:41 +08:00
version = "1.16.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2018-11-07 14:31:44 +02:00
dependencies = [
2023-11-24 07:50:41 +08:00
"hermit-abi",
2020-05-09 07:22:51 +03:00
"libc",
2018-11-07 14:31:44 +02:00
]
2019-05-12 10:20:40 +03:00
[[package]]
2019-08-13 14:27:41 +03:00
name = "number_prefix"
2022-01-24 12:10:02 +02:00
version = "0.4.0"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2019-05-12 10:20:40 +03:00
2020-01-03 10:26:21 +02:00
[[package]]
name = "objc"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"malloc_buf",
2020-01-03 10:26:21 +02:00
]
[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"block",
"objc",
"objc_id",
2020-01-03 10:26:21 +02:00
]
[[package]]
name = "objc_id"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
2020-01-03 10:26:21 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"objc",
2020-01-03 10:26:21 +02:00
]
2022-11-11 09:39:29 -05:00
[[package]]
name = "object"
2023-11-24 07:50:41 +08:00
version = "0.32.1"
2022-11-11 09:39:29 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
2022-11-11 09:39:29 -05:00
dependencies = [
"memchr",
]
2020-05-15 21:10:15 +03:00
[[package]]
name = "once_cell"
2023-11-24 07:50:41 +08:00
version = "1.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
[[package]]
name = "option-ext"
version = "0.2.0"
2020-05-15 21:10:15 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2020-05-15 21:10:15 +03:00
2020-02-29 20:15:28 +02:00
[[package]]
name = "ordered-multimap"
version = "0.6.0"
2020-02-29 20:15:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ed8acf08e98e744e5384c8bc63ceb0364e68a6854187221c18df61c4797690e"
2020-02-29 20:15:28 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"dlv-list",
"hashbrown 0.13.2",
2020-02-29 20:15:28 +02:00
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "ordered-stream"
version = "0.2.0"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
2022-03-23 22:31:18 +02:00
dependencies = [
"futures-core",
"pin-project-lite",
]
2022-11-16 13:43:57 -05:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-16 13:43:57 -05:00
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2022-11-11 09:39:29 -05:00
[[package]]
name = "owo-colors"
version = "3.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
[[package]]
name = "parking"
2023-11-24 07:50:41 +08:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
[[package]]
name = "parselnk"
2022-03-23 22:31:18 +02:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "0088616e6efe53ab79907b9313f4743eb3f8a16eb1e0014af810164808906dc3"
dependencies = [
2023-11-24 07:50:41 +08:00
"bitflags 1.3.2",
"byteorder",
"chrono",
"thiserror",
"widestring",
]
2019-05-12 10:20:40 +03:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "percent-encoding"
2023-11-24 07:50:41 +08:00
version = "2.3.1"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2019-05-12 10:20:40 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "pin-project-lite"
2023-11-24 07:50:41 +08:00
version = "0.2.13"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2020-12-07 20:51:41 +02:00
2019-09-04 21:07:43 +03:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "pin-utils"
2020-05-15 21:10:15 +03:00
version = "0.1.0"
2019-09-04 21:07:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-15 21:10:15 +03:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2019-09-04 21:07:43 +03:00
2023-11-24 07:50:41 +08: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",
]
[[package]]
name = "polling"
2023-05-01 15:02:16 +00:00
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 15:02:16 +00:00
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
dependencies = [
2022-10-17 22:53:24 +02:00
"autocfg",
2023-11-24 07:50:41 +08:00
"bitflags 1.3.2",
2022-03-23 22:31:18 +02:00
"cfg-if",
"concurrent-queue",
"libc",
"log",
"pin-project-lite",
2023-05-01 15:02:16 +00:00
"windows-sys 0.48.0",
]
2023-11-24 07:50:41 +08:00
[[package]]
name = "polling"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e53b6af1f60f36f8c2ac2aad5459d75a5a9b4be1e8cdd40264f315d78193e531"
dependencies = [
"cfg-if",
"concurrent-queue",
"pin-project-lite",
"rustix 0.38.25",
"tracing",
"windows-sys 0.48.0",
]
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2019-07-16 08:56:26 +03:00
[[package]]
name = "ppv-lite86"
2022-11-16 13:43:57 -05:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-16 13:43:57 -05:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2019-08-04 09:33:01 +03:00
[[package]]
name = "proc-macro-crate"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
2021-07-06 09:38:10 +03:00
dependencies = [
2022-10-17 22:53:24 +02:00
"once_cell",
2023-11-24 07:50:41 +08:00
"toml_edit 0.19.15",
2021-07-06 09:38:10 +03:00
]
2019-09-04 21:07:43 +03:00
[[package]]
name = "proc-macro-error"
2020-08-09 09:14:39 +03:00
version = "1.0.4"
2019-09-04 21:07:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-09 09:14:39 +03:00
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2019-09-04 21:07:43 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro-error-attr",
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"syn 1.0.109",
2020-05-09 07:22:51 +03:00
"version_check",
2020-01-05 21:55:05 +02:00
]
[[package]]
name = "proc-macro-error-attr"
2020-08-09 09:14:39 +03:00
version = "1.0.4"
2020-01-05 21:55:05 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-09 09:14:39 +03:00
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2020-01-05 21:55:05 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
2020-05-09 07:22:51 +03:00
"version_check",
2019-09-04 21:07:43 +03:00
]
2019-05-12 10:20:40 +03:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "proc-macro2"
2023-11-24 07:50:41 +08:00
version = "1.0.69"
2019-05-12 10:20:40 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
2020-02-13 15:38:28 +02:00
dependencies = [
2022-10-17 22:53:24 +02:00
"unicode-ident",
2020-02-13 15:38:28 +02:00
]
2019-05-12 10:20:40 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "quick-xml"
2022-04-30 16:17:27 +03:00
version = "0.22.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-30 16:17:27 +03:00
checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"memchr",
2018-11-07 14:31:44 +02:00
]
2019-08-13 14:27:41 +03:00
[[package]]
2022-10-17 22:53:24 +02:00
name = "quick-xml"
2023-11-24 07:50:41 +08:00
version = "0.30.0"
2019-08-13 14:27:41 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956"
2020-02-13 15:38:28 +02:00
dependencies = [
2022-10-17 22:53:24 +02:00
"memchr",
2020-02-13 15:38:28 +02:00
]
2022-05-15 09:28:22 +03:00
[[package]]
2022-10-17 22:53:24 +02:00
name = "quote"
2023-11-24 07:50:41 +08:00
version = "1.0.33"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
2022-05-15 09:28:22 +03:00
dependencies = [
2022-10-17 22:53:24 +02:00
"proc-macro2",
2022-05-15 09:28:22 +03:00
]
[[package]]
name = "rand"
2022-03-23 22:31:18 +02:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
2021-07-06 09:38:10 +03:00
"rand_chacha",
2022-10-17 22:53:24 +02:00
"rand_core",
]
[[package]]
name = "rand_chacha"
2021-07-06 09:38:10 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
2022-10-17 22:53:24 +02:00
"rand_core",
]
2022-05-15 09:28:22 +03:00
[[package]]
name = "rand_core"
2022-10-17 22:53:24 +02:00
version = "0.6.4"
2019-07-16 08:56:26 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2019-07-16 08:56:26 +03:00
dependencies = [
2022-03-23 22:31:18 +02:00
"getrandom",
2018-12-12 13:05:02 +02:00
]
2018-05-31 16:00:01 +03:00
[[package]]
name = "redox_syscall"
2023-11-24 07:50:41 +08:00
version = "0.3.5"
2018-05-31 16:00:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
2023-11-24 07:50:41 +08:00
"bitflags 1.3.2",
]
2023-07-15 09:17:47 +08:00
[[package]]
name = "redox_syscall"
2023-11-24 07:50:41 +08:00
version = "0.4.1"
2023-07-15 09:17:47 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
2023-07-15 09:17:47 +08:00
dependencies = [
2023-11-24 07:50:41 +08:00
"bitflags 1.3.2",
2023-07-15 09:17:47 +08:00
]
2019-06-02 09:08:47 +03:00
[[package]]
name = "redox_users"
2023-11-24 07:50:41 +08:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
dependencies = [
2022-03-23 22:31:18 +02:00
"getrandom",
2023-11-24 07:50:41 +08:00
"libredox",
2022-03-23 22:31:18 +02:00
"thiserror",
]
2018-06-17 14:17:36 +03:00
[[package]]
name = "regex"
2023-11-24 07:50:41 +08:00
version = "1.10.2"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
2018-06-17 14:17:36 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"aho-corasick",
"memchr",
2023-11-24 07:50:41 +08:00
"regex-automata 0.4.3",
"regex-syntax 0.8.2",
2018-06-17 14:17:36 +03:00
]
2022-11-16 13:43:57 -05:00
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
2023-11-24 07:50:41 +08:00
"regex-syntax 0.6.29",
]
[[package]]
name = "regex-automata"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax 0.8.2",
2022-11-16 13:43:57 -05:00
]
[[package]]
name = "regex-split"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "544861d1810a3e429bb5e80266e537138b0e69e59bed9334326ae129a4c3e676"
dependencies = [
"regex",
]
2018-06-17 14:17:36 +03:00
[[package]]
name = "regex-syntax"
2023-05-01 15:02:16 +00:00
version = "0.6.29"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 15:02:16 +00:00
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2018-06-17 14:17:36 +03:00
2023-11-24 07:50:41 +08:00
[[package]]
name = "regex-syntax"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
2018-11-07 14:31:44 +02:00
[[package]]
name = "reqwest"
2023-11-24 07:50:41 +08:00
version = "0.11.22"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b"
2020-05-09 07:22:51 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"base64",
"bytes",
2020-05-09 07:22:51 +03:00
"encoding_rs",
"futures-core",
"futures-util",
2022-01-24 12:10:02 +02:00
"h2",
2020-05-09 07:22:51 +03:00
"http",
"http-body",
"hyper",
2022-04-30 16:17:27 +03:00
"hyper-rustls",
2020-08-09 09:14:39 +03:00
"ipnet",
2020-05-09 07:22:51 +03:00
"js-sys",
"log",
"mime",
2022-10-17 22:53:24 +02:00
"once_cell",
2021-01-07 10:03:20 +02:00
"percent-encoding",
"pin-project-lite",
2022-04-30 16:17:27 +03:00
"rustls",
"rustls-pemfile",
2020-05-09 07:22:51 +03:00
"serde",
"serde_json",
"serde_urlencoded",
2023-11-24 07:50:41 +08:00
"system-configuration",
2020-05-09 07:22:51 +03:00
"tokio",
2022-04-30 16:17:27 +03:00
"tokio-rustls",
2022-10-17 22:53:24 +02:00
"tower-service",
2020-05-09 07:22:51 +03:00
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2022-04-30 16:17:27 +03:00
"webpki-roots",
2020-05-09 07:22:51 +03:00
"winreg",
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "ring"
2023-11-24 07:50:41 +08:00
version = "0.17.5"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b"
2022-04-30 16:17:27 +03:00
dependencies = [
"cc",
2023-11-24 07:50:41 +08:00
"getrandom",
2022-04-30 16:17:27 +03:00
"libc",
"spin",
"untrusted",
2023-11-24 07:50:41 +08:00
"windows-sys 0.48.0",
2022-04-30 16:17:27 +03:00
]
[[package]]
name = "roff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316"
2020-02-11 09:37:22 +02:00
[[package]]
name = "rust-ini"
version = "0.19.0"
2020-02-11 09:37:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e2a3bcec1f113553ef1c88aae6c020a369d03d55b58de9869a0908930385091"
2020-02-11 09:37:22 +02:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-05-09 07:22:51 +03:00
"ordered-multimap",
2020-02-11 09:37:22 +02:00
]
2022-11-11 09:39:29 -05:00
[[package]]
name = "rustc-demangle"
2023-05-01 15:02:16 +00:00
version = "0.1.23"
2022-11-11 09:39:29 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 15:02:16 +00:00
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
[[package]]
name = "rustix"
2023-11-24 07:50:41 +08:00
version = "0.37.27"
2023-05-01 15:02:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
2023-05-01 15:02:16 +00:00
dependencies = [
2023-11-24 07:50:41 +08:00
"bitflags 1.3.2",
2023-05-01 15:02:16 +00:00
"errno",
"io-lifetimes",
"libc",
2023-11-24 07:50:41 +08:00
"linux-raw-sys 0.3.8",
"windows-sys 0.48.0",
]
[[package]]
name = "rustix"
version = "0.38.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc99bc2d4f1fed22595588a013687477aedf3cdcfb26558c559edb67b4d9b22e"
dependencies = [
"bitflags 2.4.1",
"errno",
"libc",
"linux-raw-sys 0.4.11",
2023-05-01 15:02:16 +00:00
"windows-sys 0.48.0",
]
2022-11-11 09:39:29 -05:00
2022-04-30 16:17:27 +03:00
[[package]]
name = "rustls"
2023-11-24 07:50:41 +08:00
version = "0.21.9"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "629648aced5775d558af50b2b4c7b02983a04b312126d45eeead26e7caa498b9"
2022-04-30 16:17:27 +03:00
dependencies = [
"log",
"ring",
2023-06-27 10:02:27 +00:00
"rustls-webpki",
2022-04-30 16:17:27 +03:00
"sct",
]
[[package]]
name = "rustls-pemfile"
2023-11-24 07:50:41 +08:00
version = "1.0.4"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2022-04-30 16:17:27 +03:00
dependencies = [
"base64",
]
2023-06-27 10:02:27 +00:00
[[package]]
name = "rustls-webpki"
2023-11-24 07:50:41 +08:00
version = "0.101.7"
2023-06-27 10:02:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
2023-06-27 10:02:27 +00:00
dependencies = [
"ring",
"untrusted",
]
2022-01-24 12:10:02 +02:00
[[package]]
name = "rustversion"
2023-11-24 07:50:41 +08:00
version = "1.0.14"
2022-01-24 12:10:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2022-01-24 12:10:02 +02:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "ryu"
2023-11-24 07:50:41 +08:00
version = "1.0.15"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
2018-11-07 14:31:44 +02:00
[[package]]
name = "same-file"
2020-02-10 22:17:59 +02:00
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-09 07:22:51 +03:00
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
2020-05-09 07:22:51 +03:00
"winapi-util",
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "sct"
2023-11-24 07:50:41 +08:00
version = "0.7.1"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2022-04-30 16:17:27 +03:00
dependencies = [
"ring",
"untrusted",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "self_update"
2022-04-30 16:17:27 +03:00
version = "0.30.0"
2019-01-13 22:54:51 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-30 16:17:27 +03:00
checksum = "88c865d17fb512577be02a09fd2fd96c31c7e46fe649205d84feefd8b2a332da"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"either",
"flate2",
2021-01-07 10:03:20 +02:00
"hyper",
2020-05-09 07:22:51 +03:00
"indicatif",
2020-06-18 22:25:27 +03:00
"log",
2022-10-17 22:53:24 +02:00
"quick-xml 0.22.0",
2020-05-09 07:22:51 +03:00
"regex",
"reqwest",
"semver",
"serde_json",
"tar",
2020-06-18 22:25:27 +03:00
"tempfile",
2020-05-09 07:22:51 +03:00
"zip",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "semver"
2023-11-24 07:50:41 +08:00
version = "1.0.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090"
[[package]]
name = "serde"
2023-11-24 07:50:41 +08:00
version = "1.0.193"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
2018-12-24 10:09:46 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"serde_derive",
2018-12-24 10:09:46 +02:00
]
[[package]]
name = "serde_derive"
2023-11-24 07:50:41 +08:00
version = "1.0.193"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
2023-11-24 07:50:41 +08:00
"syn 2.0.39",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "serde_json"
2023-11-24 07:50:41 +08:00
version = "1.0.108"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
2018-11-07 14:31:44 +02:00
dependencies = [
2022-03-23 22:31:18 +02:00
"itoa",
2020-05-09 07:22:51 +03:00
"ryu",
"serde",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "serde_repr"
2023-11-24 07:50:41 +08:00
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145"
dependencies = [
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
2023-11-24 07:50:41 +08:00
"syn 2.0.39",
]
[[package]]
name = "serde_spanned"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80"
dependencies = [
"serde",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "serde_urlencoded"
2022-01-24 12:10:02 +02:00
version = "0.7.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-12-07 20:51:41 +02:00
"form_urlencoded",
2022-03-23 22:31:18 +02:00
"itoa",
2020-12-07 20:51:41 +02:00
"ryu",
2020-05-09 07:22:51 +03:00
"serde",
2018-11-07 14:31:44 +02:00
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "sha1"
2023-11-24 07:50:41 +08:00
version = "0.10.6"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2022-03-23 22:31:18 +02:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
2022-03-23 22:31:18 +02:00
]
2022-11-11 09:39:29 -05:00
[[package]]
name = "sharded-slab"
2023-11-24 07:50:41 +08:00
version = "0.1.7"
2022-11-11 09:39:29 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2022-11-11 09:39:29 -05:00
dependencies = [
"lazy_static",
]
[[package]]
name = "shell-words"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
[[package]]
name = "shellexpand"
2023-11-24 07:50:41 +08:00
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
2020-01-05 21:55:05 +02:00
dependencies = [
2022-10-17 22:53:24 +02:00
"dirs",
2020-01-05 21:55:05 +02:00
]
[[package]]
name = "signal-hook-registry"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
dependencies = [
"libc",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "slab"
2023-11-24 07:50:41 +08:00
version = "0.4.9"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2022-10-17 22:53:24 +02:00
dependencies = [
"autocfg",
]
2022-05-15 09:28:22 +03:00
[[package]]
name = "smallvec"
2023-11-24 07:50:41 +08:00
version = "1.11.2"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
2020-02-13 15:38:28 +02:00
[[package]]
name = "socket2"
2023-11-24 07:50:41 +08:00
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
dependencies = [
"libc",
2021-01-07 10:03:20 +02:00
"winapi",
]
2023-11-24 07:50:41 +08:00
[[package]]
name = "socket2"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
dependencies = [
"libc",
"windows-sys 0.48.0",
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "spin"
2023-11-24 07:50:41 +08:00
version = "0.9.8"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2022-04-30 16:17:27 +03:00
[[package]]
2021-07-06 09:38:10 +03:00
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-06 09:38:10 +03:00
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2018-06-12 11:30:03 +03:00
[[package]]
name = "strsim"
version = "0.10.0"
2018-06-12 11:30:03 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2018-09-06 14:42:56 +03:00
2022-01-24 12:10:02 +02:00
[[package]]
name = "strum"
2022-10-17 22:53:24 +02:00
version = "0.24.1"
2022-01-24 12:10:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
2022-01-24 12:10:02 +02:00
dependencies = [
2023-06-27 10:02:27 +00:00
"strum_macros",
2019-09-28 14:41:06 +03:00
]
2022-01-24 12:10:02 +02:00
[[package]]
name = "strum_macros"
2022-10-17 22:53:24 +02:00
version = "0.24.3"
2022-01-24 12:10:02 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
2022-01-24 12:10:02 +02:00
dependencies = [
2023-06-27 10:02:27 +00:00
"heck",
2022-01-24 12:10:02 +02:00
"proc-macro2",
"quote",
"rustversion",
"syn 1.0.109",
2022-01-24 12:10:02 +02:00
]
2019-08-22 21:53:38 +03:00
[[package]]
name = "syn"
version = "1.0.109"
2019-08-22 21:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2019-08-22 21:53:38 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
2022-10-17 22:53:24 +02:00
"unicode-ident",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "syn"
2023-11-24 07:50:41 +08:00
version = "2.0.39"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2018-11-07 14:31:44 +02:00
[[package]]
2023-11-24 07:50:41 +08:00
name = "system-configuration"
version = "0.5.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
2018-11-07 14:31:44 +02:00
dependencies = [
2023-11-24 07:50:41 +08:00
"bitflags 1.3.2",
"core-foundation",
"system-configuration-sys",
2018-11-07 14:31:44 +02:00
]
2022-05-15 09:28:22 +03:00
[[package]]
2023-11-24 07:50:41 +08:00
name = "system-configuration-sys"
version = "0.5.0"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
2022-05-15 09:28:22 +03:00
dependencies = [
2023-11-24 07:50:41 +08:00
"core-foundation-sys",
"libc",
2022-05-15 09:28:22 +03:00
]
2018-11-07 14:31:44 +02:00
[[package]]
2023-11-24 07:50:41 +08:00
name = "tar"
version = "0.4.40"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb"
2018-11-07 14:31:44 +02:00
dependencies = [
2023-11-24 07:50:41 +08:00
"filetime",
"libc",
"xattr",
2018-11-07 14:31:44 +02:00
]
2018-06-17 14:17:36 +03:00
[[package]]
2023-11-24 07:50:41 +08:00
name = "tauri-winrt-notification"
version = "0.1.3"
2018-06-17 14:17:36 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "006851c9ccefa3c38a7646b8cec804bb429def3da10497bfa977179869c3e8e2"
2018-06-17 14:17:36 +03:00
dependencies = [
2023-11-24 07:50:41 +08:00
"quick-xml 0.30.0",
"windows",
2018-06-17 14:17:36 +03:00
]
[[package]]
2023-11-24 07:50:41 +08:00
name = "tempfile"
version = "3.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5"
dependencies = [
"cfg-if",
"fastrand 2.0.1",
"redox_syscall 0.4.1",
"rustix 0.38.25",
"windows-sys 0.48.0",
]
[[package]]
name = "thiserror"
2023-11-24 07:50:41 +08:00
version = "1.0.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
dependencies = [
2020-05-09 07:22:51 +03:00
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2023-11-24 07:50:41 +08:00
version = "1.0.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
dependencies = [
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
2023-11-24 07:50:41 +08:00
"syn 2.0.39",
]
2022-11-11 09:39:29 -05:00
[[package]]
name = "thread_local"
version = "1.1.7"
2022-11-11 09:39:29 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2022-11-11 09:39:29 -05:00
dependencies = [
"cfg-if",
2022-11-11 09:39:29 -05:00
"once_cell",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "time"
2023-11-24 07:50:41 +08:00
version = "0.3.30"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5"
2022-03-23 22:31:18 +02:00
dependencies = [
2023-11-24 07:50:41 +08:00
"deranged",
2022-04-30 16:17:27 +03:00
"itoa",
2023-11-24 07:50:41 +08:00
"powerfmt",
2022-11-02 16:25:54 +00:00
"serde",
"time-core",
2022-04-30 16:17:27 +03:00
"time-macros",
2022-03-23 22:31:18 +02:00
]
2022-11-02 16:25:54 +00:00
[[package]]
name = "time-core"
2023-11-24 07:50:41 +08:00
version = "0.1.2"
2022-11-02 16:25:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2022-11-02 16:25:54 +00:00
2022-04-30 16:17:27 +03:00
[[package]]
name = "time-macros"
2023-11-24 07:50:41 +08:00
version = "0.2.15"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"
2022-11-02 16:25:54 +00:00
dependencies = [
"time-core",
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "tiny-keccak"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
dependencies = [
"crunchy",
]
2020-06-18 22:25:27 +03:00
[[package]]
name = "tinyvec"
2022-05-15 09:28:22 +03:00
version = "1.6.0"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-05-15 09:28:22 +03:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2020-12-07 20:51:41 +02:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2020-06-18 22:25:27 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "tokio"
2023-11-24 07:50:41 +08:00
version = "1.34.0"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "d0c014766411e834f7af5b8f4cf46257aab4036ca95e9d2c144a10f59ad6f5b9"
2018-11-07 14:31:44 +02:00
dependencies = [
2023-11-24 07:50:41 +08:00
"backtrace",
"bytes",
"libc",
2020-05-09 07:22:51 +03:00
"mio",
"num_cpus",
2021-01-07 10:03:20 +02:00
"pin-project-lite",
"signal-hook-registry",
2023-11-24 07:50:41 +08:00
"socket2 0.5.5",
"windows-sys 0.48.0",
2018-11-07 14:31:44 +02:00
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "tokio-rustls"
2023-06-27 10:02:27 +00:00
version = "0.24.1"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 10:02:27 +00:00
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
2022-04-30 16:17:27 +03:00
dependencies = [
"rustls",
"tokio",
]
2020-02-13 15:38:28 +02:00
[[package]]
2020-05-09 07:22:51 +03:00
name = "tokio-util"
2023-11-24 07:50:41 +08:00
version = "0.7.10"
2020-02-13 15:38:28 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
2020-02-13 15:38:28 +02:00
dependencies = [
"bytes",
2020-05-09 07:22:51 +03:00
"futures-core",
"futures-sink",
2021-01-07 10:03:20 +02:00
"pin-project-lite",
2020-05-09 07:22:51 +03:00
"tokio",
2022-12-06 19:22:06 +00:00
"tracing",
2019-03-14 21:41:16 +02:00
]
[[package]]
name = "toml"
2023-11-24 07:50:41 +08:00
version = "0.8.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35"
dependencies = [
2020-05-09 07:22:51 +03:00
"serde",
2023-11-24 07:50:41 +08:00
"serde_spanned",
"toml_datetime",
"toml_edit 0.21.0",
]
v10.2.5 release (#330) * Don't show desktop notification on error (if `skip_notify = true`) (#275) * Use ─ (U+2500) to draw borders (#282) * Adds Pclinuxos support (#283) * Add Devkitpro Pacman support (#291) * Added support for Neovim package manager lazy.nvim (#293) * Added support for lazy.nvim From https://github.com/folke/lazy.nvim Authored-by: Jacob Lane Ledbetter <jledbetter460@gmail.com> * Make garuda-update update AUR packages by default (#296) * fix(#298): Don't throw error if no Helm repository found (#305) * Skip .NET when `dotnet tool list` is not successful (#302) * feat(pacstall): add `-y` flag variant (#312) * Add openSUSE MicroOS support (#315) * Adds notify-send timeout of 10s (#318) * Don't run yum when rpm-ostree is available (#313) * don't run yum when rpm-ostree is available * Clippy fix * rpm-ostree: set default value to true * Fixes if loop error * Fixes gem update --system requires sudo now (#317) * Fixes gem update --system requires sudo now * rubygem: Adds arg -EH to sudo * Use fixed nala path instead of which(nala) (#314) * Adds notify-send bug warning when topgrade is run (#324) * Adds notify-send bug warning when topgrade is run * fix typo + clippy * notify-send warning respects skip_notify flag * nix: Adds additional arguments support (#325) * Adds pip-review and pipupgrade support (#316) * Adds pip-review and pipupgrade support * Python: fixes pip_review and pipupgrade * v10.2.5 patch (#329) * WSL: Adds new wsl --update flags (#327) * wsl: Updates available flags * Clippy fix * Add WslUpdate runner * wsl: Code Typo * wsl: Code Typos * wsl: Code Typos * wsl: Code Typo * Adds AM Package Manager (#328) * Adds AM Package Manager * Clippy fixes * Cargo fmt * Moves am to linux only in main file --------- Co-authored-by: Guilherme Silva <626206+guihkx@users.noreply.github.com> Co-authored-by: Gabriel Augendre <gabriel@augendre.info> Co-authored-by: Cat Core <34719527+arthurbambou@users.noreply.github.com> Co-authored-by: Hugo Haas <hugoh@hugoh.net> Co-authored-by: Baptiste <32563450+BapRx@users.noreply.github.com> Co-authored-by: bbx0 <39773919+bbx0@users.noreply.github.com> Co-authored-by: Sourajyoti Basak <wiz28@protonmail.com>
2023-01-29 19:19:27 +00:00
[[package]]
name = "toml_datetime"
2023-11-24 07:50:41 +08:00
version = "0.6.5"
v10.2.5 release (#330) * Don't show desktop notification on error (if `skip_notify = true`) (#275) * Use ─ (U+2500) to draw borders (#282) * Adds Pclinuxos support (#283) * Add Devkitpro Pacman support (#291) * Added support for Neovim package manager lazy.nvim (#293) * Added support for lazy.nvim From https://github.com/folke/lazy.nvim Authored-by: Jacob Lane Ledbetter <jledbetter460@gmail.com> * Make garuda-update update AUR packages by default (#296) * fix(#298): Don't throw error if no Helm repository found (#305) * Skip .NET when `dotnet tool list` is not successful (#302) * feat(pacstall): add `-y` flag variant (#312) * Add openSUSE MicroOS support (#315) * Adds notify-send timeout of 10s (#318) * Don't run yum when rpm-ostree is available (#313) * don't run yum when rpm-ostree is available * Clippy fix * rpm-ostree: set default value to true * Fixes if loop error * Fixes gem update --system requires sudo now (#317) * Fixes gem update --system requires sudo now * rubygem: Adds arg -EH to sudo * Use fixed nala path instead of which(nala) (#314) * Adds notify-send bug warning when topgrade is run (#324) * Adds notify-send bug warning when topgrade is run * fix typo + clippy * notify-send warning respects skip_notify flag * nix: Adds additional arguments support (#325) * Adds pip-review and pipupgrade support (#316) * Adds pip-review and pipupgrade support * Python: fixes pip_review and pipupgrade * v10.2.5 patch (#329) * WSL: Adds new wsl --update flags (#327) * wsl: Updates available flags * Clippy fix * Add WslUpdate runner * wsl: Code Typo * wsl: Code Typos * wsl: Code Typos * wsl: Code Typo * Adds AM Package Manager (#328) * Adds AM Package Manager * Clippy fixes * Cargo fmt * Moves am to linux only in main file --------- Co-authored-by: Guilherme Silva <626206+guihkx@users.noreply.github.com> Co-authored-by: Gabriel Augendre <gabriel@augendre.info> Co-authored-by: Cat Core <34719527+arthurbambou@users.noreply.github.com> Co-authored-by: Hugo Haas <hugoh@hugoh.net> Co-authored-by: Baptiste <32563450+BapRx@users.noreply.github.com> Co-authored-by: bbx0 <39773919+bbx0@users.noreply.github.com> Co-authored-by: Sourajyoti Basak <wiz28@protonmail.com>
2023-01-29 19:19:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
dependencies = [
"serde",
]
v10.2.5 release (#330) * Don't show desktop notification on error (if `skip_notify = true`) (#275) * Use ─ (U+2500) to draw borders (#282) * Adds Pclinuxos support (#283) * Add Devkitpro Pacman support (#291) * Added support for Neovim package manager lazy.nvim (#293) * Added support for lazy.nvim From https://github.com/folke/lazy.nvim Authored-by: Jacob Lane Ledbetter <jledbetter460@gmail.com> * Make garuda-update update AUR packages by default (#296) * fix(#298): Don't throw error if no Helm repository found (#305) * Skip .NET when `dotnet tool list` is not successful (#302) * feat(pacstall): add `-y` flag variant (#312) * Add openSUSE MicroOS support (#315) * Adds notify-send timeout of 10s (#318) * Don't run yum when rpm-ostree is available (#313) * don't run yum when rpm-ostree is available * Clippy fix * rpm-ostree: set default value to true * Fixes if loop error * Fixes gem update --system requires sudo now (#317) * Fixes gem update --system requires sudo now * rubygem: Adds arg -EH to sudo * Use fixed nala path instead of which(nala) (#314) * Adds notify-send bug warning when topgrade is run (#324) * Adds notify-send bug warning when topgrade is run * fix typo + clippy * notify-send warning respects skip_notify flag * nix: Adds additional arguments support (#325) * Adds pip-review and pipupgrade support (#316) * Adds pip-review and pipupgrade support * Python: fixes pip_review and pipupgrade * v10.2.5 patch (#329) * WSL: Adds new wsl --update flags (#327) * wsl: Updates available flags * Clippy fix * Add WslUpdate runner * wsl: Code Typo * wsl: Code Typos * wsl: Code Typos * wsl: Code Typo * Adds AM Package Manager (#328) * Adds AM Package Manager * Clippy fixes * Cargo fmt * Moves am to linux only in main file --------- Co-authored-by: Guilherme Silva <626206+guihkx@users.noreply.github.com> Co-authored-by: Gabriel Augendre <gabriel@augendre.info> Co-authored-by: Cat Core <34719527+arthurbambou@users.noreply.github.com> Co-authored-by: Hugo Haas <hugoh@hugoh.net> Co-authored-by: Baptiste <32563450+BapRx@users.noreply.github.com> Co-authored-by: bbx0 <39773919+bbx0@users.noreply.github.com> Co-authored-by: Sourajyoti Basak <wiz28@protonmail.com>
2023-01-29 19:19:27 +00:00
[[package]]
name = "toml_edit"
2023-11-24 07:50:41 +08:00
version = "0.19.15"
v10.2.5 release (#330) * Don't show desktop notification on error (if `skip_notify = true`) (#275) * Use ─ (U+2500) to draw borders (#282) * Adds Pclinuxos support (#283) * Add Devkitpro Pacman support (#291) * Added support for Neovim package manager lazy.nvim (#293) * Added support for lazy.nvim From https://github.com/folke/lazy.nvim Authored-by: Jacob Lane Ledbetter <jledbetter460@gmail.com> * Make garuda-update update AUR packages by default (#296) * fix(#298): Don't throw error if no Helm repository found (#305) * Skip .NET when `dotnet tool list` is not successful (#302) * feat(pacstall): add `-y` flag variant (#312) * Add openSUSE MicroOS support (#315) * Adds notify-send timeout of 10s (#318) * Don't run yum when rpm-ostree is available (#313) * don't run yum when rpm-ostree is available * Clippy fix * rpm-ostree: set default value to true * Fixes if loop error * Fixes gem update --system requires sudo now (#317) * Fixes gem update --system requires sudo now * rubygem: Adds arg -EH to sudo * Use fixed nala path instead of which(nala) (#314) * Adds notify-send bug warning when topgrade is run (#324) * Adds notify-send bug warning when topgrade is run * fix typo + clippy * notify-send warning respects skip_notify flag * nix: Adds additional arguments support (#325) * Adds pip-review and pipupgrade support (#316) * Adds pip-review and pipupgrade support * Python: fixes pip_review and pipupgrade * v10.2.5 patch (#329) * WSL: Adds new wsl --update flags (#327) * wsl: Updates available flags * Clippy fix * Add WslUpdate runner * wsl: Code Typo * wsl: Code Typos * wsl: Code Typos * wsl: Code Typo * Adds AM Package Manager (#328) * Adds AM Package Manager * Clippy fixes * Cargo fmt * Moves am to linux only in main file --------- Co-authored-by: Guilherme Silva <626206+guihkx@users.noreply.github.com> Co-authored-by: Gabriel Augendre <gabriel@augendre.info> Co-authored-by: Cat Core <34719527+arthurbambou@users.noreply.github.com> Co-authored-by: Hugo Haas <hugoh@hugoh.net> Co-authored-by: Baptiste <32563450+BapRx@users.noreply.github.com> Co-authored-by: bbx0 <39773919+bbx0@users.noreply.github.com> Co-authored-by: Sourajyoti Basak <wiz28@protonmail.com>
2023-01-29 19:19:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
v10.2.5 release (#330) * Don't show desktop notification on error (if `skip_notify = true`) (#275) * Use ─ (U+2500) to draw borders (#282) * Adds Pclinuxos support (#283) * Add Devkitpro Pacman support (#291) * Added support for Neovim package manager lazy.nvim (#293) * Added support for lazy.nvim From https://github.com/folke/lazy.nvim Authored-by: Jacob Lane Ledbetter <jledbetter460@gmail.com> * Make garuda-update update AUR packages by default (#296) * fix(#298): Don't throw error if no Helm repository found (#305) * Skip .NET when `dotnet tool list` is not successful (#302) * feat(pacstall): add `-y` flag variant (#312) * Add openSUSE MicroOS support (#315) * Adds notify-send timeout of 10s (#318) * Don't run yum when rpm-ostree is available (#313) * don't run yum when rpm-ostree is available * Clippy fix * rpm-ostree: set default value to true * Fixes if loop error * Fixes gem update --system requires sudo now (#317) * Fixes gem update --system requires sudo now * rubygem: Adds arg -EH to sudo * Use fixed nala path instead of which(nala) (#314) * Adds notify-send bug warning when topgrade is run (#324) * Adds notify-send bug warning when topgrade is run * fix typo + clippy * notify-send warning respects skip_notify flag * nix: Adds additional arguments support (#325) * Adds pip-review and pipupgrade support (#316) * Adds pip-review and pipupgrade support * Python: fixes pip_review and pipupgrade * v10.2.5 patch (#329) * WSL: Adds new wsl --update flags (#327) * wsl: Updates available flags * Clippy fix * Add WslUpdate runner * wsl: Code Typo * wsl: Code Typos * wsl: Code Typos * wsl: Code Typo * Adds AM Package Manager (#328) * Adds AM Package Manager * Clippy fixes * Cargo fmt * Moves am to linux only in main file --------- Co-authored-by: Guilherme Silva <626206+guihkx@users.noreply.github.com> Co-authored-by: Gabriel Augendre <gabriel@augendre.info> Co-authored-by: Cat Core <34719527+arthurbambou@users.noreply.github.com> Co-authored-by: Hugo Haas <hugoh@hugoh.net> Co-authored-by: Baptiste <32563450+BapRx@users.noreply.github.com> Co-authored-by: bbx0 <39773919+bbx0@users.noreply.github.com> Co-authored-by: Sourajyoti Basak <wiz28@protonmail.com>
2023-01-29 19:19:27 +00:00
dependencies = [
"indexmap",
"toml_datetime",
"winnow",
v10.2.5 release (#330) * Don't show desktop notification on error (if `skip_notify = true`) (#275) * Use ─ (U+2500) to draw borders (#282) * Adds Pclinuxos support (#283) * Add Devkitpro Pacman support (#291) * Added support for Neovim package manager lazy.nvim (#293) * Added support for lazy.nvim From https://github.com/folke/lazy.nvim Authored-by: Jacob Lane Ledbetter <jledbetter460@gmail.com> * Make garuda-update update AUR packages by default (#296) * fix(#298): Don't throw error if no Helm repository found (#305) * Skip .NET when `dotnet tool list` is not successful (#302) * feat(pacstall): add `-y` flag variant (#312) * Add openSUSE MicroOS support (#315) * Adds notify-send timeout of 10s (#318) * Don't run yum when rpm-ostree is available (#313) * don't run yum when rpm-ostree is available * Clippy fix * rpm-ostree: set default value to true * Fixes if loop error * Fixes gem update --system requires sudo now (#317) * Fixes gem update --system requires sudo now * rubygem: Adds arg -EH to sudo * Use fixed nala path instead of which(nala) (#314) * Adds notify-send bug warning when topgrade is run (#324) * Adds notify-send bug warning when topgrade is run * fix typo + clippy * notify-send warning respects skip_notify flag * nix: Adds additional arguments support (#325) * Adds pip-review and pipupgrade support (#316) * Adds pip-review and pipupgrade support * Python: fixes pip_review and pipupgrade * v10.2.5 patch (#329) * WSL: Adds new wsl --update flags (#327) * wsl: Updates available flags * Clippy fix * Add WslUpdate runner * wsl: Code Typo * wsl: Code Typos * wsl: Code Typos * wsl: Code Typo * Adds AM Package Manager (#328) * Adds AM Package Manager * Clippy fixes * Cargo fmt * Moves am to linux only in main file --------- Co-authored-by: Guilherme Silva <626206+guihkx@users.noreply.github.com> Co-authored-by: Gabriel Augendre <gabriel@augendre.info> Co-authored-by: Cat Core <34719527+arthurbambou@users.noreply.github.com> Co-authored-by: Hugo Haas <hugoh@hugoh.net> Co-authored-by: Baptiste <32563450+BapRx@users.noreply.github.com> Co-authored-by: bbx0 <39773919+bbx0@users.noreply.github.com> Co-authored-by: Sourajyoti Basak <wiz28@protonmail.com>
2023-01-29 19:19:27 +00:00
]
2023-11-24 07:50:41 +08:00
[[package]]
name = "toml_edit"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03"
dependencies = [
"indexmap",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
2018-05-29 23:48:30 +03:00
[[package]]
name = "topgrade"
2024-01-25 15:40:52 +08:00
version = "14.0.1"
2021-07-06 09:40:04 +03:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2021-07-19 09:34:14 +03:00
"chrono",
"clap",
"clap_complete",
"clap_mangen",
2022-11-11 09:39:29 -05:00
"color-eyre",
2021-07-19 09:34:14 +03:00
"console",
"etcetera",
2021-07-19 09:34:14 +03:00
"futures",
"glob",
"home",
2021-07-19 09:34:14 +03:00
"lazy_static",
"merge",
2023-11-24 07:50:41 +08:00
"nix 0.27.1",
2020-05-09 07:22:51 +03:00
"notify-rust",
"once_cell",
"parselnk",
"regex",
"regex-split",
2020-05-09 07:22:51 +03:00
"rust-ini",
"self_update",
"semver",
2020-05-09 07:22:51 +03:00
"serde",
"shell-words",
2020-05-09 07:22:51 +03:00
"shellexpand",
2023-06-27 10:02:27 +00:00
"strum",
2020-05-09 07:22:51 +03:00
"tempfile",
"thiserror",
"tokio",
2020-05-09 07:22:51 +03:00
"toml",
2022-11-16 13:43:57 -05:00
"tracing",
"tracing-subscriber",
2020-05-09 07:22:51 +03:00
"walkdir",
"which",
2021-01-07 10:03:20 +02:00
"winapi",
2020-05-09 07:22:51 +03:00
]
[[package]]
name = "tower-service"
2022-10-17 22:53:24 +02:00
version = "0.3.2"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2018-05-29 23:48:30 +03:00
2020-07-14 08:20:01 +03:00
[[package]]
name = "tracing"
2023-11-24 07:50:41 +08:00
version = "0.1.40"
2020-07-14 08:20:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2020-07-14 08:20:01 +03:00
dependencies = [
2022-11-16 13:43:57 -05:00
"log",
2021-01-07 10:03:20 +02:00
"pin-project-lite",
2022-05-15 09:28:22 +03:00
"tracing-attributes",
2020-07-14 08:20:01 +03:00
"tracing-core",
]
2022-05-15 09:28:22 +03:00
[[package]]
name = "tracing-attributes"
2023-11-24 07:50:41 +08:00
version = "0.1.27"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
2022-05-15 09:28:22 +03:00
dependencies = [
"proc-macro2",
"quote",
2023-11-24 07:50:41 +08:00
"syn 2.0.39",
2022-05-15 09:28:22 +03:00
]
2020-07-14 08:20:01 +03:00
[[package]]
name = "tracing-core"
2023-11-24 07:50:41 +08:00
version = "0.1.32"
2020-07-14 08:20:01 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2020-07-14 08:20:01 +03:00
dependencies = [
2022-10-17 22:53:24 +02:00
"once_cell",
2022-11-11 09:39:29 -05:00
"valuable",
]
[[package]]
name = "tracing-error"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
dependencies = [
"tracing",
"tracing-subscriber",
]
2022-11-16 13:43:57 -05:00
[[package]]
name = "tracing-log"
2023-11-24 07:50:41 +08:00
version = "0.2.0"
2022-11-16 13:43:57 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2022-11-16 13:43:57 -05:00
dependencies = [
"log",
2023-11-24 07:50:41 +08:00
"once_cell",
2022-11-16 13:43:57 -05:00
"tracing-core",
]
2022-11-11 09:39:29 -05:00
[[package]]
name = "tracing-subscriber"
2023-11-24 07:50:41 +08:00
version = "0.3.18"
2022-11-11 09:39:29 -05:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
2022-11-11 09:39:29 -05:00
dependencies = [
2022-11-16 13:43:57 -05:00
"matchers",
"nu-ansi-term",
"once_cell",
"regex",
2022-11-11 09:39:29 -05:00
"sharded-slab",
2022-11-16 13:43:57 -05:00
"smallvec",
2022-11-11 09:39:29 -05:00
"thread_local",
2023-11-24 07:50:41 +08:00
"time",
2022-11-16 13:43:57 -05:00
"tracing",
2022-11-11 09:39:29 -05:00
"tracing-core",
2022-11-16 13:43:57 -05:00
"tracing-log",
2020-07-14 08:20:01 +03:00
]
2018-11-07 14:31:44 +02:00
[[package]]
2020-02-13 15:38:28 +02:00
name = "try-lock"
v10.2.5 release (#330) * Don't show desktop notification on error (if `skip_notify = true`) (#275) * Use ─ (U+2500) to draw borders (#282) * Adds Pclinuxos support (#283) * Add Devkitpro Pacman support (#291) * Added support for Neovim package manager lazy.nvim (#293) * Added support for lazy.nvim From https://github.com/folke/lazy.nvim Authored-by: Jacob Lane Ledbetter <jledbetter460@gmail.com> * Make garuda-update update AUR packages by default (#296) * fix(#298): Don't throw error if no Helm repository found (#305) * Skip .NET when `dotnet tool list` is not successful (#302) * feat(pacstall): add `-y` flag variant (#312) * Add openSUSE MicroOS support (#315) * Adds notify-send timeout of 10s (#318) * Don't run yum when rpm-ostree is available (#313) * don't run yum when rpm-ostree is available * Clippy fix * rpm-ostree: set default value to true * Fixes if loop error * Fixes gem update --system requires sudo now (#317) * Fixes gem update --system requires sudo now * rubygem: Adds arg -EH to sudo * Use fixed nala path instead of which(nala) (#314) * Adds notify-send bug warning when topgrade is run (#324) * Adds notify-send bug warning when topgrade is run * fix typo + clippy * notify-send warning respects skip_notify flag * nix: Adds additional arguments support (#325) * Adds pip-review and pipupgrade support (#316) * Adds pip-review and pipupgrade support * Python: fixes pip_review and pipupgrade * v10.2.5 patch (#329) * WSL: Adds new wsl --update flags (#327) * wsl: Updates available flags * Clippy fix * Add WslUpdate runner * wsl: Code Typo * wsl: Code Typos * wsl: Code Typos * wsl: Code Typo * Adds AM Package Manager (#328) * Adds AM Package Manager * Clippy fixes * Cargo fmt * Moves am to linux only in main file --------- Co-authored-by: Guilherme Silva <626206+guihkx@users.noreply.github.com> Co-authored-by: Gabriel Augendre <gabriel@augendre.info> Co-authored-by: Cat Core <34719527+arthurbambou@users.noreply.github.com> Co-authored-by: Hugo Haas <hugoh@hugoh.net> Co-authored-by: Baptiste <32563450+BapRx@users.noreply.github.com> Co-authored-by: bbx0 <39773919+bbx0@users.noreply.github.com> Co-authored-by: Sourajyoti Basak <wiz28@protonmail.com>
2023-01-29 19:19:27 +00:00
version = "0.2.4"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
v10.2.5 release (#330) * Don't show desktop notification on error (if `skip_notify = true`) (#275) * Use ─ (U+2500) to draw borders (#282) * Adds Pclinuxos support (#283) * Add Devkitpro Pacman support (#291) * Added support for Neovim package manager lazy.nvim (#293) * Added support for lazy.nvim From https://github.com/folke/lazy.nvim Authored-by: Jacob Lane Ledbetter <jledbetter460@gmail.com> * Make garuda-update update AUR packages by default (#296) * fix(#298): Don't throw error if no Helm repository found (#305) * Skip .NET when `dotnet tool list` is not successful (#302) * feat(pacstall): add `-y` flag variant (#312) * Add openSUSE MicroOS support (#315) * Adds notify-send timeout of 10s (#318) * Don't run yum when rpm-ostree is available (#313) * don't run yum when rpm-ostree is available * Clippy fix * rpm-ostree: set default value to true * Fixes if loop error * Fixes gem update --system requires sudo now (#317) * Fixes gem update --system requires sudo now * rubygem: Adds arg -EH to sudo * Use fixed nala path instead of which(nala) (#314) * Adds notify-send bug warning when topgrade is run (#324) * Adds notify-send bug warning when topgrade is run * fix typo + clippy * notify-send warning respects skip_notify flag * nix: Adds additional arguments support (#325) * Adds pip-review and pipupgrade support (#316) * Adds pip-review and pipupgrade support * Python: fixes pip_review and pipupgrade * v10.2.5 patch (#329) * WSL: Adds new wsl --update flags (#327) * wsl: Updates available flags * Clippy fix * Add WslUpdate runner * wsl: Code Typo * wsl: Code Typos * wsl: Code Typos * wsl: Code Typo * Adds AM Package Manager (#328) * Adds AM Package Manager * Clippy fixes * Cargo fmt * Moves am to linux only in main file --------- Co-authored-by: Guilherme Silva <626206+guihkx@users.noreply.github.com> Co-authored-by: Gabriel Augendre <gabriel@augendre.info> Co-authored-by: Cat Core <34719527+arthurbambou@users.noreply.github.com> Co-authored-by: Hugo Haas <hugoh@hugoh.net> Co-authored-by: Baptiste <32563450+BapRx@users.noreply.github.com> Co-authored-by: bbx0 <39773919+bbx0@users.noreply.github.com> Co-authored-by: Sourajyoti Basak <wiz28@protonmail.com>
2023-01-29 19:19:27 +00:00
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2019-05-12 10:20:40 +03:00
[[package]]
name = "typenum"
2023-11-24 07:50:41 +08:00
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2022-05-15 09:28:22 +03:00
[[package]]
name = "uds_windows"
2022-10-17 22:53:24 +02:00
version = "1.0.2"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d"
2022-05-15 09:28:22 +03:00
dependencies = [
2022-10-17 22:53:24 +02:00
"tempfile",
2022-05-15 09:28:22 +03:00
"winapi",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "unicode-bidi"
2023-05-01 15:02:16 +00:00
version = "0.3.13"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-01 15:02:16 +00:00
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2018-11-07 14:31:44 +02:00
2022-10-17 22:53:24 +02:00
[[package]]
name = "unicode-ident"
2023-11-24 07:50:41 +08:00
version = "1.0.12"
2022-10-17 22:53:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2022-10-17 22:53:24 +02:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "unicode-normalization"
2022-10-17 22:53:24 +02:00
version = "0.1.22"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-17 22:53:24 +02:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2019-01-22 11:43:39 +02:00
dependencies = [
2020-06-18 22:25:27 +03:00
"tinyvec",
2019-01-22 11:43:39 +02:00
]
2018-11-07 14:31:44 +02:00
2018-06-12 11:30:03 +03:00
[[package]]
name = "unicode-width"
2023-11-24 07:50:41 +08:00
version = "0.1.11"
2019-08-22 21:53:38 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2019-08-22 21:53:38 +03:00
2022-04-30 16:17:27 +03:00
[[package]]
name = "untrusted"
2023-11-24 07:50:41 +08:00
version = "0.9.0"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2022-04-30 16:17:27 +03:00
2018-11-07 14:31:44 +02:00
[[package]]
name = "url"
2023-11-24 07:50:41 +08:00
version = "2.5.0"
2019-09-04 21:07:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
2019-09-04 21:07:43 +03:00
dependencies = [
2020-12-07 20:51:41 +02:00
"form_urlencoded",
2020-05-09 07:22:51 +03:00
"idna",
2021-01-07 10:03:20 +02:00
"percent-encoding",
2020-02-13 15:38:28 +02:00
]
2023-11-24 07:50:41 +08:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2022-11-11 09:39:29 -05:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2019-11-15 07:08:46 +02:00
[[package]]
name = "version_check"
2022-01-24 12:10:02 +02:00
version = "0.9.4"
2019-11-15 07:08:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-01-24 12:10:02 +02:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2019-11-15 07:08:46 +02:00
[[package]]
name = "waker-fn"
2023-11-24 07:50:41 +08:00
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
[[package]]
name = "walkdir"
2023-11-24 07:50:41 +08:00
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
dependencies = [
2020-05-09 07:22:51 +03:00
"same-file",
"winapi-util",
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "want"
2023-06-27 10:02:27 +00:00
version = "0.3.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 10:02:27 +00:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"try-lock",
2018-11-07 14:31:44 +02:00
]
2020-11-02 14:00:04 +02:00
[[package]]
name = "wasi"
2022-03-23 22:31:18 +02:00
version = "0.11.0+wasi-snapshot-preview1"
2020-11-02 14:00:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-03-23 22:31:18 +02:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2020-11-02 14:00:04 +02:00
2020-05-09 07:22:51 +03:00
[[package]]
name = "wasm-bindgen"
2023-11-24 07:50:41 +08:00
version = "0.2.88"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce"
2020-05-09 07:22:51 +03:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-05-09 07:22:51 +03:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2023-11-24 07:50:41 +08:00
version = "0.2.88"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217"
2020-05-09 07:22:51 +03:00
dependencies = [
"bumpalo",
"log",
2022-10-17 22:53:24 +02:00
"once_cell",
2020-05-09 07:22:51 +03:00
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
2023-11-24 07:50:41 +08:00
"syn 2.0.39",
2020-05-09 07:22:51 +03:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2023-11-24 07:50:41 +08:00
version = "0.4.38"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02"
2020-05-09 07:22:51 +03:00
dependencies = [
2022-03-23 22:31:18 +02:00
"cfg-if",
2020-05-09 07:22:51 +03:00
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2023-11-24 07:50:41 +08:00
version = "0.2.88"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2"
2020-05-09 07:22:51 +03:00
dependencies = [
2021-10-25 22:41:12 +03:00
"quote",
2020-05-09 07:22:51 +03:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2023-11-24 07:50:41 +08:00
version = "0.2.88"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907"
2020-05-09 07:22:51 +03:00
dependencies = [
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
2023-11-24 07:50:41 +08:00
"syn 2.0.39",
2020-05-09 07:22:51 +03:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2023-11-24 07:50:41 +08:00
version = "0.2.88"
2020-12-07 20:51:41 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b"
2020-12-07 20:51:41 +02:00
2020-05-09 07:22:51 +03:00
[[package]]
name = "web-sys"
2023-11-24 07:50:41 +08:00
version = "0.3.65"
2020-05-09 07:22:51 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85"
2020-05-09 07:22:51 +03:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2022-04-30 16:17:27 +03:00
[[package]]
name = "webpki-roots"
2023-11-24 07:50:41 +08:00
version = "0.25.3"
2022-04-30 16:17:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10"
2022-04-30 16:17:27 +03:00
2018-05-29 23:48:30 +03:00
[[package]]
name = "which"
version = "4.1.0"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe"
2018-05-29 23:48:30 +03:00
dependencies = [
"either",
2020-05-09 07:22:51 +03:00
"libc",
2018-05-29 23:48:30 +03:00
]
[[package]]
name = "widestring"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
2018-05-29 23:48:30 +03:00
[[package]]
name = "winapi"
2020-06-30 12:23:05 +03:00
version = "0.3.9"
2018-05-29 23:48:30 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-30 12:23:05 +03:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2018-05-29 23:48:30 +03:00
dependencies = [
2020-05-09 07:22:51 +03:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2018-05-29 23:48:30 +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-09 07:22:51 +03:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018-05-29 23:48:30 +03:00
2018-08-27 15:24:08 +03:00
[[package]]
name = "winapi-util"
2023-11-24 07:50:41 +08:00
version = "0.1.6"
2018-08-27 15:24:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
2018-08-27 15:24:08 +03:00
dependencies = [
2021-01-07 10:03:20 +02:00
"winapi",
2018-08-27 15:24:08 +03:00
]
2018-05-29 23:48:30 +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-09 07:22:51 +03:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2018-05-29 23:48:30 +03:00
2019-07-31 14:31:28 +03:00
[[package]]
2021-10-25 22:41:12 +03:00
name = "windows"
2023-11-24 07:50:41 +08:00
version = "0.51.1"
2019-07-31 14:31:28 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9"
2019-07-31 14:31:28 +03:00
dependencies = [
2023-11-24 07:50:41 +08:00
"windows-core",
"windows-targets 0.48.5",
2019-07-31 14:31:28 +03:00
]
2023-05-01 15:02:16 +00:00
[[package]]
2023-11-24 07:50:41 +08:00
name = "windows-core"
version = "0.51.1"
2023-05-01 15:02:16 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64"
2023-05-01 15:02:16 +00:00
dependencies = [
2023-11-24 07:50:41 +08:00
"windows-targets 0.48.5",
2023-05-01 15:02:16 +00:00
]
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets 0.42.2",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-11-24 07:50:41 +08:00
"windows-targets 0.48.5",
]
[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
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",
]
[[package]]
name = "windows-targets"
2023-11-24 07:50:41 +08:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
2023-11-24 07:50:41 +08: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",
]
2022-05-15 09:28:22 +03:00
[[package]]
2022-11-02 16:25:54 +00:00
name = "windows_aarch64_gnullvm"
version = "0.42.2"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2022-05-15 09:28:22 +03:00
[[package]]
name = "windows_aarch64_gnullvm"
2023-11-24 07:50:41 +08:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2021-10-25 22:41:12 +03:00
2022-05-15 09:28:22 +03:00
[[package]]
2022-11-02 16:25:54 +00:00
name = "windows_aarch64_msvc"
version = "0.42.2"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2022-05-15 09:28:22 +03:00
[[package]]
name = "windows_aarch64_msvc"
2023-11-24 07:50:41 +08:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2021-10-25 22:41:12 +03:00
2022-05-15 09:28:22 +03:00
[[package]]
2022-11-02 16:25:54 +00:00
name = "windows_i686_gnu"
version = "0.42.2"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2022-05-15 09:28:22 +03:00
[[package]]
name = "windows_i686_gnu"
2023-11-24 07:50:41 +08:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2021-10-25 22:41:12 +03:00
2022-05-15 09:28:22 +03:00
[[package]]
2022-11-02 16:25:54 +00:00
name = "windows_i686_msvc"
version = "0.42.2"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2022-05-15 09:28:22 +03:00
[[package]]
name = "windows_i686_msvc"
2023-11-24 07:50:41 +08:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2021-10-25 22:41:12 +03:00
2022-05-15 09:28:22 +03:00
[[package]]
2022-11-02 16:25:54 +00:00
name = "windows_x86_64_gnu"
version = "0.42.2"
2022-11-02 16:25:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2022-11-02 16:25:54 +00:00
[[package]]
name = "windows_x86_64_gnu"
2023-11-24 07:50:41 +08:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2022-11-02 16:25:54 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
2022-05-15 09:28:22 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2022-05-15 09:28:22 +03:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-11-24 07:50:41 +08:00
version = "0.48.5"
2022-10-17 22:53:24 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2022-10-17 22:53:24 +02:00
2022-11-02 16:25:54 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
2022-11-02 16:25:54 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2022-11-02 16:25:54 +00:00
[[package]]
name = "windows_x86_64_msvc"
2023-11-24 07:50:41 +08:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
[[package]]
name = "winnow"
2023-11-24 07:50:41 +08:00
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "829846f3e3db426d4cee4510841b71a8e58aa2a76b1132579487ae430ccd9c7b"
dependencies = [
"memchr",
]
2021-10-25 22:41:12 +03:00
[[package]]
name = "winreg"
2023-11-24 07:50:41 +08:00
version = "0.50.0"
2020-06-18 22:25:27 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
2020-06-18 22:25:27 +03:00
dependencies = [
2023-11-24 07:50:41 +08:00
"cfg-if",
"windows-sys 0.48.0",
2020-06-18 22:25:27 +03:00
]
2018-11-07 14:31:44 +02:00
[[package]]
name = "xattr"
2023-11-24 07:50:41 +08:00
version = "1.0.1"
2018-11-07 14:31:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "f4686009f71ff3e5c4dbcf1a282d0a44db3f021ba69350cd42086b3e5f1c6985"
2018-11-07 14:31:44 +02:00
dependencies = [
2020-05-09 07:22:51 +03:00
"libc",
2018-11-07 14:31:44 +02:00
]
[[package]]
name = "xdg-home"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2769203cd13a0c6015d515be729c526d041e9cf2c0cc478d57faee85f40c6dcd"
dependencies = [
2023-11-24 07:50:41 +08:00
"nix 0.26.4",
"winapi",
]
[[package]]
name = "zbus"
2023-11-24 07:50:41 +08:00
version = "3.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "31de390a2d872e4cd04edd71b425e29853f786dc99317ed72d73d6fcf5ebb948"
dependencies = [
2022-03-23 22:31:18 +02:00
"async-broadcast",
"async-executor",
"async-fs",
2023-11-24 07:50:41 +08:00
"async-io 1.13.0",
"async-lock 2.8.0",
"async-process",
2022-03-23 22:31:18 +02:00
"async-recursion",
"async-task",
"async-trait",
2023-11-24 07:50:41 +08:00
"blocking",
"byteorder",
"derivative",
"enumflags2",
2023-11-24 07:50:41 +08:00
"event-listener 2.5.3",
2022-03-23 22:31:18 +02:00
"futures-core",
"futures-sink",
"futures-util",
"hex",
2023-11-24 07:50:41 +08:00
"nix 0.26.4",
"once_cell",
2022-03-23 22:31:18 +02:00
"ordered-stream",
2022-10-17 22:53:24 +02:00
"rand",
"serde",
"serde_repr",
2022-03-23 22:31:18 +02:00
"sha1",
"static_assertions",
2022-10-17 22:53:24 +02:00
"tracing",
2022-05-15 09:28:22 +03:00
"uds_windows",
2022-03-23 22:31:18 +02:00
"winapi",
"xdg-home",
"zbus_macros",
2022-03-23 22:31:18 +02:00
"zbus_names",
"zvariant",
]
[[package]]
name = "zbus_macros"
2023-11-24 07:50:41 +08:00
version = "3.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "41d1794a946878c0e807f55a397187c11fc7a038ba5d868e7db4f3bd7760bc9d"
dependencies = [
2022-03-23 22:31:18 +02:00
"proc-macro-crate",
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
2022-03-23 22:31:18 +02:00
"regex",
"syn 1.0.109",
"zvariant_utils",
]
2022-03-23 22:31:18 +02:00
[[package]]
name = "zbus_names"
2023-11-24 07:50:41 +08:00
version = "2.6.0"
2022-03-23 22:31:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "fb80bb776dbda6e23d705cf0123c3b95df99c4ebeaec6c2599d4a5419902b4a9"
2022-03-23 22:31:18 +02:00
dependencies = [
"serde",
"static_assertions",
"zvariant",
]
[[package]]
name = "zip"
2023-06-27 10:02:27 +00:00
version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-27 10:02:27 +00:00
checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
dependencies = [
2020-11-02 14:00:04 +02:00
"byteorder",
2020-05-09 07:22:51 +03:00
"crc32fast",
2022-04-30 16:17:27 +03:00
"crossbeam-utils",
2020-05-09 07:22:51 +03:00
"flate2",
2023-11-24 07:50:41 +08:00
"time",
2020-05-09 07:22:51 +03:00
]
[[package]]
name = "zvariant"
2023-11-24 07:50:41 +08:00
version = "3.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "44b291bee0d960c53170780af148dca5fa260a63cdd24f1962fa82e03e53338c"
dependencies = [
"byteorder",
"enumflags2",
2021-10-25 22:41:12 +03:00
"libc",
"serde",
2021-07-06 09:38:10 +03:00
"static_assertions",
"zvariant_derive",
]
[[package]]
name = "zvariant_derive"
2023-11-24 07:50:41 +08:00
version = "3.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-24 07:50:41 +08:00
checksum = "934d7a7dfc310d6ee06c87ffe88ef4eca7d3e37bb251dece2ef93da8f17d8ecd"
dependencies = [
2022-03-23 22:31:18 +02:00
"proc-macro-crate",
"proc-macro2",
2021-10-25 22:41:12 +03:00
"quote",
"syn 1.0.109",
"zvariant_utils",
]
[[package]]
name = "zvariant_utils"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7234f0d811589db492d16893e3f21e8e2fd282e6d01b0cddee310322062cc200"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]