PbDbFixer/Cargo.lock

491 lines
12 KiB
Plaintext
Raw Normal View History

2021-01-28 17:52:09 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-08-06 11:03:10 +02:00
version = 3
2021-01-28 17:52:09 +01:00
[[package]]
2022-07-12 13:21:59 +02:00
name = "adler"
version = "1.0.2"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "aes"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
"opaque-debug",
]
2021-01-28 17:52:09 +01:00
[[package]]
name = "ahash"
2022-07-12 13:21:59 +02:00
version = "0.7.6"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
2021-05-26 13:29:43 +02:00
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
2021-01-28 17:52:09 +01:00
2022-07-12 13:21:59 +02:00
[[package]]
name = "base64ct"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a32fd6af2b5827bce66c29053ba0e7c42b9dcab01835835058558c10851a46b"
2021-01-28 17:52:09 +01:00
[[package]]
name = "bitflags"
2022-07-12 13:21:59 +02:00
version = "1.3.2"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "block-buffer"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
dependencies = [
"generic-array",
]
2021-01-28 17:52:09 +01:00
[[package]]
name = "byteorder"
2022-07-12 13:21:59 +02:00
version = "1.4.3"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2021-01-28 17:52:09 +01:00
[[package]]
name = "bzip2"
2022-07-12 13:21:59 +02:00
version = "0.4.3"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0"
2021-01-28 17:52:09 +01:00
dependencies = [
"bzip2-sys",
"libc",
]
[[package]]
name = "bzip2-sys"
2022-07-12 13:21:59 +02:00
version = "0.1.11+1.0.8"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
2021-01-28 17:52:09 +01:00
dependencies = [
"cc",
"libc",
"pkg-config",
]
[[package]]
name = "cc"
2022-07-12 13:21:59 +02:00
version = "1.0.73"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
dependencies = [
"jobserver",
]
2021-01-28 17:52:09 +01:00
[[package]]
name = "cfg-if"
2022-07-12 13:21:59 +02:00
version = "1.0.0"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2021-01-28 17:52:09 +01:00
[[package]]
2022-07-12 13:21:59 +02:00
name = "cipher"
version = "0.3.0"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
dependencies = [
"generic-array",
]
[[package]]
name = "constant_time_eq"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
name = "cpufeatures"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
dependencies = [
"libc",
]
2021-01-28 17:52:09 +01:00
[[package]]
name = "crc32fast"
2022-07-12 13:21:59 +02:00
version = "1.3.2"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
2021-01-28 17:52:09 +01:00
dependencies = [
2022-07-12 13:21:59 +02:00
"cfg-if",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d82ee10ce34d7bc12c2122495e7593a9c41347ecdd64185af4ecf72cb1a7f83"
dependencies = [
"cfg-if",
"once_cell",
]
[[package]]
name = "crypto-common"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ccfd8c0ee4cce11e45b3fd6f9d5e69e0cc62912aa6a0cb1bf4617b0eba5a12f"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "digest"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
dependencies = [
"block-buffer",
"crypto-common",
"subtle",
2021-01-28 17:52:09 +01:00
]
[[package]]
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"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
[[package]]
name = "flate2"
2022-07-12 13:21:59 +02:00
version = "1.0.24"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
2021-01-28 17:52:09 +01:00
dependencies = [
"crc32fast",
"miniz_oxide",
]
2022-07-12 13:21:59 +02:00
[[package]]
name = "generic-array"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
dependencies = [
"typenum",
"version_check",
]
2021-05-26 13:29:43 +02:00
[[package]]
name = "getrandom"
2022-07-12 13:21:59 +02:00
version = "0.2.7"
2021-05-26 13:29:43 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
2021-05-26 13:29:43 +02:00
dependencies = [
2022-07-12 13:21:59 +02:00
"cfg-if",
2021-05-26 13:29:43 +02:00
"libc",
"wasi",
]
2021-01-28 17:52:09 +01:00
[[package]]
name = "hashbrown"
2021-05-26 13:29:43 +02:00
version = "0.11.2"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-26 13:29:43 +02:00
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
2021-01-28 17:52:09 +01:00
dependencies = [
"ahash",
]
[[package]]
name = "hashlink"
2021-05-26 13:29:43 +02:00
version = "0.7.0"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-05-26 13:29:43 +02:00
checksum = "7249a3129cbc1ffccd74857f81464a323a152173cdb134e0fd81bc803b29facf"
2021-01-28 17:52:09 +01:00
dependencies = [
"hashbrown",
]
2022-07-12 13:21:59 +02:00
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest",
]
[[package]]
name = "itoa"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
[[package]]
name = "jobserver"
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa"
dependencies = [
"libc",
]
2021-01-28 17:52:09 +01:00
[[package]]
name = "libc"
2022-07-12 13:21:59 +02:00
version = "0.2.126"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
2021-01-28 17:52:09 +01:00
[[package]]
name = "libsqlite3-sys"
2022-07-12 13:21:59 +02:00
version = "0.24.2"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "898745e570c7d0453cc1fbc4a701eb6c662ed54e8fec8b7d14be137ebeeb9d14"
2021-01-28 17:52:09 +01:00
dependencies = [
"cc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "memchr"
2022-07-12 13:21:59 +02:00
version = "2.5.0"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2021-01-28 17:52:09 +01:00
[[package]]
name = "miniz_oxide"
2022-07-12 13:21:59 +02:00
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
dependencies = [
"adler",
]
[[package]]
name = "num_threads"
version = "0.1.6"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
2021-01-28 17:52:09 +01:00
dependencies = [
2022-07-12 13:21:59 +02:00
"libc",
2021-01-28 17:52:09 +01:00
]
2021-05-26 13:29:43 +02:00
[[package]]
name = "once_cell"
2022-07-12 13:21:59 +02:00
version = "1.13.0"
2021-05-26 13:29:43 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "password-hash"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d791538a6dcc1e7cb7fe6f6b58aca40e7f79403c45b2bc274008b5e647af1d8"
dependencies = [
"base64ct",
"rand_core",
"subtle",
]
2021-05-26 13:29:43 +02:00
2021-01-28 17:52:09 +01:00
[[package]]
name = "pbdbfixer"
2021-08-06 15:14:50 +02:00
version = "0.8.3"
2021-01-28 17:52:09 +01:00
dependencies = [
2021-02-11 21:58:10 +01:00
"quick-xml",
2021-01-28 17:52:09 +01:00
"rusqlite",
"zip",
]
[[package]]
2022-07-12 13:21:59 +02:00
name = "pbkdf2"
version = "0.10.1"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7"
dependencies = [
"digest",
"hmac",
"password-hash",
"sha2",
]
2021-01-28 17:52:09 +01:00
[[package]]
2022-07-12 13:21:59 +02:00
name = "pkg-config"
version = "0.3.25"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
2021-01-28 17:52:09 +01:00
2021-02-11 21:58:10 +01:00
[[package]]
name = "quick-xml"
2022-07-12 13:21:59 +02:00
version = "0.23.0"
2021-02-11 21:58:10 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "9279fbdacaad3baf559d8cabe0acc3d06e30ea14931af31af79578ac0946decc"
2021-02-11 21:58:10 +01:00
dependencies = [
"memchr",
]
2021-01-28 17:52:09 +01:00
[[package]]
2022-07-12 13:21:59 +02:00
name = "rand_core"
version = "0.6.3"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2021-01-28 17:52:09 +01:00
[[package]]
name = "rusqlite"
2022-07-12 13:21:59 +02:00
version = "0.27.0"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "85127183a999f7db96d1a976a309eebbfb6ea3b0b400ddd8340190129de6eb7a"
2021-01-28 17:52:09 +01:00
dependencies = [
"bitflags",
"fallible-iterator",
"fallible-streaming-iterator",
"hashlink",
"libsqlite3-sys",
"memchr",
"smallvec",
]
[[package]]
2022-07-12 13:21:59 +02:00
name = "sha1"
version = "0.10.1"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "c77f4e7f65455545c2153c1253d25056825e77ee2533f0e41deb65a93a34852f"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
2021-01-28 17:52:09 +01:00
[[package]]
2022-07-12 13:21:59 +02:00
name = "sha2"
version = "0.10.2"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
2021-01-28 17:52:09 +01:00
dependencies = [
2022-07-12 13:21:59 +02:00
"cfg-if",
"cpufeatures",
"digest",
2021-01-28 17:52:09 +01:00
]
[[package]]
2022-07-12 13:21:59 +02:00
name = "smallvec"
version = "1.9.0"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
2021-01-28 17:52:09 +01:00
[[package]]
2022-07-12 13:21:59 +02:00
name = "subtle"
version = "2.4.1"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
2021-01-28 17:52:09 +01:00
[[package]]
name = "time"
2022-07-12 13:21:59 +02:00
version = "0.3.11"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "72c91f41dcb2f096c05f0873d667dceec1087ce5bcf984ec8ffb19acddbb3217"
2021-01-28 17:52:09 +01:00
dependencies = [
2022-07-12 13:21:59 +02:00
"itoa",
2021-01-28 17:52:09 +01:00
"libc",
2022-07-12 13:21:59 +02:00
"num_threads",
"time-macros",
2021-01-28 17:52:09 +01:00
]
[[package]]
2022-07-12 13:21:59 +02:00
name = "time-macros"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42657b1a6f4d817cda8e7a0ace261fe0cc946cf3a80314390b22cc61ae080792"
[[package]]
name = "typenum"
version = "1.15.0"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2021-01-28 17:52:09 +01:00
[[package]]
name = "vcpkg"
2022-07-12 13:21:59 +02:00
version = "0.2.15"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2021-01-28 17:52:09 +01:00
2021-05-26 13:29:43 +02:00
[[package]]
name = "version_check"
2022-07-12 13:21:59 +02:00
version = "0.9.4"
2021-05-26 13:29:43 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-05-26 13:29:43 +02:00
2021-01-28 17:52:09 +01:00
[[package]]
name = "wasi"
2022-07-12 13:21:59 +02:00
version = "0.11.0+wasi-snapshot-preview1"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-01-28 17:52:09 +01:00
[[package]]
2022-07-12 13:21:59 +02:00
name = "zip"
version = "0.6.2"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "bf225bcf73bb52cbb496e70475c7bd7a3f769df699c0020f6c7bd9a96dcf0b8d"
2021-01-28 17:52:09 +01:00
dependencies = [
2022-07-12 13:21:59 +02:00
"aes",
"byteorder",
"bzip2",
"constant_time_eq",
"crc32fast",
"crossbeam-utils",
"flate2",
"hmac",
"pbkdf2",
"sha1",
"time",
"zstd",
2021-01-28 17:52:09 +01:00
]
[[package]]
2022-07-12 13:21:59 +02:00
name = "zstd"
version = "0.10.2+zstd.1.5.2"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "5f4a6bd64f22b5e3e94b4e238669ff9f10815c27a5180108b849d24174a83847"
dependencies = [
"zstd-safe",
]
2021-01-28 17:52:09 +01:00
[[package]]
2022-07-12 13:21:59 +02:00
name = "zstd-safe"
version = "4.1.6+zstd.1.5.2"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "94b61c51bb270702d6167b8ce67340d2754b088d0c091b06e593aa772c3ee9bb"
dependencies = [
"libc",
"zstd-sys",
]
2021-01-28 17:52:09 +01:00
[[package]]
2022-07-12 13:21:59 +02:00
name = "zstd-sys"
version = "1.6.3+zstd.1.5.2"
2021-01-28 17:52:09 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-12 13:21:59 +02:00
checksum = "fc49afa5c8d634e75761feda8c592051e7eeb4683ba827211eb0d731d3402ea8"
2021-01-28 17:52:09 +01:00
dependencies = [
2022-07-12 13:21:59 +02:00
"cc",
"libc",
2021-01-28 17:52:09 +01:00
]