upend/Cargo.lock

3932 lines
95 KiB
Text
Raw Normal View History

2020-08-27 00:11:50 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2020-08-27 00:11:50 +02:00
[[package]]
name = "actix"
version = "0.13.5"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de7fa236829ba0841304542f7614c42b80fca007455315c45c785ccfa873a85b"
dependencies = [
"actix-macros",
"actix-rt",
2021-02-18 20:48:31 +01:00
"actix_derive",
"bitflags 2.6.0",
"bytes",
"crossbeam-channel",
"futures-core",
"futures-sink",
"futures-task",
2021-02-18 20:48:31 +01:00
"futures-util",
"log",
2021-02-18 20:48:31 +01:00
"once_cell",
"parking_lot",
"pin-project-lite",
"smallvec",
"tokio",
"tokio-util",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "actix-codec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
dependencies = [
"bitflags 2.6.0",
"bytes",
"futures-core",
"futures-sink",
"memchr",
"pin-project-lite",
"tokio",
"tokio-util",
"tracing",
2020-08-27 00:11:50 +02:00
]
2022-09-08 21:41:18 +02:00
[[package]]
name = "actix-cors"
version = "0.6.5"
2022-09-08 21:41:18 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0346d8c1f762b41b458ed3145eea914966bb9ad20b9be0d6d463b20d45586370"
2022-09-08 21:41:18 +02:00
dependencies = [
"actix-utils",
2022-09-08 21:41:18 +02:00
"actix-web",
"derive_more",
"futures-util",
"log",
"once_cell",
"smallvec",
2022-09-08 21:41:18 +02:00
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "actix-files"
version = "0.6.6"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0773d59061dedb49a8aed04c67291b9d8cf2fe0b60130a381aab53c6dd86e9be"
2020-08-27 00:11:50 +02:00
dependencies = [
"actix-http",
"actix-service",
"actix-utils",
"actix-web",
"bitflags 2.6.0",
"bytes",
"derive_more",
"futures-core",
"http-range",
"log",
"mime",
"mime_guess",
"percent-encoding",
"pin-project-lite",
"v_htmlescape",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "actix-http"
version = "3.8.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ae682f693a9cd7b058f2b0b5d9a6d7728a8555779bedbbc35dd88528611d020"
dependencies = [
2021-02-18 20:48:31 +01:00
"actix-codec",
"actix-rt",
"actix-service",
2021-02-18 20:48:31 +01:00
"actix-utils",
"ahash 0.8.11",
"base64 0.22.1",
"bitflags 2.6.0",
"brotli",
"bytes",
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
"h2",
"http",
"httparse",
"httpdate",
"itoa",
"language-tags",
"local-channel",
"mime",
"percent-encoding",
"pin-project-lite",
2023-08-28 18:26:11 +02:00
"rand",
"sha1",
"smallvec",
"tokio",
"tokio-util",
"tracing",
"zstd",
2021-02-18 20:48:31 +01:00
]
[[package]]
name = "actix-macros"
2023-08-28 18:26:11 +02:00
version = "0.2.4"
2021-02-18 20:48:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
2021-02-18 20:48:31 +01:00
dependencies = [
"quote",
"syn 2.0.72",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "actix-multipart"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d974dd6c4f78d102d057c672dcf6faa618fafa9df91d44f9c466688fc1275a3a"
dependencies = [
"actix-multipart-derive",
"actix-utils",
"actix-web",
"bytes",
"derive_more",
"futures-core",
"futures-util",
"httparse",
"local-waker",
"log",
"memchr",
"mime",
"rand",
"serde",
"serde_json",
"serde_plain",
"tempfile",
"tokio",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "actix-multipart-derive"
version = "0.6.1"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a0a77f836d869f700e5b47ac7c3c8b9c8bc82e4aec861954c6198abee3ebd4d"
2020-08-27 00:11:50 +02:00
dependencies = [
"darling",
"parse-size",
"proc-macro2",
"quote",
"syn 2.0.72",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "actix-router"
version = "0.5.3"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
2020-08-27 00:11:50 +02:00
dependencies = [
"bytestring",
"cfg-if 1.0.0",
"http",
"regex",
"regex-lite",
"serde",
"tracing",
2021-02-18 20:48:31 +01:00
]
[[package]]
name = "actix-rt"
version = "2.10.0"
2021-02-18 20:48:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
2021-02-18 20:48:31 +01:00
dependencies = [
"actix-macros",
2021-02-18 20:48:31 +01:00
"futures-core",
"tokio",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "actix-server"
version = "2.4.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b02303ce8d4e8be5b855af6cf3c3a08f3eff26880faad82bab679c22d3650cb5"
2020-08-27 00:11:50 +02:00
dependencies = [
"actix-rt",
"actix-service",
2021-02-18 20:48:31 +01:00
"actix-utils",
"futures-core",
"futures-util",
"mio 0.8.11",
"socket2",
"tokio",
"tracing",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "actix-service"
version = "2.0.2"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
2020-08-27 00:11:50 +02:00
dependencies = [
"futures-core",
"paste",
"pin-project-lite",
]
[[package]]
name = "actix-utils"
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
dependencies = [
"local-waker",
"pin-project-lite",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "actix-web"
version = "4.8.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1988c02af8d2b718c05bc4aeb6a66395b7cdf32858c2c71131e5637a8c05a9ff"
dependencies = [
2021-02-18 20:48:31 +01:00
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
2021-02-18 20:48:31 +01:00
"actix-utils",
"actix-web-codegen",
"ahash 0.8.11",
"bytes",
"bytestring",
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
"cookie",
"derive_more",
"encoding_rs",
2021-02-18 20:48:31 +01:00
"futures-core",
"futures-util",
"itoa",
"language-tags",
"log",
"mime",
"once_cell",
"pin-project-lite",
"regex",
"regex-lite",
"serde",
"serde_json",
"serde_urlencoded",
"smallvec",
"socket2",
"time",
"url",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "actix-web-codegen"
version = "4.3.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
2020-08-27 00:11:50 +02:00
dependencies = [
"actix-router",
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
"syn 2.0.72",
2020-08-27 00:11:50 +02:00
]
2024-01-26 22:41:43 +01:00
[[package]]
name = "actix-web-lab"
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7675c1a84eec1b179c844cdea8488e3e409d8e4984026e92fa96c87dd86f33c6"
dependencies = [
"actix-files",
"actix-http",
"actix-router",
"actix-service",
"actix-utils",
"actix-web",
"actix-web-lab-derive",
"ahash 0.8.11",
2024-01-26 22:41:43 +01:00
"arc-swap",
"async-trait",
"bytes",
"bytestring",
"csv",
"derive_more",
"futures-core",
"futures-util",
"http",
"impl-more",
"itertools",
"local-channel",
"mediatype",
"mime",
"once_cell",
"pin-project-lite",
"regex",
"serde",
"serde_html_form",
"serde_json",
"tokio",
"tokio-stream",
"tracing",
]
[[package]]
name = "actix-web-lab-derive"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aa0b287c8de4a76b691f29dbb5451e8dd5b79d777eaf87350c9b0cbfdb5e968"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.72",
2024-01-26 22:41:43 +01:00
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "actix_derive"
version = "0.6.1"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c7db3d5a9718568e4cf4a537cfd7070e6e6ff7481510d0237fb529ac850f6d3"
2020-08-27 00:11:50 +02:00
dependencies = [
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
"syn 2.0.72",
2020-08-27 00:11:50 +02:00
]
2023-08-28 18:26:11 +02:00
[[package]]
name = "addr2line"
version = "0.22.0"
2023-08-28 18:26:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
2023-08-28 18:26:11 +02:00
dependencies = [
"gimli",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "adler"
2021-06-20 14:40:04 +02:00
version = "1.0.2"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 14:40:04 +02:00
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2020-08-27 00:11:50 +02:00
2022-01-24 17:04:27 +01:00
[[package]]
name = "adler32"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
2021-12-04 18:33:40 +01:00
[[package]]
name = "ahash"
version = "0.7.8"
2021-12-04 18:33:40 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
2021-12-04 18:33:40 +01:00
dependencies = [
2023-08-28 18:26:11 +02:00
"getrandom",
2021-12-04 18:33:40 +01:00
"once_cell",
"version_check",
]
[[package]]
name = "ahash"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
dependencies = [
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
2023-08-28 18:26:11 +02:00
"getrandom",
"once_cell",
"version_check",
"zerocopy",
2021-12-04 18:33:40 +01:00
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "aho-corasick"
version = "1.1.3"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
2020-08-27 00:11:50 +02:00
dependencies = [
"memchr",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "alloc-no-stdlib"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
[[package]]
name = "alloc-stdlib"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
dependencies = [
"alloc-no-stdlib",
]
2023-08-28 18:26:11 +02:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
[[package]]
name = "anstream"
version = "0.6.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
"is_terminal_polyfill",
"utf8parse",
]
[[package]]
name = "anstyle"
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
[[package]]
name = "anstyle-parse"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "anstyle-wincon"
version = "3.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
dependencies = [
"anstyle",
"windows-sys 0.52.0",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "anyhow"
version = "1.0.86"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
2020-08-27 00:11:50 +02:00
2024-01-26 22:41:43 +01:00
[[package]]
name = "arc-swap"
version = "1.7.1"
2024-01-26 22:41:43 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
2024-01-26 22:41:43 +01:00
2024-03-27 19:23:35 +01:00
[[package]]
name = "argon2"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
dependencies = [
"base64ct",
"blake2",
"cpufeatures",
"password-hash",
]
[[package]]
name = "arrayref"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d151e35f61089500b617991b791fc8bfd237ae50cd5950803758a179b41e67a"
[[package]]
name = "arrayvec"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
2024-01-26 22:41:43 +01:00
[[package]]
name = "async-trait"
version = "0.1.81"
2024-01-26 22:41:43 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
2024-01-26 22:41:43 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.72",
2024-01-26 22:41:43 +01:00
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "autocfg"
version = "1.3.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
2020-08-27 00:11:50 +02:00
2023-08-28 18:26:11 +02:00
[[package]]
name = "backtrace"
version = "0.3.73"
2023-08-28 18:26:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
2023-08-28 18:26:11 +02:00
dependencies = [
"addr2line",
"cc",
"cfg-if 1.0.0",
"libc",
"miniz_oxide 0.7.4",
2023-08-28 18:26:11 +02:00
"object",
"rustc-demangle",
]
2021-02-18 20:48:31 +01:00
[[package]]
name = "base-x"
version = "0.2.11"
2021-02-18 20:48:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
2021-02-18 20:48:31 +01:00
2020-08-27 00:11:50 +02:00
[[package]]
name = "base64"
version = "0.13.1"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
2020-08-27 00:11:50 +02:00
[[package]]
name = "base64"
version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
2024-03-27 19:23:35 +01:00
[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
2020-08-27 00:11:50 +02:00
[[package]]
name = "bitflags"
2021-12-03 17:29:54 +01:00
version = "1.3.2"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-03 17:29:54 +01:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2020-08-27 00:11:50 +02:00
[[package]]
name = "bitflags"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
2024-03-27 19:23:35 +01:00
[[package]]
name = "blake2"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
dependencies = [
"digest",
]
[[package]]
name = "blake2b_simd"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23285ad32269793932e830392f2fe2f83e26488fd3ec778883a93c8323735780"
dependencies = [
"arrayref",
"arrayvec",
"constant_time_eq",
]
[[package]]
name = "blake2s_simd"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94230421e395b9920d23df13ea5d77a20e1725331f90fbbf6df6040b33f756ae"
dependencies = [
"arrayref",
"arrayvec",
"constant_time_eq",
]
[[package]]
name = "blake3"
version = "1.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9ec96fe9a81b5e365f9db71fe00edc4fe4ca2cc7dcb7861f0603012a7caa210"
dependencies = [
"arrayref",
"arrayvec",
"cc",
"cfg-if 1.0.0",
"constant_time_eq",
]
[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "brotli"
version = "6.0.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
2020-08-27 00:11:50 +02:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "brotli-decompressor"
version = "4.0.1"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
2020-08-27 00:11:50 +02:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
2020-08-27 00:11:50 +02:00
]
2021-12-19 22:38:41 +01:00
[[package]]
name = "bstr"
version = "1.10.0"
2021-12-19 22:38:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
2021-12-19 22:38:41 +01:00
dependencies = [
"memchr",
"regex-automata 0.4.7",
"serde",
2021-12-19 22:38:41 +01:00
]
2020-08-30 16:45:42 +02:00
[[package]]
name = "bumpalo"
version = "3.16.0"
2020-08-30 16:45:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
2022-01-24 17:04:27 +01:00
[[package]]
name = "bytemuck"
version = "1.16.1"
2022-01-24 17:04:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e"
2022-01-24 17:04:27 +01:00
2020-08-27 00:11:50 +02:00
[[package]]
name = "byteorder"
version = "1.5.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2020-08-27 00:11:50 +02:00
[[package]]
name = "bytes"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952"
2020-08-27 00:11:50 +02:00
[[package]]
name = "bytestring"
version = "1.3.1"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74d80203ea6b29df88012294f62733de21cfeab47f17b41af3a38bc30a03ee72"
2020-08-27 00:11:50 +02:00
dependencies = [
"bytes",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "cc"
version = "1.1.6"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2aba8f4e9906c7ce3c73463f62a7f0c65183ada1a2d47e397cc8810827f9694f"
2022-01-24 17:04:27 +01:00
dependencies = [
"jobserver",
2023-08-28 18:26:11 +02:00
"libc",
2022-01-24 17:04:27 +01:00
]
2020-08-27 00:11:50 +02:00
2023-06-28 14:25:11 +02:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2020-08-27 00:11:50 +02:00
[[package]]
name = "chrono"
version = "0.4.38"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
2020-08-27 00:11:50 +02:00
dependencies = [
2023-08-28 18:26:11 +02:00
"android-tzdata",
"iana-time-zone",
"js-sys",
"num-traits",
"serde",
"wasm-bindgen",
"windows-targets 0.52.6",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "cid"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd94671561e36e4e7de75f753f577edafb0e7c05d6e4547229fdf7938fbcd2c3"
dependencies = [
"core2",
"multibase",
"multihash",
"serde",
"unsigned-varint",
]
[[package]]
name = "clap"
version = "4.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "35723e6a11662c2afb578bcf0b88bf6ea8e21282a953428f240574fcc3a2b5b3"
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
version = "4.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49eb96cbfa7cfa35017b7cd548c75b14c3118c98b423041d70562665e07fb0fa"
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim",
]
[[package]]
name = "clap_derive"
version = "4.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d029b67f89d30bbb547c89fd5161293c0aec155fc691d7924b64550662db93e"
dependencies = [
"heck",
"proc-macro2",
"quote",
"syn 2.0.72",
]
[[package]]
name = "clap_lex"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
2022-01-24 17:04:27 +01:00
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
[[package]]
name = "colorchoice"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
[[package]]
name = "const_format"
version = "0.2.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3a214c7af3d04997541b18d432afaff4c455e79e2029079647e72fc2bd27673"
dependencies = [
"const_format_proc_macros",
]
[[package]]
name = "const_format_proc_macros"
version = "0.2.32"
2021-06-20 14:40:04 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7f6ff08fd20f4f299298a28e2dfa8a8ba1036e6cd2460ac1de7b425d76f2500"
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
2021-06-20 14:40:04 +02:00
2023-08-28 18:26:11 +02:00
[[package]]
name = "constant_time_eq"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
2021-06-20 14:40:04 +02:00
[[package]]
name = "convert_case"
version = "0.4.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 14:40:04 +02:00
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2020-08-27 00:11:50 +02:00
2021-02-18 20:48:31 +01:00
[[package]]
name = "cookie"
version = "0.16.2"
2021-02-18 20:48:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
2021-02-18 20:48:31 +01:00
dependencies = [
"percent-encoding",
"time",
"version_check",
2021-02-18 20:48:31 +01:00
]
[[package]]
name = "core-foundation"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
[[package]]
name = "core2"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
dependencies = [
"memchr",
]
2021-02-18 20:48:31 +01:00
[[package]]
2021-06-20 14:40:04 +02:00
name = "cpufeatures"
2024-03-27 19:23:35 +01:00
version = "0.2.12"
2021-02-18 20:48:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-27 19:23:35 +01:00
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
2021-06-20 14:40:04 +02:00
dependencies = [
"libc",
]
2021-02-18 20:48:31 +01:00
2020-08-27 00:11:50 +02:00
[[package]]
name = "crc32fast"
version = "1.4.2"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
2020-08-27 00:11:50 +02:00
dependencies = [
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
]
[[package]]
name = "crossbeam"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-epoch",
"crossbeam-queue",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-channel"
version = "0.5.13"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
2020-08-27 00:11:50 +02:00
dependencies = [
"crossbeam-utils",
2020-08-27 00:11:50 +02:00
]
2020-09-20 19:28:44 +02:00
[[package]]
name = "crossbeam-deque"
version = "0.8.5"
2020-09-20 19:28:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
2020-09-20 19:28:44 +02:00
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
2020-09-20 19:28:44 +02:00
]
[[package]]
name = "crossbeam-epoch"
version = "0.9.18"
2020-09-20 19:28:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
2020-09-20 19:28:44 +02:00
dependencies = [
"crossbeam-utils",
2020-09-20 19:28:44 +02:00
]
[[package]]
name = "crossbeam-queue"
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
2020-08-27 00:11:50 +02:00
[[package]]
name = "crypto-common"
version = "0.1.6"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
2020-08-27 00:11:50 +02:00
2024-01-26 22:41:43 +01:00
[[package]]
name = "csv"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
dependencies = [
"csv-core",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "csv-core"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
dependencies = [
"memchr",
]
[[package]]
name = "darling"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn 2.0.72",
]
[[package]]
name = "darling_macro"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
dependencies = [
"darling_core",
"quote",
"syn 2.0.72",
]
[[package]]
name = "data-encoding"
version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
[[package]]
name = "data-encoding-macro"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1559b6cba622276d6d63706db152618eeb15b89b3e4041446b05876e352e639"
dependencies = [
"data-encoding",
"data-encoding-macro-internal",
]
[[package]]
name = "data-encoding-macro-internal"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "332d754c0af53bc87c108fed664d121ecf59207ec4196041f04d6ab9002ad33f"
dependencies = [
"data-encoding",
"syn 1.0.109",
]
2022-01-24 17:04:27 +01:00
[[package]]
name = "deflate"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73770f8e1fe7d64df17ca66ad28994a0a623ea497fa69486e14984e715c5d174"
dependencies = [
"adler32",
"byteorder",
]
2023-08-28 18:26:11 +02:00
[[package]]
name = "deranged"
version = "0.3.11"
2023-08-28 18:26:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
dependencies = [
"powerfmt",
]
2023-08-28 18:26:11 +02:00
2020-08-27 00:11:50 +02:00
[[package]]
name = "derive_more"
version = "0.99.18"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
2020-08-27 00:11:50 +02:00
dependencies = [
2021-06-20 14:40:04 +02:00
"convert_case",
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
"rustc_version",
"syn 2.0.72",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "diesel"
2021-12-03 17:29:54 +01:00
version = "1.4.8"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-03 17:29:54 +01:00
checksum = "b28135ecf6b7d446b43e27e225622a038cc4e2930a1022f51cdb97ada19b8e4d"
2020-08-27 00:11:50 +02:00
dependencies = [
"byteorder",
"chrono",
"diesel_derives",
"libsqlite3-sys",
"r2d2",
"serde_json",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "diesel_derives"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45f5098f628d02a7a0f68ddba586fb61e80edec3bdc1be3b921f4ceec60858d3"
2020-08-27 00:11:50 +02:00
dependencies = [
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
"syn 1.0.109",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "diesel_migrations"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf3cde8413353dc7f5d72fa8ce0b99a560a359d2c5ef1e5817ca731cd9008f4c"
2020-08-27 00:11:50 +02:00
dependencies = [
"migrations_internals",
"migrations_macros",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "digest"
2023-08-28 18:26:11 +02:00
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"crypto-common",
2024-03-27 19:23:35 +01:00
"subtle",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "either"
version = "1.13.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
2020-08-27 00:11:50 +02:00
[[package]]
name = "encoding_rs"
version = "0.8.34"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
2020-08-27 00:11:50 +02:00
dependencies = [
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
2020-08-27 00:11:50 +02:00
]
2023-08-28 18:26:11 +02:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]]
name = "errno"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
dependencies = [
"libc",
"windows-sys 0.52.0",
]
[[package]]
name = "fastrand"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
2020-08-27 00:11:50 +02:00
[[package]]
name = "filebuffer"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b41bfe1d74263ea9d084be951077614b3b98b4e59a9dafab1467645a9e52305"
2020-08-27 00:11:50 +02:00
dependencies = [
"libc",
"winapi",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "fixedbitset"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
2020-08-27 00:11:50 +02:00
[[package]]
name = "flate2"
version = "1.0.30"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
2020-08-27 00:11:50 +02:00
dependencies = [
"crc32fast",
"miniz_oxide 0.7.4",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2020-08-27 00:11:50 +02:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "form_urlencoded"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
dependencies = [
"percent-encoding",
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "futf"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
dependencies = [
"mac",
"new_debug_unreachable",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "futures"
version = "0.3.30"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
2020-08-27 00:11:50 +02:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "futures-channel"
version = "0.3.30"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
2020-08-27 00:11:50 +02:00
dependencies = [
"futures-core",
"futures-sink",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "futures-core"
version = "0.3.30"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
[[package]]
name = "futures-executor"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "futures-io"
version = "0.3.30"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
2020-08-27 00:11:50 +02:00
[[package]]
name = "futures-macro"
version = "0.3.30"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
2020-08-27 00:11:50 +02:00
dependencies = [
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
"syn 2.0.72",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "futures-sink"
version = "0.3.30"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
2020-08-27 00:11:50 +02:00
[[package]]
name = "futures-task"
version = "0.3.30"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
2020-08-27 00:11:50 +02:00
[[package]]
name = "futures-util"
version = "0.3.30"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
2020-08-27 00:11:50 +02:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
2020-08-27 00:11:50 +02:00
]
2021-02-18 20:48:31 +01:00
[[package]]
name = "generic-array"
version = "0.14.7"
2021-02-18 20:48:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2021-02-18 20:48:31 +01:00
dependencies = [
"typenum",
"version_check",
2021-02-18 20:48:31 +01:00
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "getrandom"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2020-08-27 00:11:50 +02:00
dependencies = [
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
2023-06-27 21:11:29 +02:00
"js-sys",
"libc",
"wasi",
2023-06-27 21:11:29 +02:00
"wasm-bindgen",
2020-08-27 00:11:50 +02:00
]
2022-01-24 17:04:27 +01:00
[[package]]
name = "gif"
version = "0.11.4"
2022-01-24 17:04:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06"
2022-01-24 17:04:27 +01:00
dependencies = [
"color_quant",
"weezl",
]
2023-08-28 18:26:11 +02:00
[[package]]
name = "gimli"
version = "0.29.0"
2023-08-28 18:26:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
2023-08-28 18:26:11 +02:00
[[package]]
name = "glob"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
[[package]]
name = "h2"
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http",
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "hashbrown"
version = "0.12.3"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
2021-12-04 18:33:40 +01:00
dependencies = [
"ahash 0.7.8",
2021-12-04 18:33:40 +01:00
]
2020-08-27 00:11:50 +02:00
[[package]]
2023-08-28 18:26:11 +02:00
name = "hashbrown"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
[[package]]
2023-08-28 18:26:11 +02:00
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "hermit-abi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
[[package]]
name = "home"
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
dependencies = [
"windows-sys 0.52.0",
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "html5ever"
2023-08-28 18:26:11 +02:00
version = "0.26.0"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
2022-02-10 11:38:45 +01:00
dependencies = [
"log",
"mac",
"markup5ever",
"proc-macro2",
"quote",
"syn 1.0.109",
2022-02-10 11:38:45 +01:00
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "http"
version = "0.2.12"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
2020-08-27 00:11:50 +02:00
dependencies = [
"bytes",
"fnv",
"itoa",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "http-body"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "http-range"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
2020-08-27 00:11:50 +02:00
[[package]]
name = "httparse"
version = "1.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
[[package]]
name = "httpdate"
2023-08-28 18:26:11 +02:00
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
[[package]]
name = "hyper"
version = "0.14.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9"
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper",
"native-tls",
"tokio",
"tokio-native-tls",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "iana-time-zone"
version = "0.1.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"windows-core",
]
[[package]]
name = "iana-time-zone-haiku"
2023-08-28 18:26:11 +02:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
2023-08-28 18:26:11 +02:00
"cc",
]
2022-02-28 21:36:55 +01:00
[[package]]
name = "id3"
version = "1.14.0"
2022-02-28 21:36:55 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55f4e785f2c700217ee82a1c727c720449421742abd5fcb2f1df04e1244760e9"
2022-02-28 21:36:55 +01:00
dependencies = [
"bitflags 2.6.0",
2022-02-28 21:36:55 +01:00
"byteorder",
"flate2",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "ident_case"
version = "1.0.1"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2020-08-27 00:11:50 +02:00
[[package]]
name = "idna"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2022-01-24 17:04:27 +01:00
[[package]]
name = "image"
version = "0.23.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1"
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"gif",
"jpeg-decoder",
"num-iter",
"num-rational",
2022-01-24 17:04:27 +01:00
"num-traits",
"png",
"scoped_threadpool",
"tiff",
]
[[package]]
name = "image"
version = "0.24.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d"
dependencies = [
"bytemuck",
"byteorder",
"color_quant",
"num-traits",
]
2024-01-26 22:41:43 +01:00
[[package]]
name = "impl-more"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d"
2020-08-27 00:11:50 +02:00
[[package]]
name = "indexmap"
version = "2.2.6"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
dependencies = [
2023-08-28 18:26:11 +02:00
"equivalent",
"hashbrown 0.14.5",
]
[[package]]
name = "ipnet"
version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
2020-08-27 00:11:50 +02:00
[[package]]
name = "is_debug"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06d198e9919d9822d5f7083ba8530e04de87841eaf21ead9af8f2304efd57c89"
2021-12-19 22:38:41 +01:00
[[package]]
name = "is_executable"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa9acdc6d67b75e626ad644734e8bc6df893d9cd2a834129065d3dd6158ea9c8"
dependencies = [
"winapi",
2021-12-19 22:38:41 +01:00
]
[[package]]
name = "is_terminal_polyfill"
version = "1.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
2024-01-26 22:41:43 +01:00
[[package]]
name = "itertools"
version = "0.12.1"
2024-01-26 22:41:43 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
2024-01-26 22:41:43 +01:00
dependencies = [
"either",
]
2021-12-19 22:48:59 +01:00
[[package]]
name = "itoa"
version = "1.0.11"
2021-12-19 22:48:59 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
2021-12-19 22:48:59 +01:00
2022-01-24 17:04:27 +01:00
[[package]]
name = "jobserver"
version = "0.1.32"
2022-01-24 17:04:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
2022-01-24 17:04:27 +01:00
dependencies = [
"libc",
]
[[package]]
name = "jpeg-decoder"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "229d53d58899083193af11e15917b5640cd40b29ff475a1fe4ef725deb02d0f2"
dependencies = [
"rayon",
]
2020-08-30 16:45:42 +02:00
[[package]]
name = "js-sys"
version = "0.3.69"
2020-08-30 16:45:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
2020-08-30 16:45:42 +02:00
dependencies = [
"wasm-bindgen",
2020-08-30 16:45:42 +02:00
]
[[package]]
name = "jsonwebtoken"
version = "8.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378"
dependencies = [
"base64 0.21.7",
"pem",
"ring",
"serde",
"serde_json",
"simple_asn1",
]
[[package]]
name = "jwalk"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2735847566356cd2179a2a38264839308f7079fa96e6bd5a42d740460e003c56"
dependencies = [
"crossbeam",
"rayon",
]
[[package]]
name = "kamadak-exif"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef4fc70d0ab7e5b6bafa30216a6b48705ea964cdfc29c050f2412295eba58077"
dependencies = [
"mutate_once",
]
[[package]]
name = "keccak"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
dependencies = [
"cpufeatures",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "language-tags"
version = "0.3.2"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2020-08-27 00:11:50 +02:00
[[package]]
name = "lazy_static"
version = "1.5.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
[[package]]
name = "lexpr"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a84de6a9df442363b08f5dbf0cd5b92edc70097b89c4ce4bfea4679fe48bc67"
dependencies = [
"itoa",
"lexpr-macros",
"ryu",
]
[[package]]
name = "lexpr-macros"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36b5cb8bb985c81a8ac1a0f8b5c4865214f574ddd64397ef7a99c236e21f35bb"
dependencies = [
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "libc"
version = "0.2.155"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
2020-08-27 00:11:50 +02:00
[[package]]
name = "libsqlite3-sys"
2021-06-20 14:40:04 +02:00
version = "0.22.2"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 14:40:04 +02:00
checksum = "290b64917f8b0cb885d9de0f9959fe1f775d7fa12f1da2db9001c1c8ab60f89d"
2020-08-27 00:11:50 +02:00
dependencies = [
"cc",
"pkg-config",
"vcpkg",
2020-08-27 00:11:50 +02:00
]
2022-01-24 17:04:27 +01:00
[[package]]
name = "libwebp-sys"
version = "0.9.5"
2022-01-24 17:04:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "829b6b604f31ed6d2bccbac841fe0788de93dbd87e4eb1ba2c4adfe8c012a838"
dependencies = [
"cc",
2023-08-28 18:26:11 +02:00
"glob",
]
[[package]]
name = "linux-raw-sys"
version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
[[package]]
name = "local-channel"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8"
dependencies = [
"futures-core",
"futures-sink",
"local-waker",
]
[[package]]
name = "local-waker"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
2020-08-27 00:11:50 +02:00
[[package]]
name = "lock_api"
version = "0.4.12"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2020-08-27 00:11:50 +02:00
dependencies = [
"autocfg",
"scopeguard",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "log"
version = "0.4.22"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2020-08-27 00:11:50 +02:00
2021-12-04 18:33:40 +01:00
[[package]]
name = "lru"
version = "0.7.8"
2021-12-04 18:33:40 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a"
2021-12-04 18:33:40 +01:00
dependencies = [
2023-08-28 18:26:11 +02:00
"hashbrown 0.12.3",
2021-12-04 18:33:40 +01:00
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "mac"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
[[package]]
name = "markup5ever"
2023-08-28 18:26:11 +02:00
version = "0.11.0"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
2022-02-10 11:38:45 +01:00
dependencies = [
"log",
"phf",
"phf_codegen",
"string_cache",
"string_cache_codegen",
"tendril",
]
[[package]]
name = "markup5ever_rcdom"
2023-08-28 18:26:11 +02:00
version = "0.2.0"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "b9521dd6750f8e80ee6c53d65e2e4656d7de37064f3a7a5d2d11d05df93839c2"
2022-02-10 11:38:45 +01:00
dependencies = [
"html5ever",
"markup5ever",
"tendril",
"xml5ever",
]
2022-08-07 12:13:12 +02:00
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
2023-08-28 18:26:11 +02:00
"regex-automata 0.1.10",
2022-08-07 12:13:12 +02:00
]
2024-01-26 22:41:43 +01:00
[[package]]
name = "mediatype"
version = "0.19.18"
2024-01-26 22:41:43 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8878cd8d1b3c8c8ae4b2ba0a36652b7cf192f618a599a7fbdfa25cffd4ea72dd"
2024-01-26 22:41:43 +01:00
2020-08-27 00:11:50 +02:00
[[package]]
name = "memchr"
version = "2.7.4"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2020-09-20 19:28:44 +02:00
2023-06-28 14:25:11 +02:00
[[package]]
name = "memory_units"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8452105ba047068f40ff7093dd1d9da90898e63dd61736462e9cdda6a90ad3c3"
2020-08-27 00:11:50 +02:00
[[package]]
name = "migrations_internals"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b4fc84e4af020b837029e017966f86a1c2d5e83e64b589963d5047525995860"
2020-08-27 00:11:50 +02:00
dependencies = [
"diesel",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "migrations_macros"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9753f12909fd8d923f75ae5c3258cae1ed3c8ec052e1b38c93c21a6d157f789c"
2020-08-27 00:11:50 +02:00
dependencies = [
"migrations_internals",
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
"syn 1.0.109",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "mime"
version = "0.3.17"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2020-08-27 00:11:50 +02:00
[[package]]
name = "mime_guess"
version = "2.0.5"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2020-08-27 00:11:50 +02:00
dependencies = [
"mime",
"unicase",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2022-01-24 17:04:27 +01:00
[[package]]
name = "miniz_oxide"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
dependencies = [
"adler32",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "miniz_oxide"
2021-06-20 14:40:04 +02:00
version = "0.4.4"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 14:40:04 +02:00
checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
2020-08-27 00:11:50 +02:00
dependencies = [
"adler",
"autocfg",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "miniz_oxide"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
dependencies = [
"adler",
]
2021-02-18 20:48:31 +01:00
[[package]]
name = "mio"
version = "0.8.11"
2021-02-18 20:48:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
2021-02-18 20:48:31 +01:00
dependencies = [
"libc",
"log",
"wasi",
"windows-sys 0.48.0",
2021-02-18 20:48:31 +01:00
]
[[package]]
name = "mio"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"
dependencies = [
"hermit-abi",
"libc",
"wasi",
"windows-sys 0.52.0",
]
[[package]]
name = "multibase"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404"
dependencies = [
"base-x",
"data-encoding",
"data-encoding-macro",
]
[[package]]
name = "multihash"
version = "0.18.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfd8a792c1694c6da4f68db0a9d707c72bd260994da179e6030a5dcee00bb815"
dependencies = [
"blake2b_simd",
"blake2s_simd",
"blake3",
"core2",
"digest",
"multihash-derive",
"sha2",
"sha3",
"unsigned-varint",
]
[[package]]
name = "multihash-derive"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d6d4752e6230d8ef7adf7bd5d8c4b1f6561c1014c5ba9a37445ccefe18aa1db"
dependencies = [
"proc-macro-crate",
"proc-macro-error",
"proc-macro2",
"quote",
"syn 1.0.109",
"synstructure",
]
[[package]]
name = "mutate_once"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16cf681a23b4d0a43fc35024c176437f9dcd818db34e0f42ab456a0ee5ad497b"
[[package]]
name = "native-tls"
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
dependencies = [
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "new_debug_unreachable"
version = "1.0.6"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
2022-02-10 11:38:45 +01:00
2020-08-27 00:11:50 +02:00
[[package]]
name = "nom"
version = "7.1.3"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2020-08-27 00:11:50 +02:00
dependencies = [
"memchr",
"minimal-lexical",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "nonempty"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fa586da3e43cc7df44aae0e21ed2e743218b876de3f38035683d30bd8a3828e"
2021-02-18 20:48:31 +01:00
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
2021-02-18 20:48:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
2021-02-18 20:48:31 +01:00
dependencies = [
"overload",
"winapi",
2021-02-18 20:48:31 +01:00
]
[[package]]
name = "num-bigint"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
dependencies = [
"num-integer",
"num-traits",
]
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2020-08-27 00:11:50 +02:00
[[package]]
name = "num-integer"
version = "0.1.46"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2020-08-27 00:11:50 +02:00
dependencies = [
"num-traits",
2020-08-27 00:11:50 +02:00
]
2022-01-24 17:04:27 +01:00
[[package]]
name = "num-iter"
version = "0.1.45"
2022-01-24 17:04:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2022-01-24 17:04:27 +01:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "num-traits"
version = "0.2.19"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2020-08-27 00:11:50 +02:00
dependencies = [
"autocfg",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "num_cpus"
2023-08-28 18:26:11 +02:00
version = "1.16.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2020-08-27 00:11:50 +02:00
dependencies = [
2023-08-28 18:26:11 +02:00
"hermit-abi",
"libc",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "num_threads"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
dependencies = [
"libc",
]
2023-08-28 18:26:11 +02:00
[[package]]
name = "object"
version = "0.36.2"
2023-08-28 18:26:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f203fa8daa7bb185f760ae12bd8e097f63d17041dcdcaf675ac54cdf863170e"
2023-08-28 18:26:11 +02:00
dependencies = [
"memchr",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "once_cell"
version = "1.19.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2020-08-27 00:11:50 +02:00
2021-12-19 22:38:41 +01:00
[[package]]
name = "opener"
version = "0.5.2"
2021-12-19 22:38:41 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "293c15678e37254c15bd2f092314abb4e51d7fdde05c2021279c12631b54f005"
2021-12-19 22:38:41 +01:00
dependencies = [
"bstr",
"winapi",
2021-12-19 22:38:41 +01:00
]
[[package]]
name = "openssl"
version = "0.10.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
dependencies = [
"bitflags 2.6.0",
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.72",
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
version = "0.9.103"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
2022-02-10 11:38:45 +01:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "parking_lot"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
dependencies = [
"lock_api",
"parking_lot_core",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "parking_lot_core"
version = "0.9.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
dependencies = [
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
"libc",
2023-08-28 18:26:11 +02:00
"redox_syscall",
"smallvec",
"windows-targets 0.52.6",
]
[[package]]
name = "parse-size"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "944553dd59c802559559161f9816429058b869003836120e262e8caec061b7ae"
2024-03-27 19:23:35 +01:00
[[package]]
name = "password-hash"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
dependencies = [
"base64ct",
"rand_core",
"subtle",
]
[[package]]
name = "paste"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
[[package]]
name = "pem"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
dependencies = [
"base64 0.13.1",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "percent-encoding"
version = "2.3.1"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2020-08-27 00:11:50 +02:00
[[package]]
name = "petgraph"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
dependencies = [
"fixedbitset",
"indexmap",
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "phf"
2023-08-28 18:26:11 +02:00
version = "0.10.1"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
2022-02-10 11:38:45 +01:00
dependencies = [
2023-08-28 18:26:11 +02:00
"phf_shared",
2022-02-10 11:38:45 +01:00
]
[[package]]
name = "phf_codegen"
2023-08-28 18:26:11 +02:00
version = "0.10.0"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
2022-02-10 11:38:45 +01:00
dependencies = [
2023-08-28 18:26:11 +02:00
"phf_generator",
"phf_shared",
2022-02-10 11:38:45 +01:00
]
[[package]]
name = "phf_generator"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
dependencies = [
2023-08-28 18:26:11 +02:00
"phf_shared",
"rand",
2022-02-10 11:38:45 +01:00
]
[[package]]
name = "phf_shared"
version = "0.10.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
"siphasher",
]
[[package]]
name = "pin-project-lite"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2020-08-27 00:11:50 +02:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020-08-27 00:11:50 +02:00
[[package]]
name = "pkg-config"
version = "0.3.30"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
2020-08-27 00:11:50 +02:00
2022-01-24 17:04:27 +01:00
[[package]]
name = "png"
version = "0.16.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c3287920cb847dee3de33d301c463fba14dda99db24214ddf93f83d3021f4c6"
dependencies = [
"bitflags 1.3.2",
2022-01-24 17:04:27 +01:00
"crc32fast",
"deflate",
"miniz_oxide 0.3.7",
]
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2020-08-27 00:11:50 +02:00
[[package]]
name = "ppv-lite86"
version = "0.2.17"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2020-08-27 00:11:50 +02:00
2022-02-10 11:38:45 +01:00
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
[[package]]
name = "proc-macro-crate"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a"
dependencies = [
"thiserror",
"toml",
]
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn 1.0.109",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "proc-macro2"
version = "1.0.86"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
2020-08-27 00:11:50 +02:00
dependencies = [
"unicode-ident",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "quote"
version = "1.0.36"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2020-08-27 00:11:50 +02:00
dependencies = [
2021-02-18 20:48:31 +01:00
"proc-macro2",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "r2d2"
version = "0.8.10"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93"
2020-08-27 00:11:50 +02:00
dependencies = [
"log",
"parking_lot",
"scheduled-thread-pool",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "rand"
version = "0.8.5"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2020-08-27 00:11:50 +02:00
dependencies = [
"libc",
2023-08-28 18:26:11 +02:00
"rand_chacha",
"rand_core",
2020-08-27 00:11:50 +02:00
]
[[package]]
2021-12-26 18:16:37 +01:00
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-26 18:16:37 +01:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
2021-12-26 18:16:37 +01:00
"ppv-lite86",
2023-08-28 18:26:11 +02:00
"rand_core",
2021-12-26 18:16:37 +01:00
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "rand_core"
version = "0.6.4"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2020-08-27 00:11:50 +02:00
dependencies = [
2023-08-28 18:26:11 +02:00
"getrandom",
2022-02-10 11:38:45 +01:00
]
2020-09-20 19:28:44 +02:00
[[package]]
name = "rayon"
version = "1.10.0"
2020-09-20 19:28:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2020-09-20 19:28:44 +02:00
dependencies = [
"either",
"rayon-core",
2020-09-20 19:28:44 +02:00
]
[[package]]
name = "rayon-core"
version = "1.12.1"
2020-09-20 19:28:44 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2020-09-20 19:28:44 +02:00
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
2020-09-20 19:28:44 +02:00
]
[[package]]
name = "redox_syscall"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
dependencies = [
"bitflags 2.6.0",
2021-12-03 17:29:54 +01:00
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "regex"
version = "1.10.5"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
2020-08-27 00:11:50 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-automata 0.4.7",
"regex-syntax 0.8.4",
2020-08-27 00:11:50 +02:00
]
2021-12-19 22:38:41 +01:00
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
2022-08-07 12:13:12 +02:00
dependencies = [
"regex-syntax 0.6.29",
2022-08-07 12:13:12 +02:00
]
2021-12-19 22:38:41 +01:00
2023-08-28 18:26:11 +02:00
[[package]]
name = "regex-automata"
version = "0.4.7"
2023-08-28 18:26:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
2023-08-28 18:26:11 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax 0.8.4",
2023-08-28 18:26:11 +02:00
]
[[package]]
name = "regex-lite"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
2020-08-27 00:11:50 +02:00
[[package]]
name = "regex-syntax"
version = "0.6.29"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2020-08-27 00:11:50 +02:00
[[package]]
name = "regex-syntax"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
[[package]]
name = "reqwest"
version = "0.11.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
dependencies = [
"base64 0.21.7",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2",
"http",
"http-body",
"hyper",
"hyper-tls",
"ipnet",
"js-sys",
"log",
"mime",
"native-tls",
"once_cell",
"percent-encoding",
"pin-project-lite",
"rustls-pemfile",
"serde",
"serde_json",
"serde_urlencoded",
"sync_wrapper",
"system-configuration",
"tokio",
"tokio-native-tls",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "ring"
version = "0.16.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
dependencies = [
"cc",
"libc",
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
2021-12-03 17:29:54 +01:00
]
2023-08-28 18:26:11 +02:00
[[package]]
name = "rustc-demangle"
version = "0.1.24"
2023-08-28 18:26:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2023-08-28 18:26:11 +02:00
2021-12-03 17:29:54 +01:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
2021-02-18 20:48:31 +01:00
]
[[package]]
name = "rustix"
version = "0.38.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
dependencies = [
"bitflags 2.6.0",
"errno",
"libc",
"linux-raw-sys",
"windows-sys 0.52.0",
]
[[package]]
name = "rustls-pemfile"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
dependencies = [
"base64 0.21.7",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "ryu"
version = "1.0.18"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2020-08-27 00:11:50 +02:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2020-08-27 00:11:50 +02:00
dependencies = [
"winapi-util",
2020-08-27 00:11:50 +02:00
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "schannel"
version = "0.1.23"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
2022-02-10 11:38:45 +01:00
dependencies = [
"windows-sys 0.52.0",
2022-02-10 11:38:45 +01:00
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "scheduled-thread-pool"
version = "0.2.7"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19"
2020-08-27 00:11:50 +02:00
dependencies = [
"parking_lot",
2020-08-27 00:11:50 +02:00
]
2022-01-24 17:04:27 +01:00
[[package]]
name = "scoped_threadpool"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
2020-08-27 00:11:50 +02:00
[[package]]
name = "scopeguard"
2023-08-28 18:26:11 +02:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
[[package]]
name = "security-framework"
version = "2.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
dependencies = [
"bitflags 2.6.0",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "2.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
dependencies = [
"core-foundation-sys",
"libc",
]
2021-12-03 17:29:54 +01:00
[[package]]
name = "semver"
version = "1.0.23"
2021-12-03 17:29:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
2021-12-03 17:29:54 +01:00
2020-08-27 00:11:50 +02:00
[[package]]
name = "serde"
version = "1.0.204"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
2020-08-27 00:11:50 +02:00
dependencies = [
"serde_derive",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "serde_derive"
version = "1.0.204"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
2020-08-27 00:11:50 +02:00
dependencies = [
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
"syn 2.0.72",
2020-08-27 00:11:50 +02:00
]
2024-01-26 22:41:43 +01:00
[[package]]
name = "serde_html_form"
version = "0.2.6"
2024-01-26 22:41:43 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de514ef58196f1fc96dcaef80fe6170a1ce6215df9687a93fe8300e773fefc5"
2024-01-26 22:41:43 +01:00
dependencies = [
"form_urlencoded",
"indexmap",
2024-01-26 22:41:43 +01:00
"itoa",
"ryu",
"serde",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "serde_json"
version = "1.0.120"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
2020-08-27 00:11:50 +02:00
dependencies = [
"itoa",
"ryu",
"serde",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "serde_plain"
2023-08-28 18:26:11 +02:00
version = "1.0.2"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50"
2020-08-27 00:11:50 +02:00
dependencies = [
"serde",
2021-02-18 20:48:31 +01:00
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
2021-02-18 20:48:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2021-02-18 20:48:31 +01:00
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "sha1"
version = "0.10.6"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
dependencies = [
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
"cpufeatures",
"digest",
]
[[package]]
name = "sha2"
version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
dependencies = [
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
"cpufeatures",
"digest",
]
[[package]]
name = "sha3"
version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
dependencies = [
"digest",
"keccak",
]
[[package]]
name = "shadow-rs"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "970538704756fd0bb4ec8cb89f80674afb661e7c0fe716f9ba5be57717742300"
dependencies = [
"const_format",
"is_debug",
"time",
]
2022-08-07 12:13:12 +02:00
[[package]]
name = "sharded-slab"
version = "0.1.7"
2022-08-07 12:13:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2022-08-07 12:13:12 +02:00
dependencies = [
"lazy_static",
]
2023-06-08 19:38:56 +02:00
[[package]]
name = "signal-hook"
2023-08-28 18:26:11 +02:00
version = "0.3.17"
2023-06-08 19:38:56 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
2023-06-08 19:38:56 +02:00
dependencies = [
"libc",
"signal-hook-registry",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "signal-hook-registry"
version = "1.4.2"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2020-08-27 00:11:50 +02:00
dependencies = [
"libc",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "simple_asn1"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
dependencies = [
"num-bigint",
"num-traits",
"thiserror",
"time",
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "siphasher"
2023-08-28 18:26:11 +02:00
version = "0.3.11"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
2022-02-10 11:38:45 +01:00
2020-08-27 00:11:50 +02:00
[[package]]
name = "slab"
2023-08-28 18:26:11 +02:00
version = "0.4.9"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
dependencies = [
"autocfg",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "smallvec"
version = "1.13.2"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2022-02-10 11:38:45 +01:00
2023-08-28 18:26:11 +02:00
[[package]]
name = "socket2"
version = "0.5.7"
2023-08-28 18:26:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
2023-08-28 18:26:11 +02:00
dependencies = [
"libc",
"windows-sys 0.52.0",
2023-08-28 18:26:11 +02:00
]
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2022-02-10 11:38:45 +01:00
[[package]]
name = "string_cache"
version = "0.8.7"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
2022-02-10 11:38:45 +01:00
dependencies = [
"new_debug_unreachable",
"once_cell",
"parking_lot",
2023-08-28 18:26:11 +02:00
"phf_shared",
2022-02-10 11:38:45 +01:00
"precomputed-hash",
"serde",
]
[[package]]
name = "string_cache_codegen"
version = "0.5.2"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
2022-02-10 11:38:45 +01:00
dependencies = [
2023-08-28 18:26:11 +02:00
"phf_generator",
"phf_shared",
2022-02-10 11:38:45 +01:00
"proc-macro2",
"quote",
]
[[package]]
name = "strsim"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2024-03-27 19:23:35 +01:00
[[package]]
name = "subtle"
version = "2.6.1"
2024-03-27 19:23:35 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2024-03-27 19:23:35 +01:00
2021-02-18 20:48:31 +01:00
[[package]]
name = "syn"
version = "1.0.109"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2020-08-27 00:11:50 +02:00
dependencies = [
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
version = "2.0.72"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "sync_wrapper"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
[[package]]
name = "synstructure"
version = "0.12.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
"unicode-xid",
]
[[package]]
name = "system-configuration"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"system-configuration-sys",
]
[[package]]
name = "system-configuration-sys"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
2021-12-26 18:16:37 +01:00
name = "tempfile"
version = "3.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
dependencies = [
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
"fastrand",
"rustix",
"windows-sys 0.52.0",
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "tendril"
version = "0.4.3"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2022-02-10 11:38:45 +01:00
dependencies = [
"futf",
"mac",
"utf-8",
]
2020-09-07 21:21:54 +02:00
[[package]]
name = "thiserror"
version = "1.0.63"
2020-09-07 21:21:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
2020-09-07 21:21:54 +02:00
dependencies = [
"thiserror-impl",
2020-09-07 21:21:54 +02:00
]
[[package]]
name = "thiserror-impl"
version = "1.0.63"
2020-09-07 21:21:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
2020-09-07 21:21:54 +02:00
dependencies = [
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
"syn 2.0.72",
2020-09-07 21:21:54 +02:00
]
2022-08-07 12:13:12 +02:00
[[package]]
name = "thread_local"
version = "1.1.8"
2022-08-07 12:13:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
2022-08-07 12:13:12 +02:00
dependencies = [
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
2022-08-07 12:13:12 +02:00
"once_cell",
]
2022-01-24 17:04:27 +01:00
[[package]]
name = "tiff"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a53f4706d65497df0c4349241deddf35f84cee19c87ed86ea8ca590f4464437"
dependencies = [
"jpeg-decoder",
"miniz_oxide 0.4.4",
"weezl",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "time"
version = "0.3.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
dependencies = [
2023-08-28 18:26:11 +02:00
"deranged",
"itoa",
"libc",
"num-conv",
"num_threads",
"powerfmt",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
[[package]]
name = "time-macros"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
dependencies = [
"num-conv",
"time-core",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "tinyvec"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2020-08-27 00:11:50 +02:00
[[package]]
2021-02-18 20:48:31 +01:00
name = "tokio"
version = "1.39.2"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
2020-08-27 00:11:50 +02:00
dependencies = [
2023-08-28 18:26:11 +02:00
"backtrace",
"bytes",
2021-02-18 20:48:31 +01:00
"libc",
"mio 1.0.1",
"parking_lot",
"pin-project-lite",
2021-02-18 20:48:31 +01:00
"signal-hook-registry",
"socket2",
2024-01-26 22:41:43 +01:00
"tokio-macros",
"windows-sys 0.52.0",
2020-08-27 00:11:50 +02:00
]
2024-01-26 22:41:43 +01:00
[[package]]
name = "tokio-macros"
version = "2.4.0"
2024-01-26 22:41:43 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
2024-01-26 22:41:43 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.72",
2024-01-26 22:41:43 +01:00
]
[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
dependencies = [
"native-tls",
"tokio",
2020-08-27 00:11:50 +02:00
]
2024-01-26 22:41:43 +01:00
[[package]]
name = "tokio-stream"
version = "0.1.15"
2024-01-26 22:41:43 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
2024-01-26 22:41:43 +01:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
"tokio-util",
2024-01-26 22:41:43 +01:00
]
[[package]]
name = "tokio-util"
version = "0.7.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
]
2022-01-31 15:17:59 +01:00
[[package]]
name = "toml"
version = "0.5.11"
2022-01-31 15:17:59 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2022-01-31 15:17:59 +01:00
dependencies = [
"serde",
]
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2020-08-27 00:11:50 +02:00
[[package]]
name = "tracing"
version = "0.1.40"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2020-08-27 00:11:50 +02:00
dependencies = [
"log",
"pin-project-lite",
2022-08-07 12:13:12 +02:00
"tracing-attributes",
"tracing-core",
2020-08-27 00:11:50 +02:00
]
2022-08-07 12:13:12 +02:00
[[package]]
name = "tracing-attributes"
version = "0.1.27"
2022-08-07 12:13:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
2022-08-07 12:13:12 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.72",
2022-08-07 12:13:12 +02:00
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "tracing-core"
version = "0.1.32"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2020-08-27 00:11:50 +02:00
dependencies = [
2022-09-08 21:41:18 +02:00
"once_cell",
2022-08-07 12:13:12 +02:00
"valuable",
2020-08-27 00:11:50 +02:00
]
2022-08-07 12:13:12 +02:00
[[package]]
name = "tracing-log"
version = "0.2.0"
2022-08-07 12:13:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2022-08-07 12:13:12 +02:00
dependencies = [
"log",
"once_cell",
2022-08-07 12:13:12 +02:00
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
version = "0.3.18"
2022-08-07 12:13:12 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
2022-08-07 12:13:12 +02:00
dependencies = [
"matchers",
"nu-ansi-term",
"once_cell",
2022-08-07 12:13:12 +02:00
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
2023-06-19 11:48:58 +02:00
[[package]]
name = "tree_magic_db"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e73fc24a5427b3b15e2b0bcad8ef61b5affb1da8ac89c8bf3f196c8692d57f02"
[[package]]
name = "tree_magic_mini"
version = "3.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "469a727cac55b41448315cc10427c069c618ac59bb6a4480283fcd811749bdc2"
dependencies = [
"fnv",
"home",
"memchr",
"nom",
"once_cell",
"petgraph",
2023-06-19 11:48:58 +02:00
"tree_magic_db",
]
[[package]]
name = "try-lock"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2021-02-18 20:48:31 +01:00
[[package]]
name = "typenum"
version = "1.17.0"
2021-02-18 20:48:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2021-02-18 20:48:31 +01:00
2020-08-27 00:11:50 +02:00
[[package]]
name = "unicase"
2023-08-28 18:26:11 +02:00
version = "2.7.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
2020-08-27 00:11:50 +02:00
dependencies = [
"version_check",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "unicode-bidi"
version = "0.3.15"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
2020-08-27 00:11:50 +02:00
[[package]]
name = "unicode-ident"
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2020-08-27 00:11:50 +02:00
[[package]]
name = "unicode-normalization"
version = "0.1.23"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
2020-08-27 00:11:50 +02:00
dependencies = [
"tinyvec",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "unicode-xid"
version = "0.2.4"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
2020-08-27 00:11:50 +02:00
2020-09-07 21:21:54 +02:00
[[package]]
name = "unsigned-varint"
version = "0.7.2"
2020-09-07 21:21:54 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105"
2020-09-07 21:21:54 +02:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2020-08-27 00:11:50 +02:00
[[package]]
2023-06-25 15:29:52 +02:00
name = "upend-base"
version = "0.0.1"
dependencies = [
"chrono",
"cid",
"diesel",
"lazy_static",
"lexpr",
"log",
"multibase",
"multihash",
"nonempty",
"serde",
"shadow-rs",
"url",
2023-06-29 12:58:06 +02:00
"uuid",
2023-06-27 21:11:29 +02:00
"wasm-bindgen",
]
[[package]]
name = "upend-cli"
version = "0.1.0"
2020-08-27 00:11:50 +02:00
dependencies = [
"actix",
2022-09-08 21:41:18 +02:00
"actix-cors",
"actix-files",
"actix-multipart",
"actix-rt",
"actix-web",
2024-01-26 22:41:43 +01:00
"actix-web-lab",
2021-02-18 20:48:31 +01:00
"actix_derive",
"anyhow",
"async-trait",
"bytes",
"chrono",
"clap",
"diesel",
"diesel_migrations",
"filebuffer",
"futures",
2021-02-19 21:58:35 +01:00
"futures-util",
2022-02-28 21:36:55 +01:00
"id3",
"image 0.23.14",
2021-12-19 22:38:41 +01:00
"is_executable",
"jsonwebtoken",
"kamadak-exif",
"lazy_static",
"lexpr",
"libsqlite3-sys",
"log",
2021-12-04 18:33:40 +01:00
"lru",
"mime",
"multibase",
"multihash",
"nonempty",
"num_cpus",
"once_cell",
2021-12-19 22:38:41 +01:00
"opener",
2023-08-28 18:26:11 +02:00
"rand",
"rayon",
"regex",
"reqwest",
"serde",
"serde_json",
"shadow-rs",
2023-06-08 19:38:56 +02:00
"signal-hook",
2021-12-26 18:16:37 +01:00
"tempfile",
"thiserror",
"tokio",
2022-08-07 12:13:12 +02:00
"tracing",
"tracing-subscriber",
"tree_magic_mini",
2023-06-25 15:29:52 +02:00
"upend-base",
"upend-db",
"url",
2023-06-29 12:58:06 +02:00
"uuid",
"walkdir",
"webbrowser",
2022-01-24 17:04:27 +01:00
"webp",
2022-02-10 11:38:45 +01:00
"webpage",
]
2023-06-25 15:29:52 +02:00
[[package]]
name = "upend-db"
version = "0.0.2"
2023-06-25 15:29:52 +02:00
dependencies = [
"anyhow",
2024-03-27 19:23:35 +01:00
"argon2",
2023-06-25 15:29:52 +02:00
"chrono",
"diesel",
"diesel_migrations",
"filebuffer",
"jwalk",
2023-06-25 15:29:52 +02:00
"lazy_static",
"lexpr",
"libsqlite3-sys",
"log",
"lru",
"multibase",
"multihash",
"nonempty",
"num_cpus",
"once_cell",
2024-03-27 19:23:35 +01:00
"password-hash",
2023-06-25 15:29:52 +02:00
"rayon",
"regex",
"serde",
"serde_json",
"shadow-rs",
"tempfile",
"tokio",
"tokio-stream",
2023-06-25 15:29:52 +02:00
"tracing",
"tracing-subscriber",
"tree_magic_mini",
"upend-base",
"url",
2023-06-29 12:58:06 +02:00
"uuid",
2023-06-25 15:29:52 +02:00
]
[[package]]
name = "upend_wasm"
version = "0.1.0"
dependencies = [
"upend-base",
"wasm-bindgen",
2023-06-28 14:25:11 +02:00
"wee_alloc",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "url"
version = "2.5.2"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
2020-08-27 00:11:50 +02:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
"serde",
2020-08-27 00:11:50 +02:00
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "utf-8"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
[[package]]
name = "utf8parse"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2023-06-27 21:11:29 +02:00
[[package]]
name = "uuid"
version = "1.10.0"
2023-06-27 21:11:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
2020-09-07 21:21:54 +02:00
dependencies = [
2023-08-28 18:26:11 +02:00
"getrandom",
"serde",
2023-06-27 21:11:29 +02:00
"wasm-bindgen",
2020-09-07 21:21:54 +02:00
]
[[package]]
name = "v_htmlescape"
version = "0.15.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c"
2022-08-07 12:13:12 +02:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2020-08-27 00:11:50 +02:00
[[package]]
name = "vcpkg"
2021-06-20 14:40:04 +02:00
version = "0.2.15"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-20 14:40:04 +02:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2020-08-27 00:11:50 +02:00
[[package]]
name = "version_check"
version = "0.9.5"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2020-08-27 00:11:50 +02:00
[[package]]
name = "walkdir"
version = "2.5.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2020-08-27 00:11:50 +02:00
dependencies = [
"same-file",
"winapi-util",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "want"
2023-08-28 18:26:11 +02:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
dependencies = [
"try-lock",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2020-08-30 16:45:42 +02:00
[[package]]
name = "wasm-bindgen"
version = "0.2.92"
2020-08-30 16:45:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
2020-08-30 16:45:42 +02:00
dependencies = [
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
"wasm-bindgen-macro",
2020-08-30 16:45:42 +02:00
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.92"
2020-08-30 16:45:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
2020-08-30 16:45:42 +02:00
dependencies = [
"bumpalo",
"log",
"once_cell",
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
"syn 2.0.72",
"wasm-bindgen-shared",
2020-08-30 16:45:42 +02:00
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
dependencies = [
2023-06-28 14:25:11 +02:00
"cfg-if 1.0.0",
"js-sys",
"wasm-bindgen",
"web-sys",
]
2020-08-30 16:45:42 +02:00
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.92"
2020-08-30 16:45:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
2020-08-30 16:45:42 +02:00
dependencies = [
2021-02-18 20:48:31 +01:00
"quote",
"wasm-bindgen-macro-support",
2020-08-30 16:45:42 +02:00
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.92"
2020-08-30 16:45:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
2020-08-30 16:45:42 +02:00
dependencies = [
2021-02-18 20:48:31 +01:00
"proc-macro2",
"quote",
"syn 2.0.72",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
2020-08-30 16:45:42 +02:00
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.92"
2020-08-30 16:45:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
2020-08-30 16:45:42 +02:00
[[package]]
name = "web-sys"
version = "0.3.69"
2020-08-30 16:45:42 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
2020-08-30 16:45:42 +02:00
dependencies = [
"js-sys",
"wasm-bindgen",
2020-08-30 16:45:42 +02:00
]
[[package]]
name = "webbrowser"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecad156490d6b620308ed411cfee90d280b3cbd13e189ea0d3fada8acc89158a"
2020-08-30 16:45:42 +02:00
dependencies = [
"web-sys",
"widestring",
"winapi",
2020-08-30 16:45:42 +02:00
]
2022-01-24 17:04:27 +01:00
[[package]]
name = "webp"
version = "0.2.6"
2022-01-24 17:04:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4bb5d8e7814e92297b0e1c773ce43d290bef6c17452dafd9fc49e5edb5beba71"
2022-01-24 17:04:27 +01:00
dependencies = [
"image 0.24.9",
2022-01-24 17:04:27 +01:00
"libwebp-sys",
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "webpage"
2023-08-28 18:26:11 +02:00
version = "1.6.0"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "8598785beeb5af95abe95e7bb20c7e747d1188347080d6811d5a56d2b9a5f368"
2022-02-10 11:38:45 +01:00
dependencies = [
"html5ever",
"markup5ever_rcdom",
"serde_json",
]
2023-06-28 14:25:11 +02:00
[[package]]
name = "wee_alloc"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbb3b5a6b2bb17cb6ad44a2e68a43e8d2722c997da10e928665c72ec6c0a0b8e"
dependencies = [
"cfg-if 0.1.10",
"libc",
"memory_units",
"winapi",
]
2022-01-24 17:04:27 +01:00
[[package]]
name = "weezl"
version = "0.1.8"
2022-01-24 17:04:27 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
2022-01-24 17:04:27 +01:00
2020-08-27 00:11:50 +02:00
[[package]]
name = "widestring"
version = "0.4.3"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c168940144dd21fd8046987c16a46a33d5fc84eec29ef9dcddc2ac9e31526b7c"
2020-08-27 00:11:50 +02:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2020-08-27 00:11:50 +02:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2020-08-27 00:11:50 +02:00
[[package]]
name = "winapi-util"
version = "0.1.8"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
2020-08-27 00:11:50 +02:00
dependencies = [
"windows-sys 0.52.0",
2020-08-27 00:11:50 +02: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"
2020-08-27 00:11:50 +02:00
[[package]]
name = "windows-core"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
dependencies = [
"windows-targets 0.52.6",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets 0.52.6",
]
[[package]]
name = "windows-targets"
2023-08-28 18:26:11 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
[[package]]
name = "windows-targets"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
dependencies = [
"windows_aarch64_gnullvm 0.52.6",
"windows_aarch64_msvc 0.52.6",
"windows_i686_gnu 0.52.6",
"windows_i686_gnullvm",
"windows_i686_msvc 0.52.6",
"windows_x86_64_gnu 0.52.6",
"windows_x86_64_gnullvm 0.52.6",
"windows_x86_64_msvc 0.52.6",
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-08-28 18:26:11 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
[[package]]
name = "windows_aarch64_msvc"
2023-08-28 18:26:11 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
[[package]]
name = "windows_i686_gnu"
2023-08-28 18:26:11 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
[[package]]
name = "windows_i686_msvc"
2023-08-28 18:26:11 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
[[package]]
name = "windows_x86_64_gnu"
2023-08-28 18:26:11 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-28 18:26:11 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
[[package]]
name = "windows_x86_64_msvc"
2023-08-28 18:26:11 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2020-08-27 00:11:50 +02:00
[[package]]
name = "winreg"
2023-08-28 18:26:11 +02:00
version = "0.50.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
2020-08-27 00:11:50 +02:00
dependencies = [
2023-08-28 18:26:11 +02:00
"cfg-if 1.0.0",
"windows-sys 0.48.0",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "xml5ever"
2023-08-28 18:26:11 +02:00
version = "0.17.0"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-28 18:26:11 +02:00
checksum = "4034e1d05af98b51ad7214527730626f019682d797ba38b51689212118d8e650"
2020-08-27 00:11:50 +02:00
dependencies = [
"log",
"mac",
"markup5ever",
2020-08-27 00:11:50 +02:00
]
[[package]]
name = "zerocopy"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.72",
]
2020-08-27 00:11:50 +02:00
[[package]]
name = "zstd"
version = "0.13.2"
2020-08-27 00:11:50 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
2021-12-03 17:29:54 +01:00
dependencies = [
"zstd-safe",
2021-12-03 17:29:54 +01:00
]
2022-02-10 11:38:45 +01:00
[[package]]
name = "zstd-safe"
version = "7.2.0"
2022-02-10 11:38:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa556e971e7b568dc775c136fc9de8c779b1c2fc3a63defaafadffdbd3181afa"
2022-02-10 11:38:45 +01:00
dependencies = [
"zstd-sys",
]
[[package]]
name = "zstd-sys"
version = "2.0.12+zstd.1.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13"
dependencies = [
"cc",
"pkg-config",
2022-02-10 11:38:45 +01:00
]