bliss-rs/Cargo.lock

1673 lines
42 KiB
Plaintext
Raw Normal View History

2021-05-14 17:35:08 +03:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2021-05-14 17:35:08 +03:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2022-07-13 23:47:05 +03:00
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
[[package]]
name = "aho-corasick"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca972c2ea5f742bfce5687b9aef75506a764f61d37f8f649047846a9686ddb66"
dependencies = [
"memchr 0.1.11",
]
2021-11-27 14:13:54 +02:00
[[package]]
name = "ansi_term"
2022-02-16 20:18:39 +02:00
version = "0.12.1"
2021-11-27 14:13:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 20:18:39 +02:00
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
2021-11-27 14:13:54 +02:00
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "anyhow"
version = "1.0.70"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
2021-05-14 17:35:08 +03:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
2023-02-14 19:57:16 +02:00
"hermit-abi 0.1.19",
2021-05-14 17:35:08 +03:00
"libc",
"winapi 0.3.9",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "autocfg"
2022-02-16 20:18:39 +02:00
version = "1.1.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 20:18:39 +02:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-05-14 17:35:08 +03:00
[[package]]
name = "bindgen"
2023-03-16 20:35:12 +02:00
version = "0.64.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-16 20:35:12 +02:00
checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4"
2021-05-14 17:35:08 +03:00
dependencies = [
"bitflags",
"cexpr",
"clang-sys",
"lazy_static 1.4.0",
2021-05-14 17:35:08 +03:00
"lazycell",
2023-04-01 17:58:07 +03:00
"log",
2021-05-14 17:35:08 +03:00
"peeking_take_while",
"proc-macro2",
"quote",
"regex 1.7.2",
2021-05-14 17:35:08 +03:00
"rustc-hash",
"shlex",
"syn 1.0.109",
2023-04-01 17:58:07 +03:00
"which",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "bitflags"
2021-08-23 20:51:03 +03:00
version = "1.3.2"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-23 20:51:03 +03:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-05-14 17:35:08 +03:00
2021-05-16 15:47:42 +03:00
[[package]]
name = "bliss-audio"
version = "0.6.8"
2021-05-14 17:35:08 +03:00
dependencies = [
"anyhow",
2021-05-16 15:47:42 +03:00
"bliss-audio-aubio-rs",
2021-11-27 14:13:54 +02:00
"clap",
2021-05-14 17:35:08 +03:00
"crossbeam",
2022-07-13 23:47:05 +03:00
"dirs",
2021-05-14 17:35:08 +03:00
"ffmpeg-next",
2023-03-16 20:35:12 +02:00
"ffmpeg-sys-next",
"glob",
2022-07-13 23:47:05 +03:00
"indicatif",
2021-05-14 17:35:08 +03:00
"log",
"mime_guess",
2021-05-14 17:35:08 +03:00
"ndarray",
"ndarray-npy",
"ndarray-stats",
"noisy_float",
"num_cpus",
2022-04-15 00:52:32 +03:00
"pretty_assertions",
"rcue",
"ripemd",
2022-07-13 23:47:05 +03:00
"rusqlite",
2021-05-14 17:35:08 +03:00
"rustfft",
"serde",
2022-07-13 23:47:05 +03:00
"serde_ini",
"serde_json",
"strum",
"strum_macros",
2022-07-13 23:47:05 +03:00
"tempdir",
2021-05-14 17:35:08 +03:00
"thiserror",
]
[[package]]
name = "bliss-audio-aubio-rs"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb6b0b33b16bdb7489951c56294f4f9c321d91047ae29aebb91dfcd84a09086f"
dependencies = [
"bliss-audio-aubio-sys",
]
[[package]]
name = "bliss-audio-aubio-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd4d47e7b82164c30a806717cf5562f87e5b136b79b3d942c9ad789134116f2f"
dependencies = [
2023-04-01 17:58:07 +03:00
"bindgen",
"cc",
"fftw-sys",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "block-buffer"
version = "0.10.4"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-07-13 23:47:05 +03:00
"generic-array",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bzip2"
2023-02-14 19:57:16 +02:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
dependencies = [
"bzip2-sys",
"libc",
]
[[package]]
name = "bzip2-sys"
2021-08-23 20:51:03 +03:00
version = "0.1.11+1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-23 20:51:03 +03:00
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
dependencies = [
"cc",
"libc",
"pkg-config",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "cc"
2023-02-14 19:57:16 +02:00
version = "1.0.79"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
2021-05-14 18:22:14 +03:00
dependencies = [
"jobserver",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "cexpr"
2022-02-16 20:18:39 +02:00
version = "0.6.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 20:18:39 +02:00
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
2021-05-14 17:35:08 +03:00
dependencies = [
"nom",
]
[[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.2.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9213f7cd7c27e95c2b57c49f0e69b1ea65b27138da84a170133fd21b07659c00"
dependencies = [
"num",
"time",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "clang-sys"
version = "1.6.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77ed9a53e5d4d9c573ae844bfac6872b159cb1d1585a83b29e7a64b7eef7332a"
2021-05-14 17:35:08 +03:00
dependencies = [
"glob",
"libc",
"libloading",
]
2021-11-27 14:13:54 +02:00
[[package]]
name = "clap"
2022-02-16 20:18:39 +02:00
version = "2.34.0"
2021-11-27 14:13:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 20:18:39 +02:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
2021-11-27 14:13:54 +02:00
dependencies = [
"ansi_term",
"atty",
"bitflags",
"strsim",
"textwrap",
"unicode-width",
"vec_map",
]
2022-07-13 23:47:05 +03:00
[[package]]
name = "console"
2023-02-14 19:57:16 +02:00
version = "0.15.5"
2022-07-13 23:47:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60"
2022-07-13 23:47:05 +03:00
dependencies = [
"encode_unicode",
2022-09-29 00:33:14 +03:00
"lazy_static 1.4.0",
2022-07-13 23:47:05 +03:00
"libc",
"unicode-width",
"windows-sys 0.42.0",
2022-07-13 23:47:05 +03:00
]
[[package]]
name = "cpufeatures"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
dependencies = [
"libc",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "crc32fast"
2022-02-16 20:18:39 +02:00
version = "1.3.2"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 20:18:39 +02:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-02-16 20:18:39 +02:00
"cfg-if",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "crossbeam"
2022-07-13 23:47:05 +03:00
version = "0.8.2"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-02-16 20:18:39 +02:00
"cfg-if",
2021-05-14 17:35:08 +03:00
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-epoch",
"crossbeam-queue",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-channel"
version = "0.5.7"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-02-16 20:18:39 +02:00
"cfg-if",
2021-05-14 17:35:08 +03:00
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
version = "0.8.3"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-02-16 20:18:39 +02:00
"cfg-if",
2021-05-14 17:35:08 +03:00
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
version = "0.9.14"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695"
2021-05-14 17:35:08 +03:00
dependencies = [
"autocfg",
2022-02-16 20:18:39 +02:00
"cfg-if",
2021-05-14 17:35:08 +03:00
"crossbeam-utils",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-queue"
2023-02-14 19:57:16 +02:00
version = "0.3.8"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-02-16 20:18:39 +02:00
"cfg-if",
2021-05-14 17:35:08 +03:00
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.15"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-02-16 20:18:39 +02:00
"cfg-if",
2022-07-13 23:47:05 +03:00
]
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
2021-05-14 17:35:08 +03:00
]
2022-04-15 00:52:32 +03:00
[[package]]
name = "ctor"
2023-02-14 19:57:16 +02:00
version = "0.1.26"
2022-04-15 00:52:32 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
2022-04-15 00:52:32 +03:00
dependencies = [
"quote",
"syn 1.0.109",
2022-04-15 00:52:32 +03:00
]
[[package]]
name = "diff"
2022-07-13 23:47:05 +03:00
version = "0.1.13"
2022-04-15 00:52:32 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
2022-04-15 00:52:32 +03:00
2021-05-14 17:35:08 +03:00
[[package]]
name = "digest"
2023-02-14 19:57:16 +02:00
version = "0.10.6"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
2022-07-13 23:47:05 +03:00
dependencies = [
"block-buffer",
2022-07-13 23:47:05 +03:00
"crypto-common",
]
[[package]]
name = "dirs"
version = "5.0.0"
2022-07-13 23:47:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dece029acd3353e3a58ac2e3eb3c8d6c35827a892edc6cc4138ef9c33df46ecd"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-07-13 23:47:05 +03:00
"dirs-sys",
]
[[package]]
name = "dirs-sys"
version = "0.4.0"
2022-07-13 23:47:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04414300db88f70d74c5ff54e50f9e1d1737d9a5b90f53fcf2e95ca2a9ab554b"
2022-07-13 23:47:05 +03:00
dependencies = [
"libc",
"redox_users",
"windows-sys 0.45.0",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "either"
2023-02-14 19:57:16 +02:00
version = "1.8.1"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
2022-07-13 23:47:05 +03:00
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
2021-05-14 17:35:08 +03:00
[[package]]
2022-07-13 23:47:05 +03:00
name = "fallible-iterator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
[[package]]
name = "fallible-streaming-iterator"
version = "0.1.9"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
2021-05-14 17:35:08 +03:00
[[package]]
name = "ffmpeg-next"
2023-03-16 20:35:12 +02:00
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-16 20:35:12 +02:00
checksum = "8af03c47ad26832ab3aabc4cdbf210af3d3b878783edd5a7ba044ba33aab7a60"
2021-05-14 17:35:08 +03:00
dependencies = [
"bitflags",
"ffmpeg-sys-next",
"libc",
]
[[package]]
name = "ffmpeg-sys-next"
2023-03-16 20:35:12 +02:00
version = "6.0.1"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-03-16 20:35:12 +02:00
checksum = "cf650f461ccf130f4eef4927affed703cc387b183bfc4a7dfee86a076c131127"
2021-05-14 17:35:08 +03:00
dependencies = [
"bindgen",
"cc",
"libc",
"num_cpus",
"pkg-config",
"vcpkg",
]
[[package]]
name = "fftw-src"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c08962470ab0e91e74ec7d338c8731476c28ed4e503a3080b0f001692e395a7c"
dependencies = [
"anyhow",
"cc",
"fs_extra",
"ftp",
"zip",
]
[[package]]
name = "fftw-sys"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8e3951d695cc2f17610cd041e87ebc15078d1af5eb8c6be77921381fc98b3fd"
dependencies = [
"fftw-src",
"libc",
"num-complex 0.3.1",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "flate2"
2023-02-14 19:57:16 +02:00
version = "1.0.25"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
2021-05-14 17:35:08 +03:00
dependencies = [
"crc32fast",
"miniz_oxide",
]
[[package]]
name = "fs_extra"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394"
[[package]]
name = "ftp"
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "542951aad0071952c27409e3bd7cb62d1a3ad419c4e7314106bf994e0083ad5d"
dependencies = [
"chrono",
"lazy_static 0.1.16",
"regex 0.1.80",
]
2021-05-14 17:35:08 +03:00
[[package]]
2022-07-13 23:47:05 +03:00
name = "fuchsia-cprng"
version = "0.1.1"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
2021-05-14 17:35:08 +03:00
[[package]]
name = "generic-array"
2022-07-13 23:47:05 +03:00
version = "0.14.6"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
2021-05-14 17:35:08 +03:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2023-02-14 19:57:16 +02:00
version = "0.2.8"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-02-16 20:18:39 +02:00
"cfg-if",
2021-05-14 17:35:08 +03:00
"libc",
2022-07-13 23:47:05 +03:00
"wasi 0.11.0+wasi-snapshot-preview1",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "glob"
2023-02-14 19:57:16 +02:00
version = "0.3.1"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2021-05-14 17:35:08 +03:00
[[package]]
name = "hashbrown"
version = "0.12.3"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2022-07-13 23:47:05 +03:00
dependencies = [
"ahash",
]
[[package]]
name = "hashlink"
version = "0.8.1"
2022-07-13 23:47:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
2022-07-13 23:47:05 +03:00
dependencies = [
"hashbrown",
2022-07-13 23:47:05 +03:00
]
2021-05-14 18:22:14 +03:00
[[package]]
name = "heck"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2021-05-14 17:35:08 +03:00
[[package]]
name = "hermit-abi"
2021-08-23 20:51:03 +03:00
version = "0.1.19"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-23 20:51:03 +03:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2021-05-14 17:35:08 +03:00
dependencies = [
"libc",
]
2023-02-14 19:57:16 +02:00
[[package]]
name = "hermit-abi"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
dependencies = [
"libc",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "indexmap"
2023-02-14 19:57:16 +02:00
version = "1.9.2"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
2021-05-14 17:35:08 +03:00
dependencies = [
"autocfg",
"hashbrown",
2022-07-13 23:47:05 +03:00
]
[[package]]
name = "indicatif"
2023-02-14 19:57:16 +02:00
version = "0.17.3"
2022-07-13 23:47:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "cef509aa9bc73864d6756f0d34d35504af3cf0844373afe9b8669a5b8005a729"
2022-07-13 23:47:05 +03:00
dependencies = [
"console",
"number_prefix",
2023-02-14 19:57:16 +02:00
"portable-atomic",
2022-07-13 23:47:05 +03:00
"unicode-width",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "itertools"
2022-07-13 23:47:05 +03:00
version = "0.10.5"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
2021-05-14 17:35:08 +03:00
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
2021-05-14 17:35:08 +03:00
[[package]]
2021-05-14 18:22:14 +03:00
name = "jobserver"
version = "0.1.26"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
2021-05-14 17:35:08 +03:00
dependencies = [
2021-05-14 18:22:14 +03:00
"libc",
2021-05-14 17:35:08 +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",
]
[[package]]
name = "lazy_static"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf186d1a8aa5f5bee5fd662bc9c1b949e0259e1bcc379d1f006847b0080c7417"
2021-05-14 17:35:08 +03:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "lazycell"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
[[package]]
name = "libc"
version = "0.2.140"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
2021-05-14 17:35:08 +03:00
[[package]]
name = "libloading"
2023-02-14 19:57:16 +02:00
version = "0.7.4"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-02-16 20:18:39 +02:00
"cfg-if",
"winapi 0.3.9",
2021-05-14 17:35:08 +03:00
]
[[package]]
2022-07-13 23:47:05 +03:00
name = "libsqlite3-sys"
version = "0.25.2"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-07-13 23:47:05 +03:00
"pkg-config",
"vcpkg",
2021-05-14 17:35:08 +03:00
]
[[package]]
2022-07-13 23:47:05 +03:00
name = "log"
version = "0.4.17"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "matrixmultiply"
2022-02-16 20:18:39 +02:00
version = "0.3.2"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 20:18:39 +02:00
checksum = "add85d4dd35074e6fedc608f8c8f513a3548619a9024b751949ef0e8e45a4d84"
2021-05-14 17:35:08 +03:00
dependencies = [
"rawpointer",
]
[[package]]
name = "memchr"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8b629fb514376c675b98c1421e80b151d3817ac42d7c667717d282761418d20"
dependencies = [
"libc",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "memchr"
2022-07-13 23:47:05 +03:00
version = "2.5.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2021-05-14 17:35:08 +03:00
[[package]]
name = "memoffset"
version = "0.8.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
2021-05-14 17:35:08 +03:00
dependencies = [
"autocfg",
]
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
"mime",
"unicase",
]
2022-02-16 20:18:39 +02:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2021-05-14 17:35:08 +03:00
[[package]]
name = "miniz_oxide"
2023-02-14 19:57:16 +02:00
version = "0.6.2"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
2021-05-14 17:35:08 +03:00
dependencies = [
"adler",
]
[[package]]
name = "ndarray"
2022-07-13 23:47:05 +03:00
version = "0.15.6"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
2021-05-14 17:35:08 +03:00
dependencies = [
"matrixmultiply",
2023-02-14 19:57:16 +02:00
"num-complex 0.4.3",
2021-05-14 17:35:08 +03:00
"num-integer",
"num-traits",
"rawpointer",
"rayon",
]
[[package]]
name = "ndarray-npy"
2022-02-16 20:18:39 +02:00
version = "0.8.1"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 20:18:39 +02:00
checksum = "f85776816e34becd8bd9540818d7dc77bf28307f3b3dcc51cc82403c6931680c"
2021-05-14 17:35:08 +03:00
dependencies = [
"byteorder",
"ndarray",
"num-traits",
"py_literal",
]
[[package]]
name = "ndarray-stats"
2022-07-13 23:47:05 +03:00
version = "0.5.1"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "af5a8477ac96877b5bd1fd67e0c28736c12943aba24eda92b127e036b0c8f400"
2021-05-14 17:35:08 +03:00
dependencies = [
"indexmap",
"itertools",
"ndarray",
"noisy_float",
"num-integer",
"num-traits",
2022-07-13 23:47:05 +03:00
"rand 0.8.5",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "noisy_float"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "978fe6e6ebc0bf53de533cd456ca2d9de13de13856eda1518a285d7705a213af"
dependencies = [
"num-traits",
]
[[package]]
name = "nom"
2023-02-14 19:57:16 +02:00
version = "7.1.3"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-07-13 23:47:05 +03:00
"memchr 2.5.0",
2022-02-16 20:18:39 +02:00
"minimal-lexical",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "num"
version = "0.1.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4703ad64153382334aa8db57c637364c322d3372e097840c72000dabdcf6156e"
dependencies = [
"num-integer",
"num-iter",
"num-traits",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "num-bigint"
2022-02-16 20:18:39 +02:00
version = "0.4.3"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 20:18:39 +02:00
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
2021-05-14 17:35:08 +03:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-complex"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "747d632c0c558b87dbabbe6a82f3b4ae03720d0646ac5b7b4dae89394be5f2c5"
dependencies = [
"num-traits",
]
[[package]]
name = "num-complex"
2023-02-14 19:57:16 +02:00
version = "0.4.3"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
2021-05-14 17:35:08 +03:00
dependencies = [
"num-traits",
]
[[package]]
name = "num-integer"
2022-07-13 23:47:05 +03:00
version = "0.1.45"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2021-05-14 17:35:08 +03:00
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-iter"
2022-07-13 23:47:05 +03:00
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "num-traits"
2022-07-13 23:47:05 +03:00
version = "0.2.15"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2021-05-14 17:35:08 +03:00
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2023-02-14 19:57:16 +02:00
version = "1.15.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
2021-05-14 17:35:08 +03:00
dependencies = [
2023-02-14 19:57:16 +02:00
"hermit-abi 0.2.6",
2021-05-14 17:35:08 +03:00
"libc",
]
[[package]]
2022-07-13 23:47:05 +03:00
name = "number_prefix"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
[[package]]
name = "once_cell"
2023-02-14 19:57:16 +02:00
version = "1.17.1"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
2021-05-14 17:35:08 +03:00
2022-04-15 00:52:32 +03:00
[[package]]
name = "output_vt100"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66"
dependencies = [
"winapi 0.3.9",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "peeking_take_while"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
[[package]]
name = "pest"
version = "2.5.6"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8cbd939b234e95d72bc393d51788aec68aeeb5d51e748ca08ff3aad58cb722f7"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-07-13 23:47:05 +03:00
"thiserror",
2021-05-14 17:35:08 +03:00
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.5.6"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a81186863f3d0a27340815be8f2078dd8050b14cd71913db9fbda795e5f707d7"
2021-05-14 17:35:08 +03:00
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.5.6"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75a1ef20bf3193c15ac345acb32e26b3dc3223aff4d77ae4fc5359567683796b"
2021-05-14 17:35:08 +03:00
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn 1.0.109",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "pest_meta"
version = "2.5.6"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e3b284b1f13a20dc5ebc90aff59a51b8d7137c221131b52a7260c08cbc1cc80"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-07-13 23:47:05 +03:00
"once_cell",
2021-05-14 17:35:08 +03:00
"pest",
2023-02-14 19:57:16 +02:00
"sha2",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "pkg-config"
2023-02-14 19:57:16 +02:00
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
[[package]]
name = "portable-atomic"
version = "0.3.19"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "26f6a7b87c2e435a3241addceeeff740ff8b7e76b74c13bf9acb17fa454ea00b"
2021-05-14 17:35:08 +03:00
[[package]]
name = "ppv-lite86"
2023-02-14 19:57:16 +02:00
version = "0.2.17"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2021-05-14 17:35:08 +03:00
2022-04-15 00:52:32 +03:00
[[package]]
name = "pretty_assertions"
2022-07-13 23:47:05 +03:00
version = "1.3.0"
2022-04-15 00:52:32 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755"
2022-04-15 00:52:32 +03:00
dependencies = [
"ctor",
"diff",
"output_vt100",
2022-07-13 23:47:05 +03:00
"yansi",
2022-04-15 00:52:32 +03:00
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "primal-check"
2022-07-13 23:47:05 +03:00
version = "0.3.3"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "9df7f93fd637f083201473dab4fee2db4c429d32e55e3299980ab3957ab916a0"
2021-05-14 17:35:08 +03:00
dependencies = [
"num-integer",
]
[[package]]
name = "proc-macro2"
version = "1.0.53"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba466839c78239c09faf015484e5cc04860f88242cff4d03eb038f04b4699b73"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-07-13 23:47:05 +03:00
"unicode-ident",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "py_literal"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "102df7a3d46db9d3891f178dcc826dc270a6746277a9ae6436f8d29fd490a8e1"
dependencies = [
"num-bigint",
2023-02-14 19:57:16 +02:00
"num-complex 0.4.3",
2021-05-14 17:35:08 +03:00
"num-traits",
"pest",
"pest_derive",
]
[[package]]
name = "quote"
version = "1.0.26"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
2021-05-14 17:35:08 +03:00
dependencies = [
"proc-macro2",
]
2022-07-13 23:47:05 +03:00
[[package]]
name = "rand"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
dependencies = [
"fuchsia-cprng",
"libc",
"rand_core 0.3.1",
"rdrand",
"winapi 0.3.9",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "rand"
2022-02-16 20:18:39 +02:00
version = "0.8.5"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 20:18:39 +02:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-05-14 17:35:08 +03:00
dependencies = [
"libc",
"rand_chacha",
2022-07-13 23:47:05 +03:00
"rand_core 0.6.4",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "rand_chacha"
2021-08-23 20:51:03 +03:00
version = "0.3.1"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-23 20:51:03 +03:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-05-14 17:35:08 +03:00
dependencies = [
"ppv-lite86",
2022-07-13 23:47:05 +03:00
"rand_core 0.6.4",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "rand_core"
2022-07-13 23:47:05 +03:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
dependencies = [
"rand_core 0.4.2",
]
[[package]]
name = "rand_core"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
[[package]]
name = "rand_core"
version = "0.6.4"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2021-05-14 17:35:08 +03:00
dependencies = [
"getrandom",
]
[[package]]
name = "rawpointer"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
[[package]]
name = "rayon"
version = "1.7.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
2021-05-14 17:35:08 +03:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.11.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
2021-05-14 17:35:08 +03:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
[[package]]
name = "rcue"
2022-04-15 00:52:32 +03:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-15 00:52:32 +03:00
checksum = "fca1481d62f18158646de2ec552dd63f8bdc5be6448389b192ba95c939df997e"
2022-07-13 23:47:05 +03:00
[[package]]
name = "rdrand"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
dependencies = [
"rand_core 0.3.1",
]
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
"bitflags",
]
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
"getrandom",
"redox_syscall",
"thiserror",
]
[[package]]
name = "regex"
version = "0.1.80"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fd4ace6a8cf7860714a2c2280d6c1f7e6a413486c13298bbc86fd3da019402f"
dependencies = [
"aho-corasick",
"memchr 0.1.11",
"regex-syntax 0.3.9",
"thread_local",
"utf8-ranges",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "regex"
version = "1.7.2"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cce168fea28d3e05f158bda4576cf0c844d5045bc2cc3620fa0292ed5bb5814c"
2021-05-14 17:35:08 +03:00
dependencies = [
"regex-syntax 0.6.29",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "regex-syntax"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957"
2021-05-14 17:35:08 +03:00
[[package]]
name = "regex-syntax"
version = "0.6.29"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2022-07-13 23:47:05 +03:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi 0.3.9",
]
[[package]]
name = "result"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194d8e591e405d1eecf28819740abed6d719d1a2db87fc0bcdedee9a26d55560"
2021-05-14 17:35:08 +03:00
[[package]]
name = "ripemd"
version = "0.1.3"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f"
2021-05-14 17:35:08 +03:00
dependencies = [
"digest",
2022-07-13 23:47:05 +03:00
]
[[package]]
name = "rusqlite"
version = "0.28.0"
2022-07-13 23:47:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a"
2022-07-13 23:47:05 +03:00
dependencies = [
"bitflags",
"fallible-iterator",
"fallible-streaming-iterator",
"hashlink",
"libsqlite3-sys",
"smallvec",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustfft"
2023-02-14 19:57:16 +02:00
version = "6.1.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "e17d4f6cbdb180c9f4b2a26bbf01c4e647f1e1dea22fe8eb9db54198b32f9434"
2021-05-14 17:35:08 +03:00
dependencies = [
2023-02-14 19:57:16 +02:00
"num-complex 0.4.3",
2021-05-14 17:35:08 +03:00
"num-integer",
"num-traits",
"primal-check",
"strength_reduce",
"transpose",
2023-02-14 19:57:16 +02:00
"version_check",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "rustversion"
2023-02-14 19:57:16 +02:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
[[package]]
name = "ryu"
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
2021-05-14 17:35:08 +03:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "serde"
version = "1.0.158"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "771d4d9c4163ee138805e12c710dd365e4f44be8be0503cb1bb9eb989425d9c9"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.158"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e801c1712f48475582b7696ac71e0ca34ebb30e09338425384269d9717c62cad"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.8",
]
2022-07-13 23:47:05 +03:00
[[package]]
name = "serde_ini"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb236687e2bb073a7521c021949be944641e671b8505a94069ca37b656c81139"
dependencies = [
"result",
"serde",
"void",
]
[[package]]
name = "serde_json"
version = "1.0.94"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea"
dependencies = [
"itoa",
"ryu",
"serde",
]
2021-05-14 17:35:08 +03:00
[[package]]
2023-02-14 19:57:16 +02:00
name = "sha2"
version = "0.10.6"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
2021-05-14 17:35:08 +03:00
dependencies = [
2022-07-13 23:47:05 +03:00
"cfg-if",
"cpufeatures",
"digest",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "shlex"
2022-02-16 20:18:39 +02:00
version = "1.1.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 20:18:39 +02:00
checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
2021-05-14 17:35:08 +03:00
2022-07-13 23:47:05 +03:00
[[package]]
name = "smallvec"
2022-09-29 00:33:14 +03:00
version = "1.10.0"
2022-07-13 23:47:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-29 00:33:14 +03:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2022-07-13 23:47:05 +03:00
2021-05-14 17:35:08 +03:00
[[package]]
name = "strength_reduce"
2023-02-14 19:57:16 +02:00
version = "0.2.4"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
2021-05-14 17:35:08 +03:00
2021-11-27 14:13:54 +02:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "strum"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
[[package]]
name = "strum_macros"
version = "0.24.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
"syn 1.0.109",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "syn"
version = "1.0.109"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2021-05-14 17:35:08 +03:00
dependencies = [
"proc-macro2",
"quote",
2022-07-13 23:47:05 +03:00
"unicode-ident",
]
[[package]]
name = "syn"
version = "2.0.8"
2022-07-13 23:47:05 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcc02725fd69ab9f26eab07fad303e2497fad6fb9eba4f96c4d1687bdf704ad9"
2022-07-13 23:47:05 +03:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "tempdir"
version = "0.3.7"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
2021-05-14 17:35:08 +03:00
dependencies = [
"rand 0.4.6",
"remove_dir_all",
2021-05-14 17:35:08 +03:00
]
2021-11-27 14:13:54 +02:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "thiserror"
version = "1.0.40"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
2021-05-14 17:35:08 +03:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.40"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
2021-05-14 17:35:08 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.8",
2021-05-14 17:35:08 +03:00
]
[[package]]
name = "thread-id"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9539db560102d1cef46b8b78ce737ff0bb64e7e18d35b2a5688f7d097d0ff03"
dependencies = [
"kernel32-sys",
"libc",
]
[[package]]
name = "thread_local"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8576dbbfcaef9641452d5cf0df9b0e7eeab7694956dd33bb61515fb8f18cfdd5"
dependencies = [
"thread-id",
]
[[package]]
name = "time"
2023-02-14 19:57:16 +02:00
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
dependencies = [
"libc",
2022-07-13 23:47:05 +03:00
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi 0.3.9",
]
2021-05-14 17:35:08 +03:00
[[package]]
name = "transpose"
2023-02-14 19:57:16 +02:00
version = "0.2.2"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "e6522d49d03727ffb138ae4cbc1283d3774f0d10aa7f9bf52e6784c45daf9b23"
2021-05-14 17:35:08 +03:00
dependencies = [
"num-integer",
"strength_reduce",
]
[[package]]
name = "typenum"
2023-02-14 19:57:16 +02:00
version = "1.16.0"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-14 19:57:16 +02:00
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2021-05-14 17:35:08 +03:00
[[package]]
name = "ucd-trie"
2022-07-13 23:47:05 +03:00
version = "0.1.5"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
2021-05-14 17:35:08 +03:00
[[package]]
name = "unicase"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
dependencies = [
"version_check",
]
[[package]]
2022-07-13 23:47:05 +03:00
name = "unicode-ident"
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
2021-11-27 14:13:54 +02:00
2021-05-14 17:35:08 +03:00
[[package]]
2022-07-13 23:47:05 +03:00
name = "unicode-width"
version = "0.1.10"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2021-05-14 17:35:08 +03:00
[[package]]
name = "utf8-ranges"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f"
2021-05-14 17:35:08 +03:00
[[package]]
name = "vcpkg"
2021-08-23 20:51:03 +03:00
version = "0.2.15"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-08-23 20:51:03 +03:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2021-05-14 17:35:08 +03:00
2021-11-27 14:13:54 +02:00
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2021-05-14 17:35:08 +03:00
[[package]]
name = "version_check"
2022-02-16 20:18:39 +02:00
version = "0.9.4"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 20:18:39 +02:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-05-14 17:35:08 +03:00
2022-07-13 23:47:05 +03:00
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2021-05-14 17:35:08 +03:00
[[package]]
name = "wasi"
2022-07-13 23:47:05 +03:00
version = "0.11.0+wasi-snapshot-preview1"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-13 23:47:05 +03:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-05-14 17:35:08 +03:00
2023-04-01 17:58:07 +03:00
[[package]]
name = "which"
version = "4.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
dependencies = [
"either",
"libc",
"once_cell",
]
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2021-05-14 17:35:08 +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",
]
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2021-05-14 17:35:08 +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-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2023-02-14 19:57:16 +02:00
[[package]]
name = "windows-sys"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
[[package]]
name = "windows-sys"
version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
2023-02-14 19:57:16 +02:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.2"
2023-02-14 19:57:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2023-02-14 19:57:16 +02:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.42.2"
2023-02-14 19:57:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2023-02-14 19:57:16 +02:00
[[package]]
name = "windows_i686_gnu"
version = "0.42.2"
2023-02-14 19:57:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2023-02-14 19:57:16 +02:00
[[package]]
name = "windows_i686_msvc"
version = "0.42.2"
2023-02-14 19:57:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2023-02-14 19:57:16 +02:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.42.2"
2023-02-14 19:57:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2023-02-14 19:57:16 +02:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.2"
2023-02-14 19:57:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2023-02-14 19:57:16 +02:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.42.2"
2023-02-14 19:57:16 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2023-02-14 19:57:16 +02:00
2022-07-13 23:47:05 +03:00
[[package]]
name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
2021-05-14 17:35:08 +03:00
[[package]]
name = "zip"
2021-06-06 14:51:08 +03:00
version = "0.5.13"
2021-05-14 17:35:08 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-06 14:51:08 +03:00
checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815"
2021-05-14 17:35:08 +03:00
dependencies = [
"byteorder",
"bzip2",
2021-05-14 17:35:08 +03:00
"crc32fast",
"flate2",
"thiserror",
"time",
2021-05-14 17:35:08 +03:00
]