restic-integrity/Cargo.lock

482 lines
12 KiB
Text
Raw Normal View History

2022-04-10 19:49:40 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
]
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
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",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
2022-08-15 13:08:38 +02:00
version = "3.2.17"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "29e724a68d9319343bb3328c9cc2dfde263f4b3142ee1059a9980580171c954b"
2022-04-10 19:49:40 +02:00
dependencies = [
"atty",
"bitflags",
"clap_derive",
2022-08-15 13:08:38 +02:00
"clap_lex",
2022-04-10 19:49:40 +02:00
"indexmap",
2022-08-15 13:08:38 +02:00
"once_cell",
2022-04-10 19:49:40 +02:00
"strsim",
"termcolor",
"textwrap",
]
[[package]]
name = "clap_derive"
2022-08-15 13:08:38 +02:00
version = "3.2.17"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "13547f7012c01ab4a0e8f8967730ada8f9fdf419e8b6c792788f39cf4e46eefa"
2022-04-10 19:49:40 +02:00
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
2022-08-15 13:08:38 +02:00
[[package]]
name = "clap_lex"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
dependencies = [
"os_str_bytes",
]
2022-04-10 19:49:40 +02:00
[[package]]
name = "console"
2022-08-15 13:08:38 +02:00
version = "0.15.1"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "89eab4d20ce20cea182308bca13088fecea9c05f6776cf287205d41a0ed3c847"
2022-04-10 19:49:40 +02:00
dependencies = [
"encode_unicode",
"libc",
"once_cell",
"terminal_size",
"winapi",
]
[[package]]
name = "cpufeatures"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
dependencies = [
"libc",
]
[[package]]
name = "crossbeam-channel"
2022-08-15 13:08:38 +02:00
version = "0.5.6"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
2022-04-10 19:49:40 +02:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
2022-08-15 13:08:38 +02:00
version = "0.8.2"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
2022-04-10 19:49:40 +02:00
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2022-08-15 13:08:38 +02:00
version = "0.9.10"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1"
2022-04-10 19:49:40 +02:00
dependencies = [
"autocfg",
"cfg-if",
"crossbeam-utils",
"memoffset",
2022-08-15 13:08:38 +02:00
"once_cell",
2022-04-10 19:49:40 +02:00
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2022-08-15 13:08:38 +02:00
version = "0.8.11"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
2022-04-10 19:49:40 +02:00
dependencies = [
"cfg-if",
2022-08-15 13:08:38 +02:00
"once_cell",
2022-04-10 19:49:40 +02:00
]
[[package]]
name = "crypto-common"
2022-08-15 13:08:38 +02:00
version = "0.1.6"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2022-04-10 19:49:40 +02:00
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",
]
[[package]]
name = "either"
2022-08-15 13:08:38 +02:00
version = "1.7.0"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be"
2022-04-10 19:49:40 +02:00
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]]
name = "generic-array"
2022-08-15 13:08:38 +02:00
version = "0.14.6"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
2022-04-10 19:49:40 +02:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "hashbrown"
2022-08-15 13:08:38 +02:00
version = "0.12.3"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2022-04-10 19:49:40 +02:00
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "indexmap"
2022-08-15 13:08:38 +02:00
version = "1.9.1"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
2022-04-10 19:49:40 +02:00
dependencies = [
"autocfg",
"hashbrown",
]
[[package]]
name = "indicatif"
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
dependencies = [
"console",
"lazy_static",
"number_prefix",
"rayon",
"regex",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-08-15 13:08:38 +02:00
version = "0.2.131"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "04c3b4822ccebfa39c02fc03d1534441b22ead323fa0f48bb7ddd8e6ba076a40"
2022-04-10 19:49:40 +02:00
[[package]]
name = "memoffset"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "number_prefix"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
[[package]]
name = "once_cell"
2022-08-15 13:08:38 +02:00
version = "1.13.0"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
2022-04-10 19:49:40 +02:00
[[package]]
name = "os_str_bytes"
2022-08-15 13:08:38 +02:00
version = "6.3.0"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff"
2022-04-10 19:49:40 +02:00
[[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",
"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",
]
[[package]]
name = "proc-macro2"
2022-08-15 13:08:38 +02:00
version = "1.0.43"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
2022-04-10 19:49:40 +02:00
dependencies = [
2022-08-15 13:08:38 +02:00
"unicode-ident",
2022-04-10 19:49:40 +02:00
]
[[package]]
name = "quote"
2022-08-15 13:08:38 +02:00
version = "1.0.21"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
2022-04-10 19:49:40 +02:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rayon"
2022-08-15 13:08:38 +02:00
version = "1.5.3"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
2022-04-10 19:49:40 +02:00
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2022-08-15 13:08:38 +02:00
version = "1.9.3"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
2022-04-10 19:49:40 +02:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
[[package]]
name = "regex"
2022-08-15 13:08:38 +02:00
version = "1.6.0"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
2022-04-10 19:49:40 +02:00
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2022-08-15 13:08:38 +02:00
version = "0.6.27"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2022-04-10 19:49:40 +02:00
[[package]]
name = "restic-integrity"
2022-08-15 13:09:02 +02:00
version = "1.2.1"
2022-04-10 19:49:40 +02:00
dependencies = [
"clap",
"indicatif",
"rayon",
"sha2",
]
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "sha2"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "syn"
2022-08-15 13:08:38 +02:00
version = "1.0.99"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
2022-04-10 19:49:40 +02:00
dependencies = [
"proc-macro2",
"quote",
2022-08-15 13:08:38 +02:00
"unicode-ident",
2022-04-10 19:49:40 +02: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.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
dependencies = [
"libc",
"winapi",
]
[[package]]
name = "textwrap"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
[[package]]
name = "typenum"
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
[[package]]
2022-08-15 13:08:38 +02:00
name = "unicode-ident"
version = "1.0.3"
2022-04-10 19:49:40 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-08-15 13:08:38 +02:00
checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
2022-04-10 19:49:40 +02:00
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[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-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.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"