mailpot/Cargo.lock

4668 lines
111 KiB
Plaintext
Raw Permalink Normal View History

2020-08-15 22:10:49 +03:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "addr2line"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-08-15 22:10:49 +03:00
[[package]]
name = "ahash"
version = "0.7.7"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd"
2020-08-15 22:10:49 +03:00
dependencies = [
"getrandom",
"once_cell",
2022-11-20 18:26:51 +02:00
"version_check",
]
[[package]]
name = "ahash"
version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
dependencies = [
"cfg-if 1.0.0",
"getrandom",
"once_cell",
"serde",
"version_check",
"zerocopy",
]
[[package]]
name = "aho-corasick"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
dependencies = [
"memchr",
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "alloc-no-stdlib"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
[[package]]
name = "alloc-stdlib"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
dependencies = [
"alloc-no-stdlib",
]
[[package]]
name = "allocator-api2"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
2023-03-31 20:06:56 +03:00
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
[[package]]
name = "anstyle"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
2022-07-17 15:33:04 +03:00
[[package]]
name = "anyhow"
version = "1.0.79"
2022-07-17 15:33:04 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
2022-07-17 15:33:04 +03:00
[[package]]
name = "arrayref"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545"
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2023-05-12 16:07:55 +03:00
[[package]]
name = "assert-json-diff"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
dependencies = [
"serde",
"serde_json",
]
[[package]]
name = "assert_cmd"
version = "2.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00ad3f3a942eee60335ab4342358c161ee296829e0d16ff42fc1d6cb07815467"
dependencies = [
"anstyle",
"bstr",
"doc-comment",
"predicates",
"predicates-core",
"predicates-tree",
"wait-timeout",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "async-channel"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
dependencies = [
"concurrent-queue",
"event-listener 2.5.3",
"futures-core",
]
[[package]]
name = "async-channel"
version = "2.1.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c"
2020-08-15 22:10:49 +03:00
dependencies = [
"concurrent-queue",
"event-listener 4.0.3",
"event-listener-strategy",
2020-08-15 22:10:49 +03:00
"futures-core",
"pin-project-lite",
2020-08-15 22:10:49 +03:00
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "async-compression"
version = "0.4.5"
2023-05-12 16:07:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5"
2023-05-12 16:07:55 +03:00
dependencies = [
"brotli",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "async-executor"
version = "1.8.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c"
2020-08-15 22:10:49 +03:00
dependencies = [
"async-lock 3.3.0",
2020-08-15 22:10:49 +03:00
"async-task",
"concurrent-queue",
"fastrand 2.0.1",
"futures-lite 2.2.0",
2020-08-15 22:10:49 +03:00
"slab",
]
[[package]]
name = "async-fs"
2023-03-31 20:06:56 +03:00
version = "1.6.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06"
2020-08-15 22:10:49 +03:00
dependencies = [
"async-lock 2.8.0",
2023-03-31 20:06:56 +03:00
"autocfg",
2020-08-15 22:10:49 +03:00
"blocking",
"futures-lite 1.13.0",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "async-io"
2023-03-31 20:06:56 +03:00
version = "1.13.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
2020-08-15 22:10:49 +03:00
dependencies = [
"async-lock 2.8.0",
2023-03-31 20:06:56 +03:00
"autocfg",
"cfg-if 1.0.0",
2020-08-15 22:10:49 +03:00
"concurrent-queue",
"futures-lite 1.13.0",
2020-08-15 22:10:49 +03:00
"log",
"parking",
"polling 2.8.0",
"rustix 0.37.27",
2020-08-15 22:10:49 +03:00
"slab",
"socket2 0.4.10",
2020-08-15 22:10:49 +03:00
"waker-fn",
]
[[package]]
name = "async-io"
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb41eb19024a91746eba0773aa5e16036045bbf45733766661099e182ea6a744"
dependencies = [
"async-lock 3.3.0",
"cfg-if 1.0.0",
"concurrent-queue",
"futures-io",
"futures-lite 2.2.0",
"parking",
"polling 3.3.2",
"rustix 0.38.30",
"slab",
"tracing",
"windows-sys 0.52.0",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "async-lock"
version = "2.8.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
2020-08-15 22:10:49 +03:00
dependencies = [
"event-listener 2.5.3",
]
[[package]]
name = "async-lock"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d034b430882f8381900d3fe6f0aaa3ad94f2cb4ac519b429692a1bc2dda4ae7b"
dependencies = [
"event-listener 4.0.3",
"event-listener-strategy",
"pin-project-lite",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "async-net"
version = "1.8.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f"
2020-08-15 22:10:49 +03:00
dependencies = [
"async-io 1.13.0",
2020-08-15 22:10:49 +03:00
"blocking",
"futures-lite 1.13.0",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "async-process"
version = "1.8.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
2020-08-15 22:10:49 +03:00
dependencies = [
"async-io 1.13.0",
"async-lock 2.8.0",
"async-signal",
2020-08-15 22:10:49 +03:00
"blocking",
2022-08-26 22:37:39 +03:00
"cfg-if 1.0.0",
"event-listener 3.1.0",
"futures-lite 1.13.0",
"rustix 0.38.30",
"windows-sys 0.48.0",
]
[[package]]
name = "async-session"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07da4ce523b4e2ebaaf330746761df23a465b951a83d84bbce4233dabedae630"
dependencies = [
"anyhow",
"async-lock 2.8.0",
"async-trait",
"base64 0.13.1",
"bincode",
"blake3",
"chrono",
"hmac 0.11.0",
"log",
"rand",
"serde",
"serde_json",
"sha2 0.9.9",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "async-signal"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
dependencies = [
"async-io 2.3.0",
"async-lock 2.8.0",
"atomic-waker",
"cfg-if 1.0.0",
"futures-core",
"futures-io",
"rustix 0.38.30",
"signal-hook-registry",
"slab",
"windows-sys 0.48.0",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "async-stream"
version = "0.3.5"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
2020-08-15 22:10:49 +03:00
dependencies = [
"async-stream-impl",
"futures-core",
2023-03-31 20:06:56 +03:00
"pin-project-lite",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "async-stream-impl"
version = "0.3.5"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"proc-macro2",
"quote",
"syn 2.0.48",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "async-task"
version = "4.7.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799"
2020-08-15 22:10:49 +03:00
[[package]]
name = "async-trait"
version = "0.1.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "atomic-waker"
version = "1.1.2"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
2020-08-15 22:10:49 +03:00
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "axum"
version = "0.6.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf"
dependencies = [
"async-trait",
"axum-core",
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
"bytes",
"futures-util",
"headers",
"http",
"http-body",
"hyper",
"itoa",
"matchit",
"memchr",
"mime",
"percent-encoding",
"pin-project-lite",
"rustversion",
"serde",
"serde_json",
"serde_path_to_error",
"serde_urlencoded",
"sync_wrapper",
"tokio",
"tower",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-core"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
dependencies = [
"async-trait",
"bytes",
"futures-util",
"http",
"http-body",
"mime",
"rustversion",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-extra"
version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a93e433be9382c737320af3924f7d5fc6f89c155cf2bf88949d8f5126fab283f"
dependencies = [
"axum",
"axum-core",
2023-04-15 17:25:37 +03:00
"axum-macros",
"bytes",
"cookie",
2023-04-15 17:25:37 +03:00
"form_urlencoded",
"futures-util",
"http",
"http-body",
"mime",
2023-04-15 17:25:37 +03:00
"percent-encoding",
"pin-project-lite",
"serde",
2023-04-15 17:25:37 +03:00
"serde_html_form",
"tokio",
"tower",
"tower-layer",
"tower-service",
]
[[package]]
name = "axum-login"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2160b4bfd1db39feb3e689c287519d4b9234a5bcbdf89e975027b04d25c4bc32"
dependencies = [
"async-trait",
"axum",
"axum-sessions",
"base64 0.13.1",
"dyn-clone",
"eyre",
"futures",
"ring 0.16.20",
"secrecy",
"serde",
"serde_json",
"tokio",
"tower",
"tower-http 0.3.5",
"tracing",
]
2023-04-15 17:25:37 +03:00
[[package]]
name = "axum-macros"
version = "0.3.8"
2023-04-15 17:25:37 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdca6a10ecad987bda04e95606ef85a5417dcaac1a78455242d72e031e2b6b62"
2023-04-15 17:25:37 +03:00
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn 2.0.48",
2023-04-15 17:25:37 +03:00
]
[[package]]
name = "axum-sessions"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "714cad544cd87d8da821cda715bb9aaa5d4d1adbdb64c549b18138e3cbf93c44"
dependencies = [
"async-session",
"axum",
"axum-extra",
"futures",
"http-body",
"tokio",
"tower",
"tracing",
]
[[package]]
name = "backtrace"
version = "0.3.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
dependencies = [
"addr2line",
"cc",
"cfg-if 1.0.0",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
[[package]]
name = "base16ct"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
2020-08-15 22:10:49 +03:00
[[package]]
name = "base64"
2023-03-31 20:06:56 +03:00
version = "0.13.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2020-08-15 22:10:49 +03:00
[[package]]
name = "base64"
version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
2023-03-31 19:59:43 +03:00
[[package]]
2023-05-09 11:15:59 +03:00
name = "base64-compat"
version = "1.0.0"
2023-03-31 19:59:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:15:59 +03:00
checksum = "5a8d4d2746f89841e49230dd26917df1876050f95abafafbe34f47cb534b88d7"
dependencies = [
"byteorder",
]
2023-03-31 19:59:43 +03:00
[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
2023-05-12 16:07:55 +03:00
[[package]]
name = "bcrypt"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9df288bec72232f78c1ec5fe4e8f1d108aa0265476e93097593c803c8c02062a"
dependencies = [
"base64 0.21.7",
2023-05-12 16:07:55 +03:00
"blowfish",
"getrandom",
"subtle",
"zeroize",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "bincode"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
dependencies = [
"serde",
]
[[package]]
name = "bit-set"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
dependencies = [
"bit-vec",
]
[[package]]
name = "bit-vec"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
2020-08-15 22:10:49 +03:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-12-29 17:57:07 +02:00
[[package]]
name = "bitflags"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
dependencies = [
"serde",
]
2023-12-29 17:57:07 +02:00
[[package]]
name = "blake3"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b64485778c4f16a6a5a9d335e80d449ac6c70cdd6a06d2af18a6f6f775a125b3"
dependencies = [
"arrayref",
"arrayvec",
"cc",
"cfg-if 0.1.10",
"constant_time_eq",
"crypto-mac 0.8.0",
"digest 0.9.0",
]
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
"generic-array",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "block-buffer"
2023-03-31 20:06:56 +03:00
version = "0.10.4"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2020-08-15 22:10:49 +03:00
dependencies = [
"generic-array",
]
[[package]]
name = "blocking"
version = "1.5.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
2020-08-15 22:10:49 +03:00
dependencies = [
"async-channel 2.1.1",
"async-lock 3.3.0",
2020-08-15 22:10:49 +03:00
"async-task",
"fastrand 2.0.1",
"futures-io",
"futures-lite 2.2.0",
"piper",
"tracing",
2020-08-15 22:10:49 +03:00
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "blowfish"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
dependencies = [
"byteorder",
"cipher",
]
[[package]]
name = "brotli"
version = "3.4.0"
2023-05-12 16:07:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "516074a47ef4bce09577a3b379392300159ce5b1ba2e501ff1c819950066100f"
2023-05-12 16:07:55 +03:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
version = "2.5.1"
2023-05-12 16:07:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
2023-05-12 16:07:55 +03:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
[[package]]
name = "bstr"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc"
dependencies = [
"memchr",
"regex-automata",
"serde",
]
2022-05-08 00:46:49 +03:00
[[package]]
name = "bufstream"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40e38929add23cdf8a366df9b0e088953150724bcbe5fc330b0d8eb3b328eec8"
[[package]]
name = "build-info"
2023-05-09 11:15:59 +03:00
version = "0.0.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:15:59 +03:00
checksum = "8b301350c1c448e35b896f32b68c49c8ecd969a71978fbafc4ebd09ec3f4eee2"
dependencies = [
"build-info-common",
"build-info-proc",
"once_cell",
]
[[package]]
name = "build-info-build"
2023-05-09 11:15:59 +03:00
version = "0.0.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:15:59 +03:00
checksum = "2b314717755dd6a06fc11ad3f7909ba4c0ae2ab516f5cb0404fe924c71bfc7d0"
dependencies = [
"anyhow",
"base64 0.21.7",
"bincode",
"build-info-common",
"cargo_metadata",
"chrono",
"git2",
"glob",
"once_cell",
"pretty_assertions",
"rustc_version",
"serde_json",
"xz2",
]
[[package]]
name = "build-info-common"
2023-05-09 11:15:59 +03:00
version = "0.0.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:15:59 +03:00
checksum = "5e040d36472d40ec9424c36a7b54be589072e605596b6f20b0c56c5230b460cc"
dependencies = [
"chrono",
"derive_more",
"semver",
"serde",
]
[[package]]
name = "build-info-proc"
2023-05-09 11:15:59 +03:00
version = "0.0.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:15:59 +03:00
checksum = "ffd5f241ddd417436c48d35da9869480891449ddd1ae3fd483bbcfbae741a422"
dependencies = [
"anyhow",
"base64 0.21.7",
"bincode",
"build-info-common",
"chrono",
"num-bigint",
"num-traits",
"proc-macro-error",
"proc-macro2",
"quote",
"serde_json",
"syn 2.0.48",
"xz2",
]
2022-05-08 00:46:49 +03:00
[[package]]
name = "bumpalo"
version = "3.14.0"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
2023-05-09 11:15:59 +03:00
[[package]]
name = "bytecount"
version = "0.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205"
2023-05-09 11:15:59 +03:00
[[package]]
name = "byteorder"
version = "1.5.0"
2023-05-09 11:15:59 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2022-05-08 00:46:49 +03:00
2020-08-15 22:10:49 +03:00
[[package]]
name = "bytes"
version = "1.5.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
2020-08-15 22:10:49 +03:00
[[package]]
name = "camino"
version = "1.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c"
dependencies = [
"serde",
]
[[package]]
name = "cargo-platform"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ceed8ef69d8518a5dda55c07425450b58a4e1946f4951eab6d7191ee86c2443d"
dependencies = [
"serde",
]
[[package]]
name = "cargo_metadata"
version = "0.15.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"
dependencies = [
"camino",
"cargo-platform",
"semver",
"serde",
"serde_json",
"thiserror",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "cc"
version = "1.0.83"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
dependencies = [
"jobserver",
"libc",
]
2020-08-15 22:10:49 +03:00
2022-08-26 22:37:39 +03:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2020-08-15 22:10:49 +03:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
version = "0.4.31"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
2020-08-15 22:10:49 +03:00
dependencies = [
"android-tzdata",
2023-03-31 20:06:56 +03:00
"iana-time-zone",
"js-sys",
2020-08-15 22:10:49 +03:00
"num-traits",
"serde",
2023-03-31 20:06:56 +03:00
"wasm-bindgen",
"windows-targets 0.48.5",
2020-08-15 22:10:49 +03:00
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "cipher"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
"crypto-common",
"inout",
]
[[package]]
name = "clap"
version = "4.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80932e03c33999b9235edb8655bc9df3204adc9887c2f95b50cb1deb9fd54253"
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
version = "4.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6c0db58c659eef1c73e444d298c27322a1b52f6927d2ad470c0c0f96fa7b8fa"
dependencies = [
2023-05-09 11:15:59 +03:00
"anstyle",
"clap_lex",
2023-04-06 23:59:36 +03:00
"strsim",
"terminal_size",
"unicase",
"unicode-width",
]
[[package]]
name = "clap_derive"
version = "4.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442"
dependencies = [
2023-04-06 23:59:36 +03:00
"heck",
"proc-macro2",
"quote",
"syn 2.0.48",
]
[[package]]
name = "clap_lex"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
[[package]]
name = "clap_mangen"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a7c2b01e5e779c19f46a94bbd398f33ae63b0f78c07108351fb4536845bb7fd"
dependencies = [
2023-04-06 23:59:36 +03:00
"clap",
"roff",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "concurrent-queue"
version = "2.4.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
2020-08-15 22:10:49 +03:00
dependencies = [
2023-03-31 20:06:56 +03:00
"crossbeam-utils",
2020-08-15 22:10:49 +03:00
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "config"
version = "0.13.4"
2023-05-12 16:07:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23738e11972c7643e4ec947840fc463b6a571afcd3e735bdfce7d03c7a784aca"
2023-05-12 16:07:55 +03:00
dependencies = [
"async-trait",
"json5",
"lazy_static",
"nom",
"pathdiff",
"ron",
"rust-ini",
"serde",
"serde_json",
"toml",
"yaml-rust",
]
[[package]]
name = "const-oid"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "cookie"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24"
dependencies = [
"base64 0.21.7",
"hmac 0.12.1",
"percent-encoding",
"rand",
"sha2 0.10.8",
"subtle",
"time",
"version_check",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "core-foundation"
version = "0.9.4"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
2020-08-15 22:10:49 +03:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.6"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
2020-08-15 22:10:49 +03:00
[[package]]
name = "cpufeatures"
version = "0.2.12"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
2020-08-15 22:10:49 +03:00
dependencies = [
"libc",
]
[[package]]
name = "crc32fast"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
dependencies = [
"cfg-if 1.0.0",
]
2022-11-20 18:26:51 +02:00
[[package]]
name = "crossbeam-utils"
version = "0.8.19"
2022-11-20 18:26:51 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
2022-11-20 18:26:51 +02:00
[[package]]
name = "crypto-bigint"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
dependencies = [
"generic-array",
"rand_core",
"subtle",
"zeroize",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "crypto-common"
2022-07-17 15:33:04 +03:00
version = "0.1.6"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 15:33:04 +03:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2020-08-15 22:10:49 +03:00
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "crypto-mac"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab"
dependencies = [
"generic-array",
"subtle",
]
[[package]]
name = "crypto-mac"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25fab6889090c8133f3deb8f73ba3c65a7f456f66436fc012a1b1e272b1e103e"
dependencies = [
"generic-array",
"subtle",
]
[[package]]
name = "curve25519-dalek"
version = "4.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c"
dependencies = [
"cfg-if 1.0.0",
"cpufeatures",
"curve25519-dalek-derive",
"digest 0.10.7",
"fiat-crypto",
"platforms",
"rustc_version",
"subtle",
]
[[package]]
name = "curve25519-dalek-derive"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
2020-08-15 22:10:49 +03:00
]
2023-03-31 20:06:56 +03:00
[[package]]
name = "data-encoding"
version = "2.5.0"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
2023-03-31 20:06:56 +03:00
[[package]]
name = "der"
version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
dependencies = [
"const-oid",
"zeroize",
]
[[package]]
name = "deranged"
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
dependencies = [
"powerfmt",
]
[[package]]
name = "derive_more"
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
"convert_case",
"proc-macro2",
"quote",
"rustc_version",
"syn 1.0.109",
]
[[package]]
name = "diff"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
[[package]]
name = "difflib"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
"generic-array",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "digest"
version = "0.10.7"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2020-08-15 22:10:49 +03:00
dependencies = [
"block-buffer 0.10.4",
"const-oid",
2020-08-15 22:10:49 +03:00
"crypto-common",
"subtle",
2020-08-15 22:10:49 +03:00
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "dlv-list"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257"
[[package]]
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
[[package]]
name = "dyn-clone"
version = "1.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "545b22097d44f8a9581187cdf93de7a71e4722bf51200cfaba810865b49a495d"
[[package]]
name = "ecdsa"
version = "0.16.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
dependencies = [
"der",
"digest 0.10.7",
"elliptic-curve",
"rfc6979",
"signature",
"spki",
]
[[package]]
name = "ed25519"
version = "2.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
dependencies = [
"signature",
]
[[package]]
name = "ed25519-dalek"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f628eaec48bfd21b865dc2950cfa014450c01d2fa2b69a86c2fd5844ec523c0"
dependencies = [
"curve25519-dalek",
"ed25519",
"sha2 0.10.8",
"subtle",
]
2022-05-08 00:46:49 +03:00
[[package]]
name = "either"
version = "1.9.0"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
2022-05-08 00:46:49 +03:00
[[package]]
name = "elliptic-curve"
version = "0.13.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
dependencies = [
"base16ct",
"crypto-bigint",
"digest 0.10.7",
"ff",
"generic-array",
"group",
"pkcs8",
"rand_core",
"sec1",
"subtle",
"zeroize",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "encoding"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
dependencies = [
"encoding-index-japanese",
"encoding-index-korean",
"encoding-index-simpchinese",
"encoding-index-singlebyte",
"encoding-index-tradchinese",
]
[[package]]
name = "encoding-index-japanese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-korean"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-simpchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-singlebyte"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-tradchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding_index_tests"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
2023-03-31 19:59:43 +03:00
[[package]]
name = "encoding_rs"
version = "0.8.33"
2023-03-31 19:59:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
2023-03-31 19:59:43 +03:00
dependencies = [
"cfg-if 1.0.0",
]
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-03-31 20:06:56 +03:00
[[package]]
name = "errno"
version = "0.3.8"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
2023-03-31 20:06:56 +03:00
dependencies = [
"libc",
"windows-sys 0.52.0",
2023-03-31 20:06:56 +03:00
]
[[package]]
name = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
[[package]]
name = "event-listener"
version = "3.1.0"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
2023-03-31 20:06:56 +03:00
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
2023-03-31 20:06:56 +03:00
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "event-listener"
version = "4.0.3"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e"
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
]
[[package]]
name = "event-listener-strategy"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
dependencies = [
"event-listener 4.0.3",
"pin-project-lite",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "eyre"
version = "0.6.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6267a1fa6f59179ea4afc8e50fd8612a3cc60bc858f786ff877a4a8cb042799"
dependencies = [
"indenter",
"once_cell",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "fallible-iterator"
2023-12-29 17:57:07 +02:00
version = "0.3.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 17:57:07 +02:00
checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
2020-08-15 22:10:49 +03:00
[[package]]
name = "fallible-streaming-iterator"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
[[package]]
name = "fancy-regex"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
dependencies = [
"bit-set",
"regex",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "fastrand"
2023-03-31 20:06:56 +03:00
version = "1.9.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
2020-08-15 22:10:49 +03:00
dependencies = [
"instant",
]
[[package]]
name = "fastrand"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
[[package]]
name = "ff"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
dependencies = [
"rand_core",
"subtle",
]
[[package]]
name = "fiat-crypto"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "27573eac26f4dd11e2b1916c3fe1baa56407c83c71a773a8ba17ec0bca03b6b7"
2022-08-26 22:37:39 +03:00
[[package]]
name = "filetime"
version = "0.2.23"
2022-08-26 22:37:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
2022-08-26 22:37:39 +03:00
dependencies = [
"cfg-if 1.0.0",
"libc",
"redox_syscall",
"windows-sys 0.52.0",
2022-08-26 22:37:39 +03:00
]
[[package]]
name = "flate2"
version = "1.0.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
dependencies = [
"crc32fast",
"miniz_oxide",
]
[[package]]
name = "float-cmp"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
dependencies = [
"num-traits",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "form_urlencoded"
version = "1.2.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
2020-08-15 22:10:49 +03:00
dependencies = [
"percent-encoding",
]
[[package]]
name = "fraction"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3027ae1df8d41b4bed2241c8fdad4acc1e7af60c8e17743534b545e77182d678"
dependencies = [
"lazy_static",
"num",
]
2022-08-26 22:37:39 +03:00
[[package]]
name = "fsevent"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6"
dependencies = [
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
2022-08-26 22:37:39 +03:00
"fsevent-sys",
]
[[package]]
name = "fsevent-sys"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0"
dependencies = [
"libc",
]
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
dependencies = [
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
2022-08-26 22:37:39 +03:00
"fuchsia-zircon-sys",
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
2020-08-15 22:10:49 +03:00
[[package]]
name = "futures"
version = "0.3.30"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
2020-08-15 22:10:49 +03:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
version = "0.3.30"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
2020-08-15 22:10:49 +03:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
version = "0.3.30"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
2020-08-15 22:10:49 +03:00
[[package]]
name = "futures-executor"
version = "0.3.30"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
2020-08-15 22:10:49 +03:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
version = "0.3.30"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
2020-08-15 22:10:49 +03:00
[[package]]
name = "futures-lite"
version = "1.13.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
2020-08-15 22:10:49 +03:00
dependencies = [
"fastrand 1.9.0",
2020-08-15 22:10:49 +03:00
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
[[package]]
name = "futures-lite"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "445ba825b27408685aaecefd65178908c36c6e96aaf6d8599419d46e624192ba"
dependencies = [
"fastrand 2.0.1",
"futures-core",
"futures-io",
"parking",
"pin-project-lite",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "futures-macro"
version = "0.3.30"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"proc-macro2",
"quote",
"syn 2.0.48",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "futures-sink"
version = "0.3.30"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
2020-08-15 22:10:49 +03:00
[[package]]
name = "futures-task"
version = "0.3.30"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
2020-08-15 22:10:49 +03:00
[[package]]
name = "futures-util"
version = "0.3.30"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
2020-08-15 22:10:49 +03:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
2023-03-31 20:06:56 +03:00
version = "0.14.7"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2020-08-15 22:10:49 +03:00
dependencies = [
"typenum",
2022-11-20 18:26:51 +02:00
"version_check",
"zeroize",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "getrandom"
version = "0.2.12"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-08-26 22:37:39 +03:00
"cfg-if 1.0.0",
"js-sys",
2020-08-15 22:10:49 +03:00
"libc",
"wasi",
"wasm-bindgen",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "gimli"
version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
[[package]]
name = "git2"
version = "0.17.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b989d6a7ca95a362cf2cfc5ad688b3a467be1f87e480b8dad07fee8c79b0044"
dependencies = [
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
"libc",
"libgit2-sys",
"log",
"url",
]
[[package]]
name = "glob"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
[[package]]
name = "group"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
dependencies = [
"ff",
"rand_core",
"subtle",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "h2"
version = "0.3.24"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb2c4422095b67ee78da96fbb51a4cc413b3b25883c7717ff7ca1ab31022c9c9"
2020-08-15 22:10:49 +03:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap 2.1.0",
2020-08-15 22:10:49 +03:00
"slab",
"tokio",
2023-03-31 20:06:56 +03:00
"tokio-util",
2020-08-15 22:10:49 +03:00
"tracing",
]
[[package]]
name = "hashbrown"
2023-03-31 20:06:56 +03:00
version = "0.12.3"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2020-08-15 22:10:49 +03:00
dependencies = [
"ahash 0.7.7",
]
[[package]]
name = "hashbrown"
version = "0.14.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
dependencies = [
"ahash 0.8.7",
"allocator-api2",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "hashlink"
version = "0.8.4"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
2020-08-15 22:10:49 +03:00
dependencies = [
"hashbrown 0.14.3",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "headers"
version = "0.3.9"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
2020-08-15 22:10:49 +03:00
dependencies = [
"base64 0.21.7",
2020-08-15 22:10:49 +03:00
"bytes",
"headers-core",
"http",
"httpdate",
"mime",
2023-03-31 20:06:56 +03:00
"sha1",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "headers-core"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
dependencies = [
"http",
]
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2023-03-31 20:06:56 +03:00
[[package]]
name = "hermit-abi"
version = "0.3.3"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
2023-03-31 20:06:56 +03:00
[[package]]
name = "hmac"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b"
dependencies = [
"crypto-mac 0.11.0",
"digest 0.9.0",
]
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest 0.10.7",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "http"
version = "0.2.11"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
2020-08-15 22:10:49 +03:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
version = "0.4.6"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
2020-08-15 22:10:49 +03:00
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "http-range-header"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
2020-08-15 22:10:49 +03:00
[[package]]
name = "httparse"
2023-03-31 20:06:56 +03:00
version = "1.8.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
2020-08-15 22:10:49 +03:00
[[package]]
name = "httpdate"
version = "1.0.3"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2020-08-15 22:10:49 +03:00
[[package]]
name = "hyper"
version = "0.14.28"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
2020-08-15 22:10:49 +03:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"socket2 0.4.10",
2020-08-15 22:10:49 +03:00
"tokio",
"tower-service",
"tracing",
"want",
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio-native-tls",
]
2023-03-31 20:06:56 +03:00
[[package]]
name = "iana-time-zone"
version = "0.1.59"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
2023-03-31 20:06:56 +03:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"windows-core",
2023-03-31 20:06:56 +03:00
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
2023-03-31 20:06:56 +03:00
dependencies = [
"cc",
2023-03-31 20:06:56 +03:00
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "idna"
version = "0.5.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
2020-08-15 22:10:49 +03:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2020-08-15 22:10:49 +03:00
[[package]]
name = "indexmap"
2023-03-31 20:06:56 +03:00
version = "1.9.3"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2020-08-15 22:10:49 +03:00
dependencies = [
"autocfg",
"hashbrown 0.12.3",
2020-08-15 22:10:49 +03:00
"serde",
]
[[package]]
name = "indexmap"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
dependencies = [
"equivalent",
"hashbrown 0.14.3",
]
2022-08-26 22:37:39 +03:00
[[package]]
name = "inotify"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4816c66d2c8ae673df83366c18341538f234a26d65a9ecea5c348b453ac1d02f"
dependencies = [
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
2022-08-26 22:37:39 +03:00
"inotify-sys",
"libc",
]
[[package]]
name = "inotify-sys"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
dependencies = [
"libc",
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"generic-array",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
2022-08-26 22:37:39 +03:00
"cfg-if 1.0.0",
]
2023-03-31 20:06:56 +03:00
[[package]]
name = "io-lifetimes"
version = "1.0.11"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
2023-03-31 20:06:56 +03:00
dependencies = [
"hermit-abi",
2023-03-31 20:06:56 +03:00
"libc",
"windows-sys 0.48.0",
2023-03-31 20:06:56 +03:00
]
2022-08-26 22:37:39 +03:00
[[package]]
name = "iovec"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
"libc",
2020-08-15 22:10:49 +03:00
]
2023-03-31 19:59:43 +03:00
[[package]]
name = "ipnet"
version = "2.9.0"
2023-03-31 19:59:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
2023-03-31 19:59:43 +03:00
[[package]]
name = "is-terminal"
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
dependencies = [
"hermit-abi",
"rustix 0.38.30",
"windows-sys 0.52.0",
]
[[package]]
name = "iso8601"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "924e5d73ea28f59011fec52a0d12185d496a9b075d360657aed2a5707f701153"
dependencies = [
"nom",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "itoa"
version = "1.0.10"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
2020-08-15 22:10:49 +03:00
[[package]]
name = "jobserver"
version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d"
dependencies = [
"libc",
]
2022-05-08 00:46:49 +03:00
[[package]]
name = "js-sys"
version = "0.3.67"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a1d36f1235bc969acba30b7f5990b864423a6068a10f7c90ae8f0112e3a59d1"
2022-05-08 00:46:49 +03:00
dependencies = [
"wasm-bindgen",
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "json5"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96b0db21af676c1ce64250b5f40f3ce2cf27e4e47cb91ed91eb6fe9350b430c1"
dependencies = [
"pest",
"pest_derive",
"serde",
]
[[package]]
name = "jsonschema"
version = "0.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a071f4f7efc9a9118dfb627a0a94ef247986e1ab8606a4c806ae2b3aa3b6978"
dependencies = [
"ahash 0.8.7",
"anyhow",
"base64 0.21.7",
"bytecount",
"fancy-regex",
"fraction",
"getrandom",
"iso8601",
"itoa",
"memchr",
"num-cmp",
"once_cell",
"parking_lot",
"percent-encoding",
"regex",
"serde",
"serde_json",
"time",
"url",
"uuid",
]
2022-08-26 22:37:39 +03:00
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
dependencies = [
"spin 0.5.2",
]
2020-08-15 22:10:49 +03:00
2022-08-26 22:37:39 +03:00
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
2020-08-15 22:10:49 +03:00
[[package]]
name = "libc"
version = "0.2.152"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
2020-08-15 22:10:49 +03:00
[[package]]
name = "libgit2-sys"
version = "0.15.2+1.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a80df2e11fb4a61f4ba2ab42dbe7f74468da143f1a75c74e11dee7c813f694fa"
dependencies = [
"cc",
"libc",
"libz-sys",
"pkg-config",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "libloading"
2023-03-31 20:06:56 +03:00
version = "0.7.4"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-08-26 22:37:39 +03:00
"cfg-if 1.0.0",
"winapi 0.3.9",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "libm"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
2020-08-15 22:10:49 +03:00
[[package]]
name = "libsqlite3-sys"
2023-12-29 17:57:07 +02:00
version = "0.27.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 17:57:07 +02:00
checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-05-08 02:51:25 +03:00
"cc",
2020-08-15 22:10:49 +03:00
"pkg-config",
"vcpkg",
]
[[package]]
name = "libz-sys"
version = "1.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "295c17e837573c8c821dbaeb3cceb3d745ad082f7572191409e69cbc1b3fd050"
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "linked-hash-map"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2023-03-31 20:06:56 +03:00
[[package]]
name = "linux-raw-sys"
version = "0.3.8"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
[[package]]
name = "linux-raw-sys"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
2023-03-31 20:06:56 +03:00
2020-08-15 22:10:49 +03:00
[[package]]
name = "lock_api"
version = "0.4.11"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
2020-08-15 22:10:49 +03:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.20"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
2020-08-15 22:10:49 +03:00
[[package]]
name = "lzma-sys"
version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
dependencies = [
"cc",
"libc",
"pkg-config",
]
2022-05-08 00:46:49 +03:00
[[package]]
name = "mailin"
version = "0.6.3"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d685cc697caba9c320fd0be79835c49af79009fccf05e13200d988b07a24b429"
2022-05-08 00:46:49 +03:00
dependencies = [
2023-05-09 11:15:59 +03:00
"base64-compat",
2022-05-08 00:46:49 +03:00
"either",
"log",
2022-11-20 18:26:51 +02:00
"nom",
2022-05-08 00:46:49 +03:00
"ternop",
]
[[package]]
name = "mailin-embedded"
2022-06-09 01:56:54 +03:00
version = "0.7.1"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-09 01:56:54 +03:00
checksum = "e2f29d14249fb45f7795bc8564175ca7b963254217f24e8cde84ba40d38b58cc"
2022-05-08 00:46:49 +03:00
dependencies = [
"bufstream",
"lazy_static",
"log",
"mailin",
"rustls",
"rustls-pemfile",
2022-05-08 00:46:49 +03:00
"scoped_threadpool",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "mailpot"
2023-04-29 18:29:16 +03:00
version = "0.1.1"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-07-17 15:33:04 +03:00
"anyhow",
2020-08-15 22:10:49 +03:00
"chrono",
"jsonschema",
2020-08-15 22:10:49 +03:00
"log",
"mailpot-tests",
2020-08-15 22:10:49 +03:00
"melib",
"minijinja",
"percent-encoding",
2023-03-31 19:59:43 +03:00
"reqwest",
2020-08-15 22:10:49 +03:00
"rusqlite",
"serde",
"serde_json",
2022-05-08 00:46:49 +03:00
"stderrlog",
"tempfile",
"thiserror",
2022-11-20 18:26:51 +02:00
"toml",
2020-08-15 22:10:49 +03:00
"xdg",
]
[[package]]
name = "mailpot-archives"
2023-04-29 18:29:16 +03:00
version = "0.1.1"
dependencies = [
"chrono",
"lazy_static",
"mailpot",
"minijinja",
"percent-encoding",
"serde",
"serde_json",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "mailpot-cli"
2023-04-29 18:29:16 +03:00
version = "0.1.1"
2020-08-15 22:10:49 +03:00
dependencies = [
"assert_cmd",
"base64 0.21.7",
2023-04-06 23:59:36 +03:00
"clap",
"clap_mangen",
2022-05-08 00:46:49 +03:00
"log",
2020-08-15 22:10:49 +03:00
"mailpot",
"mailpot-tests",
"predicates",
2023-05-09 10:49:54 +03:00
"serde",
"serde_json",
2020-08-15 22:10:49 +03:00
"stderrlog",
"tempfile",
2023-05-09 10:49:54 +03:00
"ureq",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "mailpot-http"
2023-04-29 18:29:16 +03:00
version = "0.1.1"
2020-08-15 22:10:49 +03:00
dependencies = [
2023-05-12 16:07:55 +03:00
"assert-json-diff",
"async-trait",
"axum",
2023-05-13 23:42:55 +03:00
"axum-extra",
2023-05-12 16:07:55 +03:00
"bcrypt",
"config",
"http",
2023-05-13 23:42:55 +03:00
"hyper",
2023-05-12 16:07:55 +03:00
"lazy_static",
"log",
2020-08-15 22:10:49 +03:00
"mailpot",
2023-05-13 23:42:55 +03:00
"mailpot-tests",
2023-05-12 16:07:55 +03:00
"mailpot-web",
"reqwest",
"serde",
"serde_json",
"stderrlog",
2023-05-13 23:42:55 +03:00
"tempfile",
2023-05-12 16:07:55 +03:00
"thiserror",
2020-08-15 22:10:49 +03:00
"tokio",
2023-05-13 23:42:55 +03:00
"tower",
"tower-http 0.4.4",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "mailpot-tests"
2023-04-29 18:29:16 +03:00
version = "0.1.1"
dependencies = [
"assert_cmd",
"log",
"mailin-embedded",
"mailpot",
"predicates",
"stderrlog",
"tempfile",
]
2023-04-14 15:54:34 +03:00
[[package]]
name = "mailpot-web"
2023-04-29 18:29:16 +03:00
version = "0.1.1"
2023-04-14 15:54:34 +03:00
dependencies = [
"axum",
"axum-extra",
2023-04-14 15:54:34 +03:00
"axum-login",
"axum-sessions",
"build-info",
"build-info-build",
2023-05-14 09:47:54 +03:00
"cfg-if 1.0.0",
2023-04-14 15:54:34 +03:00
"chrono",
"convert_case",
"dyn-clone",
2023-04-14 15:54:34 +03:00
"eyre",
"http",
2023-05-14 09:47:54 +03:00
"hyper",
"indexmap 1.9.3",
2023-04-14 15:54:34 +03:00
"lazy_static",
"mailpot",
2023-05-14 09:47:54 +03:00
"mailpot-tests",
2023-04-14 15:54:34 +03:00
"minijinja",
"percent-encoding",
"rand",
"serde",
"serde_json",
2023-05-14 17:50:54 +03:00
"serde_urlencoded",
"ssh-key",
2023-05-18 22:15:05 +03:00
"stderrlog",
2023-04-14 15:54:34 +03:00
"tempfile",
"tokio",
2023-05-14 09:47:54 +03:00
"tower",
"tower-http 0.3.5",
2023-04-15 17:25:37 +03:00
"tower-service",
"zstd",
2023-04-14 15:54:34 +03:00
]
[[package]]
name = "matchit"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
2020-08-15 22:10:49 +03:00
[[package]]
name = "melib"
version = "0.8.5-rc.3"
source = "git+https://git.meli-email.org/meli/meli.git?rev=64e60cb#64e60cb0ee79841ab40e3dba94ac27150a264c5c"
2020-08-15 22:10:49 +03:00
dependencies = [
"async-stream",
2023-03-31 20:06:56 +03:00
"base64 0.13.1",
"bitflags 2.4.1",
2020-08-15 22:10:49 +03:00
"data-encoding",
"encoding",
"encoding_rs",
"flate2",
2020-08-15 22:10:49 +03:00
"futures",
"indexmap 1.9.3",
2020-08-15 22:10:49 +03:00
"libc",
"libloading",
"log",
2020-08-15 22:10:49 +03:00
"native-tls",
"nix",
2022-11-20 18:26:51 +02:00
"nom",
2022-08-26 22:37:39 +03:00
"notify",
"polling 2.8.0",
"regex",
2020-08-15 22:10:49 +03:00
"serde",
"serde_derive",
"serde_json",
"serde_path_to_error",
2020-08-15 22:10:49 +03:00
"smallvec",
"smol",
"socket2 0.4.10",
2020-08-15 22:10:49 +03:00
"unicode-segmentation",
"uuid",
"xdg",
]
[[package]]
name = "memchr"
version = "2.7.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
2020-08-15 22:10:49 +03:00
[[package]]
name = "memo-map"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "374c335b2df19e62d4cb323103473cbc6510980253119180de862d89184f6a83"
2020-08-15 22:10:49 +03:00
[[package]]
name = "memoffset"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
dependencies = [
"autocfg",
]
[[package]]
name = "mime"
2023-03-31 20:06:56 +03:00
version = "0.3.17"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2020-08-15 22:10:49 +03:00
[[package]]
name = "minijinja"
2023-05-09 11:15:59 +03:00
version = "0.31.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:15:59 +03:00
checksum = "0b1dbc390e4447b2500c4071d7bc2a808cf07e925bae6b92db8a3c3eae773c58"
dependencies = [
"memo-map",
"self_cell 0.10.3",
"serde",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
"adler",
]
2022-08-26 22:37:39 +03:00
[[package]]
name = "mio"
version = "0.6.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
dependencies = [
"cfg-if 0.1.10",
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow",
"net2",
"slab",
"winapi 0.2.8",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "mio"
version = "0.8.10"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
2020-08-15 22:10:49 +03:00
dependencies = [
"libc",
"wasi",
"windows-sys 0.48.0",
2020-08-15 22:10:49 +03:00
]
2022-08-26 22:37:39 +03:00
[[package]]
name = "mio-extras"
version = "2.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52403fe290012ce777c4626790c8951324a2b9e3316b3143779c72b029742f19"
dependencies = [
"lazycell",
"log",
"mio 0.6.23",
"slab",
]
[[package]]
name = "miow"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "native-tls"
2023-03-31 20:06:56 +03:00
version = "0.2.11"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
2020-08-15 22:10:49 +03:00
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2022-08-26 22:37:39 +03:00
[[package]]
name = "net2"
version = "0.2.39"
2022-08-26 22:37:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b13b648036a2339d06de780866fbdfda0dde886de7b3af2ddeba8b14f4ee34ac"
2022-08-26 22:37:39 +03:00
dependencies = [
"cfg-if 0.1.10",
"libc",
"winapi 0.3.9",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "nix"
2023-03-31 20:06:56 +03:00
version = "0.24.3"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
2020-08-15 22:10:49 +03:00
dependencies = [
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
2022-08-26 22:37:39 +03:00
"cfg-if 1.0.0",
2020-08-15 22:10:49 +03:00
"libc",
"memoffset",
]
[[package]]
name = "nom"
2023-03-31 20:06:56 +03:00
version = "7.1.3"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2020-08-15 22:10:49 +03:00
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "normalize-line-endings"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
2022-08-26 22:37:39 +03:00
[[package]]
name = "notify"
version = "4.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae03c8c853dba7bfd23e571ff0cff7bc9dceb40a4cd684cd1681824183f45257"
dependencies = [
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
2022-08-26 22:37:39 +03:00
"filetime",
"fsevent",
"fsevent-sys",
"inotify",
"libc",
"mio 0.6.23",
"mio-extras",
"walkdir",
"winapi 0.3.9",
]
[[package]]
name = "num"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af"
dependencies = [
"num-bigint",
"num-complex",
"num-integer",
"num-iter",
"num-rational",
"num-traits",
]
[[package]]
name = "num-bigint"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-bigint-dig"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
dependencies = [
"byteorder",
"lazy_static",
"libm",
"num-integer",
"num-iter",
"num-traits",
"rand",
"smallvec",
"zeroize",
]
[[package]]
name = "num-cmp"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
[[package]]
name = "num-complex"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214"
dependencies = [
"num-traits",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-iter"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
dependencies = [
"autocfg",
"num-bigint",
"num-integer",
"num-traits",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "num-traits"
version = "0.2.17"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
2020-08-15 22:10:49 +03:00
dependencies = [
"autocfg",
"libm",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "num_cpus"
version = "1.16.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2020-08-15 22:10:49 +03:00
dependencies = [
"hermit-abi",
2020-08-15 22:10:49 +03:00
"libc",
]
[[package]]
name = "object"
version = "0.32.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
dependencies = [
"memchr",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "once_cell"
version = "1.19.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2020-08-15 22:10:49 +03:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
2020-08-15 22:10:49 +03:00
[[package]]
name = "openssl"
version = "0.10.62"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671"
2020-08-15 22:10:49 +03:00
dependencies = [
"bitflags 2.4.1",
2022-08-26 22:37:39 +03:00
"cfg-if 1.0.0",
2020-08-15 22:10:49 +03:00
"foreign-types",
"libc",
"once_cell",
2022-06-09 01:56:54 +03:00
"openssl-macros",
2020-08-15 22:10:49 +03:00
"openssl-sys",
]
2022-06-09 01:56:54 +03:00
[[package]]
name = "openssl-macros"
version = "0.1.1"
2022-06-09 01:56:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2022-06-09 01:56:54 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"proc-macro2",
"quote",
"syn 2.0.48",
2022-06-09 01:56:54 +03:00
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
version = "0.9.98"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7"
2020-08-15 22:10:49 +03:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "ordered-multimap"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a"
dependencies = [
"dlv-list",
"hashbrown 0.12.3",
]
[[package]]
name = "p256"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
dependencies = [
"ecdsa",
"elliptic-curve",
"primeorder",
"sha2 0.10.8",
]
[[package]]
name = "p384"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209"
dependencies = [
"ecdsa",
"elliptic-curve",
"primeorder",
"sha2 0.10.8",
]
[[package]]
name = "p521"
version = "0.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fc9e2161f1f215afdfce23677034ae137bbd45016a880c2eb3ba8eb95f085b2"
dependencies = [
"base16ct",
"ecdsa",
"elliptic-curve",
"primeorder",
"rand_core",
"sha2 0.10.8",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "parking"
version = "2.2.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
2020-08-15 22:10:49 +03:00
[[package]]
name = "parking_lot"
2022-06-09 01:56:54 +03:00
version = "0.12.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-06-09 01:56:54 +03:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2020-08-15 22:10:49 +03:00
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
version = "0.9.9"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-08-26 22:37:39 +03:00
"cfg-if 1.0.0",
2020-08-15 22:10:49 +03:00
"libc",
"redox_syscall",
2020-08-15 22:10:49 +03:00
"smallvec",
"windows-targets 0.48.5",
2020-08-15 22:10:49 +03:00
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
[[package]]
name = "pem-rfc7468"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
dependencies = [
"base64ct",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "percent-encoding"
version = "2.3.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2020-08-15 22:10:49 +03:00
2023-05-12 16:07:55 +03:00
[[package]]
name = "pest"
version = "2.7.6"
2023-05-12 16:07:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f200d8d83c44a45b21764d1916299752ca035d15ecd46faca3e9a2a2bf6ad06"
2023-05-12 16:07:55 +03:00
dependencies = [
"memchr",
2023-05-12 16:07:55 +03:00
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.7.6"
2023-05-12 16:07:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcd6ab1236bbdb3a49027e920e693192ebfe8913f6d60e294de57463a493cfde"
2023-05-12 16:07:55 +03:00
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.7.6"
2023-05-12 16:07:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a31940305ffc96863a735bef7c7994a00b325a7138fdbc5bda0f1a0476d3275"
2023-05-12 16:07:55 +03:00
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn 2.0.48",
2023-05-12 16:07:55 +03:00
]
[[package]]
name = "pest_meta"
version = "2.7.6"
2023-05-12 16:07:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7ff62f5259e53b78d1af898941cdcdccfae7385cf7d793a6e55de5d05bb4b7d"
2023-05-12 16:07:55 +03:00
dependencies = [
"once_cell",
"pest",
"sha2 0.10.8",
2023-05-12 16:07:55 +03:00
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "pin-project"
version = "1.1.3"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
2020-08-15 22:10:49 +03:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.1.3"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"proc-macro2",
"quote",
"syn 2.0.48",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "pin-project-lite"
version = "0.2.13"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
2020-08-15 22:10:49 +03:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[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 = "pkcs1"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
dependencies = [
"der",
"pkcs8",
"spki",
]
[[package]]
name = "pkcs8"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
dependencies = [
"der",
"spki",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "pkg-config"
version = "0.3.28"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
2020-08-15 22:10:49 +03:00
[[package]]
name = "platforms"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "626dec3cac7cc0e1577a2ec3fc496277ec2baa084bebad95bb6fdbfae235f84c"
2020-08-15 22:10:49 +03:00
[[package]]
name = "polling"
2023-05-09 11:15:59 +03:00
version = "2.8.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-09 11:15:59 +03:00
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
2020-08-15 22:10:49 +03:00
dependencies = [
2023-03-31 20:06:56 +03:00
"autocfg",
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
2022-08-26 22:37:39 +03:00
"cfg-if 1.0.0",
2023-03-31 20:06:56 +03:00
"concurrent-queue",
2020-08-15 22:10:49 +03:00
"libc",
"log",
2023-03-31 20:06:56 +03:00
"pin-project-lite",
"windows-sys 0.48.0",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "polling"
version = "3.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "545c980a3880efd47b2e262f6a4bb6daad6555cf3367aa9c4e52895f69537a41"
dependencies = [
"cfg-if 1.0.0",
"concurrent-queue",
"pin-project-lite",
"rustix 0.38.30",
"tracing",
"windows-sys 0.52.0",
]
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2020-08-15 22:10:49 +03:00
[[package]]
name = "ppv-lite86"
2023-03-31 20:06:56 +03:00
version = "0.2.17"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2020-08-15 22:10:49 +03:00
[[package]]
name = "predicates"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68b87bfd4605926cdfefc1c3b5f8fe560e3feca9d5552cf68c466d3d8236c7e8"
dependencies = [
"anstyle",
"difflib",
"float-cmp",
"normalize-line-endings",
"predicates-core",
"regex",
]
[[package]]
name = "predicates-core"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
[[package]]
name = "predicates-tree"
version = "1.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
dependencies = [
"predicates-core",
"termtree",
]
[[package]]
name = "pretty_assertions"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
dependencies = [
"diff",
"yansi",
]
[[package]]
name = "primeorder"
version = "0.13.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
dependencies = [
"elliptic-curve",
]
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn 1.0.109",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "proc-macro2"
version = "1.0.76"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-06-09 01:56:54 +03:00
"unicode-ident",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "quote"
version = "1.0.35"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"proc-macro2",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
2023-03-31 20:06:56 +03:00
version = "0.6.4"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2020-08-15 22:10:49 +03:00
dependencies = [
"getrandom",
]
[[package]]
name = "redox_syscall"
version = "0.4.1"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
2020-08-15 22:10:49 +03:00
dependencies = [
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "regex"
version = "1.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[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",
]
[[package]]
name = "regex-syntax"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
2023-03-31 19:59:43 +03:00
[[package]]
name = "reqwest"
version = "0.11.23"
2023-03-31 19:59:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41"
2023-03-31 19:59:43 +03:00
dependencies = [
"base64 0.21.7",
2023-03-31 19:59:43 +03:00
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
2023-05-12 16:07:55 +03:00
"hyper-tls",
2023-03-31 19:59:43 +03:00
"ipnet",
"js-sys",
"log",
"mime",
2023-05-12 16:07:55 +03:00
"native-tls",
2023-03-31 19:59:43 +03:00
"once_cell",
"percent-encoding",
"pin-project-lite",
"serde",
"serde_json",
"serde_urlencoded",
"system-configuration",
2023-03-31 19:59:43 +03:00
"tokio",
2023-05-12 16:07:55 +03:00
"tokio-native-tls",
2023-03-31 19:59:43 +03:00
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg",
]
[[package]]
name = "rfc6979"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
dependencies = [
"hmac 0.12.1",
"subtle",
]
2022-05-08 00:46:49 +03:00
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin 0.5.2",
"untrusted 0.7.1",
2022-05-08 00:46:49 +03:00
"web-sys",
2022-08-26 22:37:39 +03:00
"winapi 0.3.9",
2022-05-08 00:46:49 +03:00
]
[[package]]
name = "ring"
version = "0.17.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
dependencies = [
"cc",
"getrandom",
"libc",
"spin 0.9.8",
"untrusted 0.9.0",
"windows-sys 0.48.0",
]
[[package]]
name = "roff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316"
2023-05-12 16:07:55 +03:00
[[package]]
name = "ron"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a"
dependencies = [
"base64 0.13.1",
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
2023-05-12 16:07:55 +03:00
"serde",
]
[[package]]
name = "rsa"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
dependencies = [
"const-oid",
"digest 0.10.7",
"num-bigint-dig",
"num-integer",
"num-traits",
"pkcs1",
"pkcs8",
"rand_core",
"sha2 0.10.8",
"signature",
"spki",
"subtle",
"zeroize",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "rusqlite"
2023-12-29 17:57:07 +02:00
version = "0.30.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-29 17:57:07 +02:00
checksum = "a78046161564f5e7cd9008aff3b2990b3850dc8e0349119b98e8f251e099f24d"
2020-08-15 22:10:49 +03:00
dependencies = [
2023-12-29 17:57:07 +02:00
"bitflags 2.4.1",
"chrono",
2020-08-15 22:10:49 +03:00
"fallible-iterator",
"fallible-streaming-iterator",
"hashlink",
"libsqlite3-sys",
"serde_json",
2020-08-15 22:10:49 +03:00
"smallvec",
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "rust-ini"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df"
dependencies = [
"cfg-if 1.0.0",
"ordered-multimap",
]
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
2023-03-31 20:06:56 +03:00
[[package]]
name = "rustix"
version = "0.37.27"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
2023-03-31 20:06:56 +03:00
dependencies = [
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
2023-03-31 20:06:56 +03:00
"errno",
"io-lifetimes",
"libc",
"linux-raw-sys 0.3.8",
"windows-sys 0.48.0",
2023-03-31 20:06:56 +03:00
]
[[package]]
name = "rustix"
version = "0.38.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca"
dependencies = [
"bitflags 2.4.1",
"errno",
"libc",
"linux-raw-sys 0.4.12",
"windows-sys 0.52.0",
]
2022-05-08 00:46:49 +03:00
[[package]]
name = "rustls"
version = "0.20.9"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99"
2022-05-08 00:46:49 +03:00
dependencies = [
"log",
"ring 0.16.20",
2022-05-08 00:46:49 +03:00
"sct",
"webpki",
]
2023-03-31 20:06:56 +03:00
[[package]]
name = "rustls-pemfile"
version = "1.0.4"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2023-03-31 20:06:56 +03:00
dependencies = [
"base64 0.21.7",
2022-05-08 00:46:49 +03:00
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "rustversion"
version = "1.0.14"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
2020-08-15 22:10:49 +03:00
[[package]]
name = "ryu"
version = "1.0.16"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
2020-08-15 22:10:49 +03:00
2022-08-26 22:37:39 +03:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "schannel"
version = "0.1.23"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
2020-08-15 22:10:49 +03:00
dependencies = [
"windows-sys 0.52.0",
2020-08-15 22:10:49 +03:00
]
2022-05-08 00:46:49 +03:00
[[package]]
name = "scoped_threadpool"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
2020-08-15 22:10:49 +03:00
[[package]]
name = "scopeguard"
version = "1.2.0"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2023-03-31 20:06:56 +03:00
2022-05-08 00:46:49 +03:00
[[package]]
name = "sct"
version = "0.7.1"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2022-05-08 00:46:49 +03:00
dependencies = [
"ring 0.17.7",
"untrusted 0.9.0",
2022-05-08 00:46:49 +03:00
]
[[package]]
name = "sec1"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
dependencies = [
"base16ct",
"der",
"generic-array",
"pkcs8",
"subtle",
"zeroize",
]
[[package]]
name = "secrecy"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"
dependencies = [
"zeroize",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "security-framework"
version = "2.9.2"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
2020-08-15 22:10:49 +03:00
dependencies = [
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
2020-08-15 22:10:49 +03:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.9.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
2020-08-15 22:10:49 +03:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "self_cell"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e14e4d63b804dc0c7ec4a1e52bcb63f02c7ac94476755aa579edac21e01f915d"
dependencies = [
"self_cell 1.0.3",
]
[[package]]
name = "self_cell"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58bf37232d3bb9a2c4e641ca2a11d83b5062066f88df7fed36c28772046d65ba"
[[package]]
name = "semver"
version = "1.0.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
dependencies = [
"serde",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "serde"
version = "1.0.195"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
2020-08-15 22:10:49 +03:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.195"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"proc-macro2",
"quote",
"syn 2.0.48",
2020-08-15 22:10:49 +03:00
]
2023-04-15 17:25:37 +03:00
[[package]]
name = "serde_html_form"
version = "0.2.3"
2023-04-15 17:25:37 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "224e6a14f315852940f3ec103125aa6482f0e224732ed91ed3330ed633077c34"
2023-04-15 17:25:37 +03:00
dependencies = [
"form_urlencoded",
"indexmap 2.1.0",
2023-04-15 17:25:37 +03:00
"itoa",
"ryu",
"serde",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "serde_json"
version = "1.0.111"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
2020-08-15 22:10:49 +03:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_path_to_error"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebd154a240de39fdebcf5775d2675c204d7c13cf39a4c697be6493c8e734337c"
dependencies = [
"itoa",
"serde",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "sha1"
version = "0.10.6"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-08-26 22:37:39 +03:00
"cfg-if 1.0.0",
2020-08-15 22:10:49 +03:00
"cpufeatures",
"digest 0.10.7",
2020-08-15 22:10:49 +03:00
]
2022-11-20 18:26:51 +02:00
[[package]]
name = "sha1_smol"
version = "1.0.0"
2022-11-20 18:26:51 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
[[package]]
name = "sha2"
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
2022-11-20 18:26:51 +02:00
dependencies = [
"block-buffer 0.9.0",
2022-11-20 18:26:51 +02:00
"cfg-if 1.0.0",
"cpufeatures",
"digest 0.9.0",
"opaque-debug",
2022-11-20 18:26:51 +02:00
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "sha2"
version = "0.10.8"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
dependencies = [
"cfg-if 1.0.0",
"cpufeatures",
"digest 0.10.7",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "signal-hook-registry"
2023-03-31 20:06:56 +03:00
version = "1.4.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
2020-08-15 22:10:49 +03:00
dependencies = [
"libc",
]
[[package]]
name = "signature"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
dependencies = [
"digest 0.10.7",
"rand_core",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "slab"
version = "0.4.9"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2023-03-31 20:06:56 +03:00
dependencies = [
"autocfg",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "smallvec"
version = "1.12.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2593d31f82ead8df961d8bd23a64c2ccf2eb5dd34b0a34bfb4dd54011c72009e"
2020-08-15 22:10:49 +03:00
dependencies = [
"serde",
]
[[package]]
name = "smol"
2023-03-31 20:06:56 +03:00
version = "1.3.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1"
2020-08-15 22:10:49 +03:00
dependencies = [
"async-channel 1.9.0",
2020-08-15 22:10:49 +03:00
"async-executor",
"async-fs",
"async-io 1.13.0",
"async-lock 2.8.0",
2020-08-15 22:10:49 +03:00
"async-net",
"async-process",
"blocking",
"futures-lite 1.13.0",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "socket2"
version = "0.4.10"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
2020-08-15 22:10:49 +03:00
dependencies = [
"libc",
2022-08-26 22:37:39 +03:00
"winapi 0.3.9",
2020-08-15 22:10:49 +03: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-05-08 00:46:49 +03:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
[[package]]
name = "spki"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
dependencies = [
"base64ct",
"der",
]
[[package]]
name = "ssh-cipher"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "caac132742f0d33c3af65bfcde7f6aa8f62f0e991d80db99149eb9d44708784f"
dependencies = [
"cipher",
"ssh-encoding",
]
[[package]]
name = "ssh-encoding"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb9242b9ef4108a78e8cd1a2c98e193ef372437f8c22be363075233321dd4a15"
dependencies = [
"base64ct",
"pem-rfc7468",
"sha2 0.10.8",
]
[[package]]
name = "ssh-key"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01f8f4ea73476c0aa5d5e6a75ce1e8634e2c3f82005ef3bbed21547ac57f2bf7"
dependencies = [
"ed25519-dalek",
"num-bigint-dig",
"p256",
"p384",
"p521",
"rand_core",
"rsa",
"sec1",
"sha2 0.10.8",
"signature",
"ssh-cipher",
"ssh-encoding",
"subtle",
"zeroize",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "stderrlog"
version = "0.6.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61c910772f992ab17d32d6760e167d2353f4130ed50e796752689556af07dc6b"
2020-08-15 22:10:49 +03:00
dependencies = [
"chrono",
"is-terminal",
2020-08-15 22:10:49 +03:00
"log",
"termcolor",
"thread_local",
]
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "subtle"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2023-03-31 20:06:56 +03:00
[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "syn"
version = "2.0.48"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"proc-macro2",
"quote",
2022-06-09 01:56:54 +03:00
"unicode-ident",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "sync_wrapper"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
[[package]]
name = "system-configuration"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"system-configuration-sys",
]
[[package]]
name = "system-configuration-sys"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
dependencies = [
"core-foundation-sys",
"libc",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "tempfile"
version = "3.9.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-08-26 22:37:39 +03:00
"cfg-if 1.0.0",
"fastrand 2.0.1",
"redox_syscall",
"rustix 0.38.30",
"windows-sys 0.52.0",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "termcolor"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
[[package]]
name = "terminal_size"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
dependencies = [
"rustix 0.38.30",
"windows-sys 0.48.0",
]
[[package]]
name = "termtree"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
2022-05-08 00:46:49 +03:00
[[package]]
name = "ternop"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d4ae32d0a4605a89c28534371b056919c12e7a070ee07505af75130ff030111"
2020-08-15 22:10:49 +03:00
[[package]]
name = "thiserror"
version = "1.0.56"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
2020-08-15 22:10:49 +03:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.56"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"proc-macro2",
"quote",
"syn 2.0.48",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "thread_local"
2023-03-31 20:06:56 +03:00
version = "1.1.7"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2020-08-15 22:10:49 +03:00
dependencies = [
2023-03-31 20:06:56 +03:00
"cfg-if 1.0.0",
2022-07-17 15:33:04 +03:00
"once_cell",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "time"
version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e"
dependencies = [
"deranged",
"itoa",
"powerfmt",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
[[package]]
name = "time-macros"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f"
dependencies = [
"time-core",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-03-31 20:06:56 +03:00
version = "0.1.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2020-08-15 22:10:49 +03:00
[[package]]
name = "tokio"
version = "1.35.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
2020-08-15 22:10:49 +03:00
dependencies = [
"backtrace",
2020-08-15 22:10:49 +03:00
"bytes",
"libc",
"mio 0.8.10",
2020-08-15 22:10:49 +03:00
"num_cpus",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"socket2 0.5.5",
2020-08-15 22:10:49 +03:00
"tokio-macros",
2023-05-09 11:15:59 +03:00
"windows-sys 0.48.0",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "tokio-macros"
version = "2.2.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"proc-macro2",
"quote",
"syn 2.0.48",
2020-08-15 22:10:49 +03:00
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
dependencies = [
"native-tls",
"tokio",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "tokio-util"
version = "0.7.10"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
2020-08-15 22:10:49 +03:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
"tracing",
]
[[package]]
name = "toml"
2023-03-31 20:06:56 +03:00
version = "0.5.11"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2020-08-15 22:10:49 +03:00
dependencies = [
"serde",
]
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
"futures-core",
"futures-util",
"pin-project",
"pin-project-lite",
"tokio",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-http"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858"
dependencies = [
"base64 0.13.1",
2023-12-29 17:57:07 +02:00
"bitflags 1.3.2",
"bytes",
"futures-core",
"futures-util",
"http",
"http-body",
"http-range-header",
"pin-project-lite",
"tower-layer",
"tower-service",
]
[[package]]
name = "tower-http"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
dependencies = [
2023-05-12 16:07:55 +03:00
"async-compression",
"bitflags 2.4.1",
"bytes",
"futures-core",
"futures-util",
"http",
"http-body",
"http-range-header",
"pin-project-lite",
2023-05-12 16:07:55 +03:00
"tokio",
"tokio-util",
"tower-layer",
"tower-service",
2023-05-12 16:07:55 +03:00
"tracing",
]
[[package]]
name = "tower-layer"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2020-08-15 22:10:49 +03:00
[[package]]
name = "tower-service"
2022-07-17 15:33:04 +03:00
version = "0.3.2"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-17 15:33:04 +03:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2020-08-15 22:10:49 +03:00
[[package]]
name = "tracing"
version = "0.1.40"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2020-08-15 22:10:49 +03:00
dependencies = [
"log",
"pin-project-lite",
"tracing-attributes",
2020-08-15 22:10:49 +03:00
"tracing-core",
]
[[package]]
name = "tracing-attributes"
version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "tracing-core"
version = "0.1.32"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-06-09 01:56:54 +03:00
"once_cell",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "try-lock"
version = "0.2.5"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2020-08-15 22:10:49 +03:00
[[package]]
name = "typenum"
version = "1.17.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2020-08-15 22:10:49 +03:00
2023-05-12 16:07:55 +03:00
[[package]]
name = "ucd-trie"
version = "0.1.6"
2023-05-12 16:07:55 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
2023-05-12 16:07:55 +03:00
2020-08-15 22:10:49 +03:00
[[package]]
name = "unicase"
version = "2.7.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"version_check",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "unicode-bidi"
version = "0.3.14"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
2020-08-15 22:10:49 +03:00
2022-06-09 01:56:54 +03:00
[[package]]
name = "unicode-ident"
version = "1.0.12"
2022-06-09 01:56:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2022-06-09 01:56:54 +03:00
2020-08-15 22:10:49 +03:00
[[package]]
name = "unicode-normalization"
2023-03-31 20:06:56 +03:00
version = "0.1.22"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2020-08-15 22:10:49 +03:00
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-segmentation"
2023-03-31 20:06:56 +03:00
version = "1.10.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-31 20:06:56 +03:00
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
2020-08-15 22:10:49 +03:00
[[package]]
name = "unicode-width"
version = "0.1.11"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2020-08-15 22:10:49 +03:00
2022-05-08 00:46:49 +03:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2023-05-09 10:49:54 +03:00
[[package]]
name = "ureq"
version = "2.9.1"
2023-05-09 10:49:54 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8cdd25c339e200129fe4de81451814e5228c9b771d57378817d6117cc2b3f97"
2023-05-09 10:49:54 +03:00
dependencies = [
"base64 0.21.7",
2023-05-09 10:49:54 +03:00
"log",
"once_cell",
"url",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "url"
version = "2.5.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
2020-08-15 22:10:49 +03:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
name = "uuid"
version = "1.6.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
2020-08-15 22:10:49 +03:00
dependencies = [
"getrandom",
"serde",
"sha1_smol",
]
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "wait-timeout"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
dependencies = [
"libc",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "waker-fn"
version = "1.1.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
2020-08-15 22:10:49 +03:00
2022-08-26 22:37:39 +03:00
[[package]]
name = "walkdir"
version = "2.4.0"
2022-08-26 22:37:39 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
2022-08-26 22:37:39 +03:00
dependencies = [
"same-file",
"winapi-util",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "want"
version = "0.3.1"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2020-08-15 22:10:49 +03:00
dependencies = [
"try-lock",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2022-05-08 00:46:49 +03:00
[[package]]
name = "wasm-bindgen"
version = "0.2.90"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1223296a201415c7fad14792dbefaace9bd52b62d33453ade1c5b5f07555406"
2022-05-08 00:46:49 +03:00
dependencies = [
2022-08-26 22:37:39 +03:00
"cfg-if 1.0.0",
2022-05-08 00:46:49 +03:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.90"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcdc935b63408d58a32f8cc9738a0bffd8f05cc7c002086c6ef20b7312ad9dcd"
2022-05-08 00:46:49 +03:00
dependencies = [
"bumpalo",
"log",
2023-03-31 20:06:56 +03:00
"once_cell",
2022-11-20 18:26:51 +02:00
"proc-macro2",
"quote",
"syn 2.0.48",
2022-05-08 00:46:49 +03:00
"wasm-bindgen-shared",
]
2023-03-31 19:59:43 +03:00
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.40"
2023-03-31 19:59:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bde2032aeb86bdfaecc8b261eef3cba735cc426c1f3a3416d1e0791be95fc461"
2023-03-31 19:59:43 +03:00
dependencies = [
"cfg-if 1.0.0",
"js-sys",
"wasm-bindgen",
"web-sys",
]
2022-05-08 00:46:49 +03:00
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.90"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e4c238561b2d428924c49815533a8b9121c664599558a5d9ec51f8a1740a999"
2022-05-08 00:46:49 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"quote",
2022-05-08 00:46:49 +03:00
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.90"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7"
2022-05-08 00:46:49 +03:00
dependencies = [
2022-11-20 18:26:51 +02:00
"proc-macro2",
"quote",
"syn 2.0.48",
2022-05-08 00:46:49 +03:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.90"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b"
2022-05-08 00:46:49 +03:00
[[package]]
name = "web-sys"
version = "0.3.67"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58cd2333b6e0be7a39605f0e255892fd7418a682d8da8fe042fe25128794d2ed"
2022-05-08 00:46:49 +03:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki"
version = "0.22.4"
2022-05-08 00:46:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"
2022-05-08 00:46:49 +03:00
dependencies = [
"ring 0.17.7",
"untrusted 0.9.0",
2022-05-08 00:46:49 +03:00
]
2022-08-26 22:37:39 +03:00
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2020-08-15 22:10:49 +03:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
2022-08-26 22:37:39 +03:00
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2020-08-15 22:10:49 +03:00
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.6"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
2020-08-15 22:10:49 +03:00
dependencies = [
2022-08-26 22:37:39 +03:00
"winapi 0.3.9",
2020-08-15 22:10:49 +03:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2023-03-31 20:06:56 +03:00
[[package]]
name = "windows-core"
version = "0.52.0"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2020-08-15 22:10:49 +03:00
dependencies = [
"windows-targets 0.52.0",
2020-08-15 22:10:49 +03:00
]
2023-03-31 20:06:56 +03:00
[[package]]
name = "windows-sys"
version = "0.48.0"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2023-03-31 20:06:56 +03:00
dependencies = [
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets 0.52.0",
2023-03-31 20:06:56 +03:00
]
[[package]]
name = "windows-targets"
version = "0.48.5"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2023-03-31 20:06:56 +03:00
dependencies = [
"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",
]
[[package]]
name = "windows-targets"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
dependencies = [
"windows_aarch64_gnullvm 0.52.0",
"windows_aarch64_msvc 0.52.0",
"windows_i686_gnu 0.52.0",
"windows_i686_msvc 0.52.0",
"windows_x86_64_gnu 0.52.0",
"windows_x86_64_gnullvm 0.52.0",
"windows_x86_64_msvc 0.52.0",
2023-03-31 20:06:56 +03:00
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-03-31 20:06:56 +03:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
2020-08-15 22:10:49 +03:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2020-08-15 22:10:49 +03:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
2020-08-15 22:10:49 +03:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2020-08-15 22:10:49 +03:00
[[package]]
name = "windows_i686_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
2020-08-15 22:10:49 +03:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2020-08-15 22:10:49 +03:00
[[package]]
name = "windows_i686_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
2020-08-15 22:10:49 +03:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
2023-03-31 20:06:56 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-03-31 20:06:56 +03:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
2023-03-31 20:06:56 +03:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2020-08-15 22:10:49 +03:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
2020-08-15 22:10:49 +03:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2020-08-15 22:10:49 +03:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
2023-03-31 19:59:43 +03:00
[[package]]
name = "winreg"
version = "0.50.0"
2023-03-31 19:59:43 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
2023-03-31 19:59:43 +03:00
dependencies = [
"cfg-if 1.0.0",
"windows-sys 0.48.0",
2023-03-31 19:59:43 +03:00
]
2022-08-26 22:37:39 +03:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
2020-08-15 22:10:49 +03:00
[[package]]
name = "xdg"
version = "2.5.2"
2020-08-15 22:10:49 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546"
2020-08-15 22:10:49 +03:00
[[package]]
name = "xz2"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
dependencies = [
"lzma-sys",
]
2023-05-12 16:07:55 +03:00
[[package]]
name = "yaml-rust"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
dependencies = [
"linked-hash-map",
]
[[package]]
name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
[[package]]
name = "zerocopy"
version = "0.7.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.48",
]
[[package]]
name = "zeroize"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
[[package]]
name = "zstd"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c"
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
version = "6.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581"
dependencies = [
"libc",
"zstd-sys",
]
[[package]]
name = "zstd-sys"
version = "2.0.9+zstd.1.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656"
dependencies = [
"cc",
"pkg-config",
]