caesium-clt/Cargo.lock

1312 lines
33 KiB
Plaintext
Raw Normal View History

2022-12-20 13:38:05 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "ahash"
2024-05-18 13:57:15 +02:00
version = "0.8.11"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"cfg-if",
2022-12-20 13:38:05 +01:00
"once_cell",
"version_check",
2024-05-18 13:57:15 +02:00
"zerocopy",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "ansi_term"
2024-05-18 13:57:15 +02:00
version = "0.12.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
2022-12-20 13:38:05 +01:00
dependencies = [
"winapi",
]
2024-05-18 13:57:15 +02:00
[[package]]
name = "anstream"
version = "0.6.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"is_terminal_polyfill",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
[[package]]
name = "anstyle-parse"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5"
dependencies = [
"windows-sys",
]
[[package]]
name = "anstyle-wincon"
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
dependencies = [
"anstyle",
"windows-sys",
]
2022-12-20 13:38:05 +01:00
[[package]]
name = "arrayvec"
2024-05-18 13:57:15 +02:00
version = "0.7.4"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
2022-12-20 13:38:05 +01:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
2023-04-12 00:09:35 +02:00
"hermit-abi 0.1.19",
2022-12-20 13:38:05 +01:00
"libc",
"winapi",
]
[[package]]
name = "autocfg"
2024-05-18 13:57:15 +02:00
version = "1.3.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
2022-12-20 13:38:05 +01:00
[[package]]
name = "bitflags"
2024-05-18 13:57:15 +02:00
version = "1.3.2"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2022-12-20 13:38:05 +01:00
2023-04-12 00:09:35 +02:00
[[package]]
name = "bitvec"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
dependencies = [
"funty",
"radium",
"tap",
"wyz",
]
2022-12-20 13:38:05 +01:00
[[package]]
name = "bytemuck"
2024-05-18 13:57:15 +02:00
version = "1.16.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "78834c15cb5d5efe3452d58b1e8ba890dd62d21907f867f383358198e56ebca5"
2022-12-20 13:38:05 +01:00
[[package]]
name = "byteorder"
2024-05-18 13:57:15 +02:00
version = "1.5.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
[[package]]
name = "byteorder-lite"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
2022-12-20 13:38:05 +01:00
[[package]]
name = "bytes"
2024-05-18 13:57:15 +02:00
version = "1.6.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
2022-12-20 13:38:05 +01:00
[[package]]
name = "caesiumclt"
2024-08-10 18:12:19 +02:00
version = "0.21.0"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-07-20 11:51:27 +02:00
"filetime",
2022-12-20 13:38:05 +01:00
"human_bytes",
2024-08-10 18:12:19 +02:00
"imagesize",
2022-12-20 13:38:05 +01:00
"indicatif",
2023-04-12 00:09:35 +02:00
"infer",
2022-12-20 13:38:05 +01:00
"libcaesium",
"num_cpus",
"rand",
"rayon",
"structopt",
"walkdir",
]
[[package]]
name = "cc"
2024-05-18 13:57:15 +02:00
version = "1.0.97"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4"
2022-12-20 13:38:05 +01:00
dependencies = [
"jobserver",
2024-05-18 13:57:15 +02:00
"libc",
"once_cell",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "cfb"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
dependencies = [
"byteorder",
"fnv",
"uuid",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clap"
2024-05-18 13:57:15 +02:00
version = "2.34.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
2022-12-20 13:38:05 +01:00
dependencies = [
"ansi_term",
"atty",
"bitflags",
"strsim 0.8.0",
2024-05-18 13:57:15 +02:00
"textwrap",
2022-12-20 13:38:05 +01:00
"unicode-width",
"vec_map",
]
[[package]]
name = "clap"
2024-05-18 13:57:15 +02:00
version = "4.5.4"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"clap_builder",
]
[[package]]
name = "clap_builder"
version = "4.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
dependencies = [
"anstream",
"anstyle",
2022-12-20 13:38:05 +01:00
"clap_lex",
2024-05-18 13:57:15 +02:00
"strsim 0.11.1",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "clap_lex"
2024-05-18 13:57:15 +02:00
version = "0.7.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
[[package]]
name = "clap_mangen"
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1dd95b5ebb5c1c54581dd6346f3ed6a79a3eef95dd372fc2ac13d535535300e"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"clap 4.5.4",
"roff",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
2024-05-18 13:57:15 +02:00
[[package]]
name = "colorchoice"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
2022-12-20 13:38:05 +01:00
[[package]]
name = "console"
2024-05-18 13:57:15 +02:00
version = "0.15.8"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
2022-12-20 13:38:05 +01:00
dependencies = [
"encode_unicode",
2024-05-18 13:57:15 +02:00
"lazy_static",
2022-12-20 13:38:05 +01:00
"libc",
"unicode-width",
2024-05-18 13:57:15 +02:00
"windows-sys",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "crc32fast"
2024-05-18 13:57:15 +02:00
version = "1.4.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
2022-12-20 13:38:05 +01:00
dependencies = [
"cfg-if",
]
[[package]]
name = "crossbeam-channel"
2024-05-18 13:57:15 +02:00
version = "0.5.12"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "ab3db02a9c5b5121e1e42fbdb1aeb65f5e02624cc58c43f2884c6ccac0b82f95"
2022-12-20 13:38:05 +01:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
2024-05-18 13:57:15 +02:00
version = "0.8.5"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
2022-12-20 13:38:05 +01:00
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2024-05-18 13:57:15 +02:00
version = "0.9.18"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
2022-12-20 13:38:05 +01:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2024-05-18 13:57:15 +02:00
version = "0.8.19"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345"
2022-12-20 13:38:05 +01:00
[[package]]
name = "dunce"
2024-05-18 13:57:15 +02:00
version = "1.0.4"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b"
2022-12-20 13:38:05 +01:00
[[package]]
name = "either"
2024-05-18 13:57:15 +02:00
version = "1.12.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
2022-12-20 13:38:05 +01:00
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
2024-05-18 13:57:15 +02:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2022-12-20 13:38:05 +01:00
[[package]]
name = "fallible_collections"
2024-05-18 13:57:15 +02:00
version = "0.4.9"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "a88c69768c0a15262df21899142bc6df9b9b823546d4b4b9a7bc2d6c448ec6fd"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"hashbrown 0.13.2",
]
[[package]]
name = "fdeflate"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
dependencies = [
"simd-adler32",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "filetime"
2024-05-18 13:57:15 +02:00
version = "0.2.23"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd"
2022-12-20 13:38:05 +01:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"windows-sys",
]
[[package]]
name = "flate2"
2024-05-18 13:57:15 +02:00
version = "1.0.30"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
2022-12-20 13:38:05 +01:00
dependencies = [
"crc32fast",
2024-05-18 13:57:15 +02:00
"miniz_oxide 0.7.3",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2023-04-12 00:09:35 +02:00
[[package]]
name = "funty"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
2022-12-20 13:38:05 +01:00
[[package]]
name = "getrandom"
2024-05-18 13:57:15 +02:00
version = "0.2.15"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2022-12-20 13:38:05 +01:00
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "gif"
2024-05-18 13:57:15 +02:00
version = "0.13.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2"
2022-12-20 13:38:05 +01:00
dependencies = [
"color_quant",
"weezl",
]
[[package]]
name = "gifsicle"
2024-05-18 13:57:15 +02:00
version = "1.94.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "5fb239591bc88ef44483785c68add76a779b7aa574ecfde669affe73ec59216f"
2022-12-20 13:38:05 +01:00
dependencies = [
"cc",
"libc",
]
[[package]]
name = "glob"
2024-05-18 13:57:15 +02:00
version = "0.3.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
2022-12-20 13:38:05 +01:00
[[package]]
name = "hashbrown"
2024-05-18 13:57:15 +02:00
version = "0.13.2"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
2022-12-20 13:38:05 +01:00
dependencies = [
"ahash",
]
2024-05-18 13:57:15 +02:00
[[package]]
name = "hashbrown"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2022-12-20 13:38:05 +01:00
[[package]]
name = "heck"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
2023-04-12 00:09:35 +02:00
[[package]]
name = "hermit-abi"
2024-05-18 13:57:15 +02:00
version = "0.3.9"
2023-04-12 00:09:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2023-04-12 00:09:35 +02:00
2022-12-20 13:38:05 +01:00
[[package]]
name = "human_bytes"
2024-05-18 13:57:15 +02:00
version = "0.4.3"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "91f255a4535024abf7640cb288260811fc14794f62b063652ed349f9a6c2348e"
2022-12-20 13:38:05 +01:00
[[package]]
name = "image"
2024-05-18 13:57:15 +02:00
version = "0.25.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "fd54d660e773627692c524beaad361aca785a4f9f5730ce91f42aabe5bce3d11"
2022-12-20 13:38:05 +01:00
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"gif",
2024-05-18 13:57:15 +02:00
"image-webp",
2022-12-20 13:38:05 +01:00
"num-traits",
"png",
2024-05-18 13:57:15 +02:00
"tiff",
"zune-core",
"zune-jpeg",
]
[[package]]
name = "image-webp"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d730b085583c4d789dfd07fdcf185be59501666a90c97c40162b37e4fdad272d"
dependencies = [
"byteorder-lite",
"thiserror",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "imagequant"
2024-05-18 13:57:15 +02:00
version = "4.3.1"
2023-04-12 00:09:35 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "09db32417831053bf246bc74fc7c139a05458552d2d98a9f58ff5744d8dea8d3"
2022-12-20 13:38:05 +01:00
dependencies = [
"arrayvec",
"once_cell",
"rayon",
"rgb",
"thread_local",
]
2024-08-10 18:12:19 +02:00
[[package]]
name = "imagesize"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edcd27d72f2f071c64249075f42e205ff93c9a4c5f6c6da53e79ed9f9832c285"
2022-12-20 13:38:05 +01:00
[[package]]
name = "img-parts"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b19358258d99a5fc34466fed27a5318f92ae636c3e36165cf9b1e87b5b6701f0"
dependencies = [
"bytes",
"crc32fast",
2024-05-18 13:57:15 +02:00
"miniz_oxide 0.5.4",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "indexmap"
2024-05-18 13:57:15 +02:00
version = "2.2.6"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"equivalent",
"hashbrown 0.14.5",
2022-12-20 13:38:05 +01:00
"rayon",
]
[[package]]
name = "indicatif"
2024-05-18 13:57:15 +02:00
version = "0.17.8"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3"
2022-12-20 13:38:05 +01:00
dependencies = [
"console",
2024-05-18 13:57:15 +02:00
"instant",
2022-12-20 13:38:05 +01:00
"number_prefix",
2024-05-18 13:57:15 +02:00
"portable-atomic",
2022-12-20 13:38:05 +01:00
"unicode-width",
]
[[package]]
name = "infer"
2024-07-20 11:51:27 +02:00
version = "0.16.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-20 11:51:27 +02:00
checksum = "bc150e5ce2330295b8616ce0e3f53250e53af31759a9dbedad1621ba29151847"
2022-12-20 13:38:05 +01:00
dependencies = [
"cfb",
]
[[package]]
2024-05-18 13:57:15 +02:00
name = "instant"
version = "0.1.13"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
dependencies = [
"cfg-if",
]
2022-12-20 13:38:05 +01:00
[[package]]
2024-05-18 13:57:15 +02:00
name = "is_terminal_polyfill"
version = "1.70.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
2022-12-20 13:38:05 +01:00
[[package]]
name = "jobserver"
2024-05-18 13:57:15 +02:00
version = "0.1.31"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
2022-12-20 13:38:05 +01:00
dependencies = [
"libc",
]
[[package]]
name = "jpeg-decoder"
2024-05-18 13:57:15 +02:00
version = "0.3.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
2022-12-20 13:38:05 +01:00
2024-07-20 17:30:47 +02:00
[[package]]
name = "kamadak-exif"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef4fc70d0ab7e5b6bafa30216a6b48705ea964cdfc29c050f2412295eba58077"
dependencies = [
"mutate_once",
]
2022-12-20 13:38:05 +01:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2024-05-18 13:57:15 +02:00
version = "0.2.155"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
2022-12-20 13:38:05 +01:00
[[package]]
name = "libcaesium"
2024-08-10 18:12:19 +02:00
version = "0.16.4"
source = "git+https://github.com/Lymphatus/libcaesium?rev=0.16.4#f9aab1ef784c9b781ad39a7114ebacb2e3ab4471"
2022-12-20 13:38:05 +01:00
dependencies = [
"bytes",
"gifsicle",
"image",
"imagequant",
"img-parts",
2023-04-12 00:09:35 +02:00
"infer",
2024-07-20 17:30:47 +02:00
"kamadak-exif",
2022-12-20 13:38:05 +01:00
"libc",
"lodepng",
"mozjpeg-sys",
"oxipng",
2024-05-18 13:57:15 +02:00
"tiff",
2022-12-20 13:38:05 +01:00
"webp",
]
[[package]]
name = "libdeflate-sys"
2024-05-18 13:57:15 +02:00
version = "1.20.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "669ea17f9257bcb48c09c7ee4bef3957777504acffac557263e20c11001977bc"
2022-12-20 13:38:05 +01:00
dependencies = [
"cc",
]
[[package]]
name = "libdeflater"
2024-05-18 13:57:15 +02:00
version = "1.20.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "8dfd6424f7010ee0a3416f1d796d0450e3ad3ac237a237644f728277c4ded016"
2022-12-20 13:38:05 +01:00
dependencies = [
"libdeflate-sys",
]
[[package]]
name = "libwebp-sys"
2024-05-18 13:57:15 +02:00
version = "0.9.5"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "829b6b604f31ed6d2bccbac841fe0788de93dbd87e4eb1ba2c4adfe8c012a838"
2022-12-20 13:38:05 +01:00
dependencies = [
"cc",
"glob",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "lodepng"
2024-05-18 13:57:15 +02:00
version = "3.10.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "a42d298694b14401847de29abd44adf278b42e989e516deac7b72018400002d8"
2022-12-20 13:38:05 +01:00
dependencies = [
"crc32fast",
"fallible_collections",
"flate2",
"libc",
"rgb",
]
[[package]]
name = "log"
2024-05-18 13:57:15 +02:00
version = "0.4.21"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
2022-12-20 13:38:05 +01:00
[[package]]
2024-05-18 13:57:15 +02:00
name = "miniz_oxide"
version = "0.5.4"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"adler",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "miniz_oxide"
2024-05-18 13:57:15 +02:00
version = "0.7.3"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae"
2022-12-20 13:38:05 +01:00
dependencies = [
"adler",
2024-05-18 13:57:15 +02:00
"simd-adler32",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "mozjpeg-sys"
2024-07-20 11:51:27 +02:00
version = "2.2.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-20 11:51:27 +02:00
checksum = "9cf2a48f2f79f47fcce75d125d112e113a93f4a6f3cd8cc5b4cd6e16589d050f"
2022-12-20 13:38:05 +01:00
dependencies = [
"cc",
"dunce",
"libc",
"nasm-rs",
]
2024-07-20 17:30:47 +02:00
[[package]]
name = "mutate_once"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b"
2022-12-20 13:38:05 +01:00
[[package]]
name = "nasm-rs"
2024-05-18 13:57:15 +02:00
version = "0.2.5"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "fe4d98d0065f4b1daf164b3eafb11974c94662e5e2396cf03f32d0bb5c17da51"
2022-12-20 13:38:05 +01:00
dependencies = [
"rayon",
]
[[package]]
name = "num-traits"
2024-05-18 13:57:15 +02:00
version = "0.2.19"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2022-12-20 13:38:05 +01:00
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2024-05-18 13:57:15 +02:00
version = "1.16.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"hermit-abi 0.3.9",
2022-12-20 13:38:05 +01:00
"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"
2024-05-18 13:57:15 +02:00
version = "1.19.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2022-12-20 13:38:05 +01:00
[[package]]
name = "oxipng"
2024-05-18 13:57:15 +02:00
version = "9.1.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "3f398c53eb34e0cf71d9e0bc676cfa7c611e3844dd14ab05e92fb7b423c98ecf"
2022-12-20 13:38:05 +01:00
dependencies = [
2023-04-12 00:09:35 +02:00
"bitvec",
2024-05-18 13:57:15 +02:00
"clap 4.5.4",
"clap_mangen",
2022-12-20 13:38:05 +01:00
"crossbeam-channel",
"filetime",
"indexmap",
"libdeflater",
"log",
"rayon",
"rgb",
2023-04-12 00:09:35 +02:00
"rustc-hash",
2022-12-20 13:38:05 +01:00
"rustc_version",
"zopfli",
]
[[package]]
name = "png"
2024-05-18 13:57:15 +02:00
version = "0.17.13"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
2022-12-20 13:38:05 +01:00
dependencies = [
"bitflags",
"crc32fast",
2024-05-18 13:57:15 +02:00
"fdeflate",
"flate2",
"miniz_oxide 0.7.3",
2022-12-20 13:38:05 +01:00
]
2024-05-18 13:57:15 +02:00
[[package]]
name = "portable-atomic"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
2022-12-20 13:38:05 +01:00
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[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",
2024-05-18 13:57:15 +02:00
"syn 1.0.109",
2022-12-20 13:38:05 +01:00
"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"
2024-05-18 13:57:15 +02:00
version = "1.0.82"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"unicode-ident",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "quote"
2024-05-18 13:57:15 +02:00
version = "1.0.36"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2022-12-20 13:38:05 +01:00
dependencies = [
"proc-macro2",
]
2023-04-12 00:09:35 +02:00
[[package]]
name = "radium"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2022-12-20 13:38:05 +01: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"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
[[package]]
name = "rayon"
2024-05-18 13:57:15 +02:00
version = "1.10.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2022-12-20 13:38:05 +01:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2024-05-18 13:57:15 +02:00
version = "1.12.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2022-12-20 13:38:05 +01:00
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
]
[[package]]
name = "redox_syscall"
2024-05-18 13:57:15 +02:00
version = "0.4.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
2022-12-20 13:38:05 +01:00
dependencies = [
"bitflags",
]
[[package]]
name = "rgb"
2024-05-18 13:57:15 +02:00
version = "0.8.37"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8"
2022-12-20 13:38:05 +01:00
dependencies = [
"bytemuck",
]
2024-05-18 13:57:15 +02:00
[[package]]
name = "roff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316"
2023-04-12 00:09:35 +02:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2022-12-20 13:38:05 +01:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
[[package]]
name = "semver"
2024-05-18 13:57:15 +02:00
version = "1.0.23"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
2022-12-20 13:38:05 +01:00
[[package]]
2024-05-18 13:57:15 +02:00
name = "simd-adler32"
version = "0.3.7"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2022-12-20 13:38:05 +01:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "strsim"
2024-05-18 13:57:15 +02:00
version = "0.11.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2022-12-20 13:38:05 +01:00
[[package]]
name = "structopt"
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
dependencies = [
2024-05-18 13:57:15 +02:00
"clap 2.34.0",
2022-12-20 13:38:05 +01:00
"lazy_static",
"structopt-derive",
]
[[package]]
name = "structopt-derive"
version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
2024-05-18 13:57:15 +02:00
"syn 1.0.109",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "syn"
2024-05-18 13:57:15 +02:00
version = "1.0.109"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2022-12-20 13:38:05 +01:00
dependencies = [
"proc-macro2",
"quote",
2024-05-18 13:57:15 +02:00
"unicode-ident",
]
[[package]]
name = "syn"
version = "2.0.64"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ad3dee41f36859875573074334c200d1add8e4a87bb37113ebd31d926b7b11f"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
2022-12-20 13:38:05 +01:00
]
2023-04-12 00:09:35 +02:00
[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2022-12-20 13:38:05 +01:00
[[package]]
2024-05-18 13:57:15 +02:00
name = "textwrap"
version = "0.11.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"unicode-width",
2022-12-20 13:38:05 +01:00
]
[[package]]
2024-05-18 13:57:15 +02:00
name = "thiserror"
version = "1.0.61"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"thiserror-impl",
2022-12-20 13:38:05 +01:00
]
[[package]]
2024-05-18 13:57:15 +02:00
name = "thiserror-impl"
version = "1.0.61"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"proc-macro2",
"quote",
"syn 2.0.64",
2022-12-20 13:38:05 +01:00
]
[[package]]
2024-05-18 13:57:15 +02:00
name = "thread_local"
version = "1.1.8"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
dependencies = [
"cfg-if",
"once_cell",
]
2022-12-20 13:38:05 +01:00
[[package]]
2024-05-18 13:57:15 +02:00
name = "tiff"
version = "0.9.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"flate2",
"jpeg-decoder",
"weezl",
2022-12-20 13:38:05 +01:00
]
[[package]]
name = "typed-arena"
2024-05-18 13:57:15 +02:00
version = "2.0.2"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
[[package]]
name = "unicode-ident"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2022-12-20 13:38:05 +01:00
[[package]]
name = "unicode-segmentation"
2024-05-18 13:57:15 +02:00
version = "1.11.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
2022-12-20 13:38:05 +01:00
[[package]]
name = "unicode-width"
2024-05-18 13:57:15 +02:00
version = "0.1.12"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
2022-12-20 13:38:05 +01:00
[[package]]
2024-05-18 13:57:15 +02:00
name = "utf8parse"
version = "0.2.1"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2022-12-20 13:38:05 +01:00
[[package]]
name = "uuid"
2024-05-18 13:57:15 +02:00
version = "1.8.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
2022-12-20 13:38:05 +01:00
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
[[package]]
name = "version_check"
2024-05-18 13:57:15 +02:00
version = "0.9.4"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2022-12-20 13:38:05 +01:00
[[package]]
name = "walkdir"
2024-05-18 13:57:15 +02:00
version = "2.5.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2022-12-20 13:38:05 +01:00
dependencies = [
"same-file",
"winapi-util",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "webp"
2024-05-18 13:57:15 +02:00
version = "0.3.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "8f53152f51fb5af0c08484c33d16cca96175881d1f3dec068c23b31a158c2d99"
2022-12-20 13:38:05 +01:00
dependencies = [
"image",
"libwebp-sys",
]
[[package]]
name = "weezl"
2024-05-18 13:57:15 +02:00
version = "0.1.8"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
2022-12-20 13:38:05 +01: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-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
2024-05-18 13:57:15 +02:00
version = "0.1.8"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"windows-sys",
2022-12-20 13:38:05 +01: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"
[[package]]
name = "windows-sys"
2024-05-18 13:57:15 +02:00
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets",
]
[[package]]
name = "windows-targets"
version = "0.52.5"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"windows_aarch64_gnullvm",
2022-12-20 13:38:05 +01:00
"windows_aarch64_msvc",
"windows_i686_gnu",
2024-05-18 13:57:15 +02:00
"windows_i686_gnullvm",
2022-12-20 13:38:05 +01:00
"windows_i686_msvc",
"windows_x86_64_gnu",
2024-05-18 13:57:15 +02:00
"windows_x86_64_gnullvm",
2022-12-20 13:38:05 +01:00
"windows_x86_64_msvc",
]
2024-05-18 13:57:15 +02:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
2022-12-20 13:38:05 +01:00
[[package]]
name = "windows_aarch64_msvc"
2024-05-18 13:57:15 +02:00
version = "0.52.5"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
2022-12-20 13:38:05 +01:00
[[package]]
name = "windows_i686_gnu"
2024-05-18 13:57:15 +02:00
version = "0.52.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.5"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
2022-12-20 13:38:05 +01:00
[[package]]
name = "windows_i686_msvc"
2024-05-18 13:57:15 +02:00
version = "0.52.5"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
2022-12-20 13:38:05 +01:00
[[package]]
name = "windows_x86_64_gnu"
2024-05-18 13:57:15 +02:00
version = "0.52.5"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
2022-12-20 13:38:05 +01:00
[[package]]
name = "windows_x86_64_msvc"
2024-05-18 13:57:15 +02:00
version = "0.52.5"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
2022-12-20 13:38:05 +01:00
2023-04-12 00:09:35 +02:00
[[package]]
name = "wyz"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
dependencies = [
"tap",
]
2024-05-18 13:57:15 +02:00
[[package]]
name = "zerocopy"
version = "0.7.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.64",
]
2022-12-20 13:38:05 +01:00
[[package]]
name = "zopfli"
2024-05-18 13:57:15 +02:00
version = "0.8.0"
2022-12-20 13:38:05 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 13:57:15 +02:00
checksum = "5c1f48f3508a3a3f2faee01629564400bc12260f6214a056d06a3aaaa6ef0736"
2022-12-20 13:38:05 +01:00
dependencies = [
2024-05-18 13:57:15 +02:00
"crc32fast",
2022-12-20 13:38:05 +01:00
"log",
2024-05-18 13:57:15 +02:00
"simd-adler32",
2022-12-20 13:38:05 +01:00
"typed-arena",
]
2024-05-18 13:57:15 +02:00
[[package]]
name = "zune-core"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
[[package]]
name = "zune-jpeg"
version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec866b44a2a1fd6133d363f073ca1b179f438f99e7e5bfb1e33f7181facfe448"
dependencies = [
"zune-core",
]