quoter/Cargo.lock

4111 lines
98 KiB
Plaintext
Raw Normal View History

2023-09-27 23:08:48 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2024-10-22 17:35:51 +00:00
[[package]]
name = "actix"
version = "0.13.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de7fa236829ba0841304542f7614c42b80fca007455315c45c785ccfa873a85b"
dependencies = [
"actix-macros",
"actix-rt",
"actix_derive",
"bitflags 2.6.0",
"bytes",
"crossbeam-channel",
"futures-core",
"futures-sink",
"futures-task",
"futures-util",
"log",
"once_cell",
"parking_lot",
"pin-project-lite",
"smallvec",
"tokio",
"tokio-util",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "actix-codec"
2024-06-06 10:33:25 +00:00
version = "0.5.2"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
2023-09-27 23:08:48 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"bitflags 2.6.0",
2023-09-27 23:08:48 +00:00
"bytes",
"futures-core",
"futures-sink",
"memchr",
"pin-project-lite",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "actix-http"
2024-09-23 13:32:54 +00:00
version = "3.9.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4"
2023-09-27 23:08:48 +00:00
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
"ahash",
2024-08-30 18:05:51 +00:00
"base64 0.22.1",
2024-09-23 13:32:54 +00:00
"bitflags 2.6.0",
2023-09-27 23:08:48 +00:00
"brotli",
"bytes",
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
2024-04-08 16:52:41 +00:00
"h2 0.3.26",
2024-06-06 10:33:25 +00:00
"http 0.2.12",
2023-09-27 23:08:48 +00:00
"httparse",
"httpdate",
"itoa",
"language-tags",
"local-channel",
"mime",
"percent-encoding",
"pin-project-lite",
"rand",
"sha1",
"smallvec",
"tokio",
"tokio-util",
"tracing",
"zstd",
]
[[package]]
name = "actix-macros"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
dependencies = [
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2023-09-27 23:08:48 +00:00
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "actix-multipart"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5118a26dee7e34e894f7e85aa0ee5080ae4c18bf03c0e30d49a80e418f00a53"
dependencies = [
"actix-multipart-derive",
"actix-utils",
"actix-web",
"derive_more",
"futures-core",
"futures-util",
"httparse",
"local-waker",
"log",
"memchr",
"mime",
"rand",
"serde",
"serde_json",
"serde_plain",
"tempfile",
"tokio",
]
[[package]]
name = "actix-multipart-derive"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e11eb847f49a700678ea2fa73daeb3208061afa2b9d1a8527c03390f4c4a1c6b"
dependencies = [
"darling",
"parse-size",
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2024-08-31 00:32:37 +00:00
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "actix-router"
2024-06-06 10:33:25 +00:00
version = "0.5.3"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
2023-09-27 23:08:48 +00:00
dependencies = [
"bytestring",
2024-06-06 10:33:25 +00:00
"cfg-if",
"http 0.2.12",
2023-09-27 23:08:48 +00:00
"regex",
2024-06-06 10:33:25 +00:00
"regex-lite",
2023-09-27 23:08:48 +00:00
"serde",
"tracing",
]
[[package]]
name = "actix-rt"
2024-09-23 13:32:54 +00:00
version = "2.10.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
2023-09-27 23:08:48 +00:00
dependencies = [
"futures-core",
"tokio",
]
[[package]]
name = "actix-server"
2024-09-23 13:32:54 +00:00
version = "2.5.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894"
2023-09-27 23:08:48 +00:00
dependencies = [
"actix-rt",
"actix-service",
"actix-utils",
"futures-core",
"futures-util",
"mio",
2024-06-06 10:33:25 +00:00
"socket2",
2023-09-27 23:08:48 +00:00
"tokio",
"tracing",
]
[[package]]
name = "actix-service"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
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",
]
[[package]]
name = "actix-web"
2024-09-23 13:32:54 +00:00
version = "4.9.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38"
2023-09-27 23:08:48 +00:00
dependencies = [
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-utils",
"actix-web-codegen",
"ahash",
"bytes",
"bytestring",
"cfg-if",
"cookie",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
2024-09-23 13:32:54 +00:00
"impl-more",
2023-09-27 23:08:48 +00:00
"itoa",
"language-tags",
"log",
"mime",
"once_cell",
"pin-project-lite",
"regex",
2024-06-06 10:33:25 +00:00
"regex-lite",
2023-09-27 23:08:48 +00:00
"serde",
"serde_json",
"serde_urlencoded",
"smallvec",
2024-06-06 10:33:25 +00:00
"socket2",
2023-09-27 23:08:48 +00:00
"time",
"url",
]
[[package]]
name = "actix-web-codegen"
2024-09-23 13:32:54 +00:00
version = "4.3.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
2023-09-27 23:08:48 +00:00
dependencies = [
"actix-router",
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2023-09-27 23:08:48 +00:00
]
2024-10-22 17:35:51 +00:00
[[package]]
name = "actix_derive"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6ac1e58cded18cb28ddc17143c4dea5345b3ad575e14f32f66e4054a56eb271"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "addr2line"
2024-09-23 13:32:54 +00:00
version = "0.24.1"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375"
2023-09-27 23:08:48 +00:00
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2024-09-23 13:32:54 +00:00
[[package]]
name = "adler2"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
2023-09-27 23:08:48 +00:00
[[package]]
name = "ahash"
2024-06-06 10:33:25 +00:00
version = "0.8.11"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
2023-09-27 23:08:48 +00:00
dependencies = [
"cfg-if",
"getrandom",
"once_cell",
"version_check",
2024-06-06 10:33:25 +00:00
"zerocopy",
2023-09-27 23:08:48 +00:00
]
[[package]]
name = "aho-corasick"
2024-06-06 10:33:25 +00:00
version = "1.1.3"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
2023-09-27 23:08:48 +00:00
dependencies = [
"memchr",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "aligned-vec"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1"
2023-09-27 23:08:48 +00: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",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "allocator-api2"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
2024-10-02 15:56:52 +00:00
[[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",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "anyhow"
2024-09-23 13:32:54 +00:00
version = "1.0.89"
2024-08-31 00:32:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6"
2024-08-31 00:32:37 +00:00
[[package]]
name = "arbitrary"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
2024-08-30 18:05:51 +00:00
[[package]]
name = "arc-swap"
version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
2024-08-31 00:32:37 +00:00
[[package]]
name = "arg_enum_proc_macro"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2024-08-31 00:32:37 +00:00
]
[[package]]
name = "arrayvec"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
2023-09-27 23:08:48 +00:00
[[package]]
name = "async-trait"
2024-09-23 13:32:54 +00:00
version = "0.1.82"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "a27b8a3a6e1a44fa4c8baf1f653e4172e81486d4941f2237e20dc2d0cf4ddff1"
2023-09-27 23:08:48 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2023-09-27 23:08:48 +00:00
]
2024-06-06 10:33:25 +00:00
[[package]]
name = "atomic-waker"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
2023-09-27 23:08:48 +00:00
[[package]]
name = "autocfg"
2024-06-06 10:33:25 +00:00
version = "1.3.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
2023-09-27 23:08:48 +00:00
2024-08-31 00:32:37 +00:00
[[package]]
name = "av1-grain"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf"
dependencies = [
"anyhow",
"arrayvec",
"log",
"nom",
"num-rational",
"v_frame",
]
[[package]]
name = "avif-serialize"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "876c75a42f6364451a033496a14c44bffe41f5f4a8236f697391f11024e596d2"
dependencies = [
"arrayvec",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "aws-config"
2024-09-23 13:32:54 +00:00
version = "1.5.6"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "848d7b9b605720989929279fa644ce8f244d0ce3146fcca5b70e4eb7b3c020fc"
2024-08-30 18:05:51 +00:00
dependencies = [
"aws-credential-types",
"aws-runtime",
"aws-sdk-sso",
"aws-sdk-ssooidc",
"aws-sdk-sts",
"aws-smithy-async",
"aws-smithy-http",
"aws-smithy-json",
"aws-smithy-runtime",
"aws-smithy-runtime-api",
"aws-smithy-types",
"aws-types",
"bytes",
"fastrand",
"hex",
"http 0.2.12",
"ring",
"time",
"tokio",
"tracing",
"url",
"zeroize",
]
[[package]]
name = "aws-credential-types"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60e8f6b615cb5fc60a98132268508ad104310f0cfb25a1c22eee76efdf9154da"
dependencies = [
"aws-smithy-async",
"aws-smithy-runtime-api",
"aws-smithy-types",
"zeroize",
]
[[package]]
name = "aws-runtime"
2024-09-23 13:32:54 +00:00
version = "1.4.3"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "a10d5c055aa540164d9561a0e2e74ad30f0dcf7393c3a92f6733ddf9c5762468"
2024-08-30 18:05:51 +00:00
dependencies = [
"aws-credential-types",
"aws-sigv4",
"aws-smithy-async",
"aws-smithy-eventstream",
"aws-smithy-http",
"aws-smithy-runtime",
"aws-smithy-runtime-api",
"aws-smithy-types",
"aws-types",
"bytes",
"fastrand",
"http 0.2.12",
"http-body 0.4.6",
"once_cell",
"percent-encoding",
"pin-project-lite",
"tracing",
"uuid",
]
[[package]]
name = "aws-sdk-s3"
2024-09-23 13:32:54 +00:00
version = "1.51.0"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "c09fd4b5c7ed75f52b913b4f3ff0501dae7f8cb9125f6d45db4553980cbc0528"
2024-08-30 18:05:51 +00:00
dependencies = [
"ahash",
"aws-credential-types",
"aws-runtime",
"aws-sigv4",
"aws-smithy-async",
"aws-smithy-checksums",
"aws-smithy-eventstream",
"aws-smithy-http",
"aws-smithy-json",
"aws-smithy-runtime",
"aws-smithy-runtime-api",
"aws-smithy-types",
"aws-smithy-xml",
"aws-types",
"bytes",
"fastrand",
"hex",
"hmac",
"http 0.2.12",
"http-body 0.4.6",
"lru",
"once_cell",
"percent-encoding",
"regex-lite",
"sha2",
"tracing",
"url",
]
[[package]]
name = "aws-sdk-sso"
2024-09-23 13:32:54 +00:00
version = "1.43.0"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "70a9d27ed1c12b1140c47daf1bc541606c43fdafd918c4797d520db0043ceef2"
2024-08-30 18:05:51 +00:00
dependencies = [
"aws-credential-types",
"aws-runtime",
"aws-smithy-async",
"aws-smithy-http",
"aws-smithy-json",
"aws-smithy-runtime",
"aws-smithy-runtime-api",
"aws-smithy-types",
"aws-types",
"bytes",
"http 0.2.12",
"once_cell",
"regex-lite",
"tracing",
]
[[package]]
name = "aws-sdk-ssooidc"
2024-09-23 13:32:54 +00:00
version = "1.44.0"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "44514a6ca967686cde1e2a1b81df6ef1883d0e3e570da8d8bc5c491dcb6fc29b"
2024-08-30 18:05:51 +00:00
dependencies = [
"aws-credential-types",
"aws-runtime",
"aws-smithy-async",
"aws-smithy-http",
"aws-smithy-json",
"aws-smithy-runtime",
"aws-smithy-runtime-api",
"aws-smithy-types",
"aws-types",
"bytes",
"http 0.2.12",
"once_cell",
"regex-lite",
"tracing",
]
[[package]]
name = "aws-sdk-sts"
2024-09-23 13:32:54 +00:00
version = "1.43.0"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "cd7a4d279762a35b9df97209f6808b95d4fe78547fe2316b4d200a0283960c5a"
2024-08-30 18:05:51 +00:00
dependencies = [
"aws-credential-types",
"aws-runtime",
"aws-smithy-async",
"aws-smithy-http",
"aws-smithy-json",
"aws-smithy-query",
"aws-smithy-runtime",
"aws-smithy-runtime-api",
"aws-smithy-types",
"aws-smithy-xml",
"aws-types",
"http 0.2.12",
"once_cell",
"regex-lite",
"tracing",
]
[[package]]
name = "aws-sigv4"
2024-09-23 13:32:54 +00:00
version = "1.2.4"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "cc8db6904450bafe7473c6ca9123f88cc11089e41a025408f992db4e22d3be68"
2024-08-30 18:05:51 +00:00
dependencies = [
"aws-credential-types",
"aws-smithy-eventstream",
"aws-smithy-http",
"aws-smithy-runtime-api",
"aws-smithy-types",
"bytes",
"crypto-bigint 0.5.5",
"form_urlencoded",
"hex",
"hmac",
"http 0.2.12",
"http 1.1.0",
"once_cell",
"p256",
"percent-encoding",
"ring",
"sha2",
"subtle",
"time",
"tracing",
"zeroize",
]
[[package]]
name = "aws-smithy-async"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62220bc6e97f946ddd51b5f1361f78996e704677afc518a4ff66b7a72ea1378c"
dependencies = [
"futures-util",
"pin-project-lite",
"tokio",
]
[[package]]
name = "aws-smithy-checksums"
version = "0.60.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "598b1689d001c4d4dc3cb386adb07d37786783aee3ac4b324bcadac116bf3d23"
dependencies = [
"aws-smithy-http",
"aws-smithy-types",
"bytes",
"crc32c",
"crc32fast",
"hex",
"http 0.2.12",
"http-body 0.4.6",
"md-5",
"pin-project-lite",
"sha1",
"sha2",
"tracing",
]
[[package]]
name = "aws-smithy-eventstream"
2024-09-23 13:32:54 +00:00
version = "0.60.5"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "cef7d0a272725f87e51ba2bf89f8c21e4df61b9e49ae1ac367a6d69916ef7c90"
2024-08-30 18:05:51 +00:00
dependencies = [
"aws-smithy-types",
"bytes",
"crc32fast",
]
[[package]]
name = "aws-smithy-http"
2024-09-23 13:32:54 +00:00
version = "0.60.11"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "5c8bc3e8fdc6b8d07d976e301c02fe553f72a39b7a9fea820e023268467d7ab6"
2024-08-30 18:05:51 +00:00
dependencies = [
"aws-smithy-eventstream",
"aws-smithy-runtime-api",
"aws-smithy-types",
"bytes",
"bytes-utils",
"futures-core",
"http 0.2.12",
"http-body 0.4.6",
"once_cell",
"percent-encoding",
"pin-project-lite",
"pin-utils",
"tracing",
]
[[package]]
name = "aws-smithy-json"
version = "0.60.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4683df9469ef09468dad3473d129960119a0d3593617542b7d52086c8486f2d6"
dependencies = [
"aws-smithy-types",
]
[[package]]
name = "aws-smithy-query"
version = "0.60.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2fbd61ceb3fe8a1cb7352e42689cec5335833cd9f94103a61e98f9bb61c64bb"
dependencies = [
"aws-smithy-types",
"urlencoding",
]
[[package]]
name = "aws-smithy-runtime"
version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1ce695746394772e7000b39fe073095db6d45a862d0767dd5ad0ac0d7f8eb87"
dependencies = [
"aws-smithy-async",
"aws-smithy-http",
"aws-smithy-runtime-api",
"aws-smithy-types",
"bytes",
"fastrand",
"h2 0.3.26",
"http 0.2.12",
"http-body 0.4.6",
2024-09-23 13:32:54 +00:00
"http-body 1.0.1",
2024-08-30 18:05:51 +00:00
"httparse",
"hyper 0.14.30",
2024-09-23 13:32:54 +00:00
"hyper-rustls 0.24.2",
2024-08-30 18:05:51 +00:00
"once_cell",
"pin-project-lite",
"pin-utils",
2024-09-23 13:32:54 +00:00
"rustls 0.21.12",
2024-08-30 18:05:51 +00:00
"tokio",
"tracing",
]
[[package]]
name = "aws-smithy-runtime-api"
version = "1.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e086682a53d3aa241192aa110fa8dfce98f2f5ac2ead0de84d41582c7e8fdb96"
dependencies = [
"aws-smithy-async",
"aws-smithy-types",
"bytes",
"http 0.2.12",
"http 1.1.0",
"pin-project-lite",
"tokio",
"tracing",
"zeroize",
]
[[package]]
name = "aws-smithy-types"
2024-09-23 13:32:54 +00:00
version = "1.2.6"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "03701449087215b5369c7ea17fef0dd5d24cb93439ec5af0c7615f58c3f22605"
2024-08-30 18:05:51 +00:00
dependencies = [
"base64-simd",
"bytes",
"bytes-utils",
"futures-core",
"http 0.2.12",
"http 1.1.0",
"http-body 0.4.6",
2024-09-23 13:32:54 +00:00
"http-body 1.0.1",
2024-08-30 18:05:51 +00:00
"http-body-util",
"itoa",
"num-integer",
"pin-project-lite",
"pin-utils",
"ryu",
"serde",
"time",
"tokio",
"tokio-util",
]
[[package]]
name = "aws-smithy-xml"
2024-09-23 13:32:54 +00:00
version = "0.60.9"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "ab0b0166827aa700d3dc519f72f8b3a91c35d0b8d042dc5d643a91e6f80648fc"
2024-08-30 18:05:51 +00:00
dependencies = [
"xmlparser",
]
[[package]]
name = "aws-types"
version = "1.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5221b91b3e441e6675310829fd8984801b772cb1546ef6c0e54dec9f1ac13fef"
dependencies = [
"aws-credential-types",
"aws-smithy-async",
"aws-smithy-runtime-api",
"aws-smithy-types",
"rustc_version",
"tracing",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "backtrace"
2024-09-23 13:32:54 +00:00
version = "0.3.74"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
2023-09-27 23:08:48 +00:00
dependencies = [
"addr2line",
"cfg-if",
"libc",
2024-09-23 13:32:54 +00:00
"miniz_oxide 0.8.0",
2023-09-27 23:08:48 +00:00
"object",
"rustc-demangle",
2024-09-23 13:32:54 +00:00
"windows-targets",
2023-09-27 23:08:48 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "base16ct"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce"
[[package]]
name = "base64"
version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
2023-09-27 23:08:48 +00:00
[[package]]
name = "base64"
2024-06-06 10:33:25 +00:00
version = "0.22.1"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
2024-04-08 16:52:41 +00:00
2024-08-30 18:05:51 +00:00
[[package]]
name = "base64-simd"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
dependencies = [
"outref",
"vsimd",
]
[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
name = "bit_field"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
2023-09-27 23:08:48 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
2024-09-23 13:32:54 +00:00
version = "2.6.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
2023-09-27 23:08:48 +00:00
2024-08-31 00:32:37 +00:00
[[package]]
name = "bitstream-io"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b81e1519b0d82120d2fd469d5bfb2919a9361c48b02d82d04befc1cdd2002452"
2023-09-27 23:08:48 +00:00
[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
[[package]]
name = "brotli"
2024-06-06 10:33:25 +00:00
version = "6.0.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
2023-09-27 23:08:48 +00:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
2024-06-06 10:33:25 +00:00
version = "4.0.1"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
2023-09-27 23:08:48 +00:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "built"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "236e6289eda5a812bc6b53c3b024039382a2895fbbeef2d748b2931546d392c4"
2023-10-02 09:22:04 +00:00
[[package]]
name = "bumpalo"
2024-06-06 10:33:25 +00:00
version = "3.16.0"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
2023-10-02 09:22:04 +00:00
2024-08-30 18:05:51 +00:00
[[package]]
name = "bytemuck"
2024-09-23 13:32:54 +00:00
version = "1.18.0"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae"
[[package]]
name = "byteorder"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2024-08-30 18:05:51 +00:00
[[package]]
2024-08-31 00:32:37 +00:00
name = "byteorder-lite"
version = "0.1.0"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-31 00:32:37 +00:00
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
2024-08-30 18:05:51 +00:00
2023-09-27 23:08:48 +00:00
[[package]]
name = "bytes"
2024-09-23 13:32:54 +00:00
version = "1.7.2"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3"
2023-09-27 23:08:48 +00:00
2024-08-30 18:05:51 +00:00
[[package]]
name = "bytes-utils"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
dependencies = [
"bytes",
"either",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "bytestring"
2024-06-06 10:33:25 +00:00
version = "1.3.1"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "74d80203ea6b29df88012294f62733de21cfeab47f17b41af3a38bc30a03ee72"
2023-09-27 23:08:48 +00:00
dependencies = [
"bytes",
]
[[package]]
name = "cc"
2024-09-23 13:32:54 +00:00
version = "1.1.21"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0"
2023-09-27 23:08:48 +00:00
dependencies = [
"jobserver",
"libc",
2024-09-23 13:32:54 +00:00
"shlex",
2023-09-27 23:08:48 +00:00
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "cfg-expr"
version = "0.15.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
dependencies = [
"smallvec",
"target-lexicon",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2024-08-30 18:05:51 +00:00
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
2024-10-02 15:56:52 +00:00
[[package]]
name = "colorchoice"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
2023-09-27 23:08:48 +00:00
[[package]]
name = "combine"
2024-06-06 10:33:25 +00:00
version = "4.6.7"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
2023-09-27 23:08:48 +00:00
dependencies = [
"bytes",
"futures-core",
"memchr",
"pin-project-lite",
"tokio",
"tokio-util",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "const-oid"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
2023-09-27 23:08:48 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "cookie"
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
dependencies = [
"percent-encoding",
"time",
"version_check",
]
2023-10-02 09:22:04 +00:00
[[package]]
name = "core-foundation"
2024-06-06 10:33:25 +00:00
version = "0.9.4"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
2023-10-02 09:22:04 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2024-09-23 13:32:54 +00:00
version = "0.8.7"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
2023-10-02 09:22:04 +00:00
2023-09-27 23:08:48 +00:00
[[package]]
name = "cpufeatures"
2024-09-23 13:32:54 +00:00
version = "0.2.14"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0"
2023-09-27 23:08:48 +00:00
dependencies = [
"libc",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "crc32c"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47"
dependencies = [
"rustc_version",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "crc32fast"
2024-06-06 10:33:25 +00:00
version = "1.4.2"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
2023-09-27 23:08:48 +00:00
dependencies = [
"cfg-if",
]
2024-10-22 17:35:51 +00:00
[[package]]
name = "crossbeam-channel"
version = "0.5.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
dependencies = [
"crossbeam-utils",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "crossbeam-deque"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
version = "0.9.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
version = "0.8.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
[[package]]
name = "crypto-bigint"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef"
dependencies = [
"generic-array",
"rand_core",
"subtle",
"zeroize",
]
[[package]]
name = "crypto-bigint"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
dependencies = [
"rand_core",
"subtle",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
2024-08-31 00:32:37 +00:00
[[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",
2024-09-23 13:32:54 +00:00
"syn",
2024-08-31 00:32:37 +00:00
]
[[package]]
name = "darling_macro"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
dependencies = [
"darling_core",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2024-08-31 00:32:37 +00:00
]
2024-04-08 07:17:14 +00:00
[[package]]
name = "debugid"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
dependencies = [
"serde",
"uuid",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "der"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"
dependencies = [
"const-oid",
"zeroize",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "deranged"
2024-06-06 10:33:25 +00:00
version = "0.3.11"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
dependencies = [
"powerfmt",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "derive_more"
2024-09-23 13:32:54 +00:00
version = "0.99.18"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
2023-09-27 23:08:48 +00:00
dependencies = [
"convert_case",
"proc-macro2",
"quote",
"rustc_version",
2024-09-23 13:32:54 +00:00
"syn",
2023-09-27 23:08:48 +00:00
]
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"crypto-common",
2024-08-30 18:05:51 +00:00
"subtle",
2023-09-27 23:08:48 +00:00
]
[[package]]
2024-08-30 18:05:51 +00:00
name = "discoursio-quoter"
2024-10-23 09:34:34 +00:00
version = "0.0.9"
2023-09-27 23:08:48 +00:00
dependencies = [
2024-10-22 17:35:51 +00:00
"actix",
2024-08-31 00:32:37 +00:00
"actix-multipart",
2023-09-27 23:08:48 +00:00
"actix-web",
2024-08-30 18:05:51 +00:00
"aws-config",
"aws-sdk-s3",
2024-10-02 15:56:52 +00:00
"env_logger",
2023-10-02 09:22:04 +00:00
"futures",
2024-08-30 18:05:51 +00:00
"image",
2024-10-02 15:38:44 +00:00
"log",
2024-08-30 18:05:51 +00:00
"mime_guess",
2023-09-27 23:08:48 +00:00
"redis",
2024-06-06 10:33:25 +00:00
"reqwest",
2024-04-08 07:17:14 +00:00
"sentry",
"sentry-actix",
2023-09-27 23:08:48 +00:00
"serde",
"serde_json",
"tokio",
2023-10-19 14:43:00 +00:00
"uuid",
2023-09-27 23:08:48 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "ecdsa"
version = "0.14.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c"
dependencies = [
"der",
"elliptic-curve",
"rfc6979",
"signature",
]
[[package]]
name = "either"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
[[package]]
name = "elliptic-curve"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3"
dependencies = [
"base16ct",
"crypto-bigint 0.4.9",
"der",
"digest",
"ff",
"generic-array",
"group",
"pkcs8",
"rand_core",
"sec1",
"subtle",
"zeroize",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "encoding_rs"
2024-06-06 10:33:25 +00:00
version = "0.8.34"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
2023-09-27 23:08:48 +00:00
dependencies = [
"cfg-if",
]
2024-10-02 15:56:52 +00:00
[[package]]
name = "env_filter"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab"
dependencies = [
"log",
"regex",
]
[[package]]
name = "env_logger"
version = "0.11.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d"
dependencies = [
"anstream",
"anstyle",
"env_filter",
"humantime",
"log",
]
2024-04-08 16:52:41 +00:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-10-02 09:22:04 +00:00
[[package]]
name = "errno"
2024-06-06 10:33:25 +00:00
version = "0.3.9"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
2023-10-02 09:22:04 +00:00
dependencies = [
"libc",
2024-06-06 10:33:25 +00:00
"windows-sys 0.52.0",
2023-10-02 09:22:04 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "exr"
version = "1.72.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4"
dependencies = [
"bit_field",
"flume",
"half",
"lebe",
2024-09-23 13:32:54 +00:00
"miniz_oxide 0.7.4",
2024-08-30 18:05:51 +00:00
"rayon-core",
"smallvec",
"zune-inflate",
]
2023-10-02 09:22:04 +00:00
[[package]]
name = "fastrand"
2024-09-23 13:32:54 +00:00
version = "2.1.1"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
2023-10-02 09:22:04 +00:00
2024-08-30 18:05:51 +00:00
[[package]]
name = "fdeflate"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
dependencies = [
"simd-adler32",
]
[[package]]
name = "ff"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
dependencies = [
"rand_core",
"subtle",
]
2024-04-08 07:17:14 +00:00
[[package]]
name = "findshlibs"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
dependencies = [
"cc",
"lazy_static",
"libc",
"winapi",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "flate2"
2024-09-23 13:32:54 +00:00
version = "1.0.33"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "324a1be68054ef05ad64b861cc9eaf1d623d2d8cb25b4bf2cb9cdd902b4bf253"
2023-09-27 23:08:48 +00:00
dependencies = [
"crc32fast",
2024-09-23 13:32:54 +00:00
"miniz_oxide 0.8.0",
2023-09-27 23:08:48 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "flume"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
dependencies = [
"spin",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2023-10-02 09:22:04 +00: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"
2023-09-27 23:08:48 +00:00
[[package]]
name = "form_urlencoded"
2024-06-06 10:33:25 +00:00
version = "1.2.1"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
2023-09-27 23:08:48 +00:00
dependencies = [
"percent-encoding",
]
2023-10-02 09:22:04 +00:00
[[package]]
name = "futures"
2024-04-08 16:52:41 +00:00
version = "0.3.30"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-08 16:52:41 +00:00
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
2023-10-02 09:22:04 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2024-04-08 16:52:41 +00:00
version = "0.3.30"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-08 16:52:41 +00:00
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
2023-10-02 09:22:04 +00:00
dependencies = [
"futures-core",
"futures-sink",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "futures-core"
2024-04-08 16:52:41 +00:00
version = "0.3.30"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-08 16:52:41 +00:00
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
2023-09-27 23:08:48 +00:00
2023-10-02 09:22:04 +00:00
[[package]]
name = "futures-executor"
2024-04-08 16:52:41 +00:00
version = "0.3.30"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-08 16:52:41 +00:00
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
2023-10-02 09:22:04 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2024-04-08 16:52:41 +00:00
version = "0.3.30"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-08 16:52:41 +00:00
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
2023-10-02 09:22:04 +00:00
[[package]]
name = "futures-macro"
2024-04-08 16:52:41 +00:00
version = "0.3.30"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-08 16:52:41 +00:00
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
2023-10-02 09:22:04 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2023-10-02 09:22:04 +00:00
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "futures-sink"
2024-04-08 16:52:41 +00:00
version = "0.3.30"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-08 16:52:41 +00:00
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
2023-09-27 23:08:48 +00:00
[[package]]
name = "futures-task"
2024-04-08 16:52:41 +00:00
version = "0.3.30"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-08 16:52:41 +00:00
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
2023-09-27 23:08:48 +00:00
[[package]]
name = "futures-util"
2024-04-08 16:52:41 +00:00
version = "0.3.30"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-08 16:52:41 +00:00
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
2023-09-27 23:08:48 +00:00
dependencies = [
2023-10-02 09:22:04 +00:00
"futures-channel",
2023-09-27 23:08:48 +00:00
"futures-core",
2023-10-02 09:22:04 +00:00
"futures-io",
"futures-macro",
2023-09-27 23:08:48 +00:00
"futures-sink",
"futures-task",
2023-10-02 09:22:04 +00:00
"memchr",
2023-09-27 23:08:48 +00:00
"pin-project-lite",
"pin-utils",
2023-10-02 09:22:04 +00:00
"slab",
2023-09-27 23:08:48 +00:00
]
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2024-06-06 10:33:25 +00:00
version = "0.2.15"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2023-09-27 23:08:48 +00:00
dependencies = [
"cfg-if",
"libc",
"wasi",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "gif"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2"
dependencies = [
"color_quant",
"weezl",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "gimli"
2024-09-23 13:32:54 +00:00
version = "0.31.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64"
2023-09-27 23:08:48 +00:00
2024-08-30 18:05:51 +00:00
[[package]]
name = "group"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
dependencies = [
"ff",
"rand_core",
"subtle",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "h2"
2024-04-08 16:52:41 +00:00
version = "0.3.26"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-08 16:52:41 +00:00
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
2023-09-27 23:08:48 +00:00
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
2024-06-06 10:33:25 +00:00
"http 0.2.12",
2024-04-08 16:52:41 +00:00
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "h2"
2024-09-23 13:32:54 +00:00
version = "0.4.6"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205"
2024-04-08 16:52:41 +00:00
dependencies = [
2024-06-06 10:33:25 +00:00
"atomic-waker",
2024-04-08 16:52:41 +00:00
"bytes",
"fnv",
"futures-core",
"futures-sink",
"http 1.1.0",
2023-09-27 23:08:48 +00:00
"indexmap",
"slab",
"tokio",
"tokio-util",
"tracing",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "half"
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
dependencies = [
"cfg-if",
"crunchy",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "hashbrown"
2024-06-06 10:33:25 +00:00
version = "0.14.5"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2024-08-30 18:05:51 +00:00
dependencies = [
"ahash",
"allocator-api2",
]
2023-09-27 23:08:48 +00:00
2024-08-31 00:32:37 +00:00
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2023-09-27 23:08:48 +00:00
[[package]]
name = "hermit-abi"
2024-06-06 10:33:25 +00:00
version = "0.3.9"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2023-09-27 23:08:48 +00:00
2024-04-08 07:17:14 +00:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2024-08-30 18:05:51 +00:00
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest",
]
2024-04-08 07:17:14 +00:00
[[package]]
name = "hostname"
2024-06-06 10:33:25 +00:00
version = "0.4.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "f9c7c7c8ac16c798734b8a24560c1362120597c40d5e1459f09498f8f6c8f2ba"
2024-04-08 07:17:14 +00:00
dependencies = [
2024-06-06 10:33:25 +00:00
"cfg-if",
2024-04-08 07:17:14 +00:00
"libc",
2024-06-06 10:33:25 +00:00
"windows",
2024-04-08 07:17:14 +00:00
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "http"
2024-06-06 10:33:25 +00:00
version = "0.2.12"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
2023-09-27 23:08:48 +00:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
2024-04-08 16:52:41 +00:00
[[package]]
name = "http"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
dependencies = [
"bytes",
"fnv",
"itoa",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "http-body"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
dependencies = [
"bytes",
"http 0.2.12",
"pin-project-lite",
]
2024-04-08 16:52:41 +00:00
[[package]]
name = "http-body"
2024-09-23 13:32:54 +00:00
version = "1.0.1"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
2024-04-08 16:52:41 +00:00
dependencies = [
"bytes",
"http 1.1.0",
]
[[package]]
name = "http-body-util"
2024-09-23 13:32:54 +00:00
version = "0.1.2"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
2024-04-08 16:52:41 +00:00
dependencies = [
"bytes",
2024-09-23 13:32:54 +00:00
"futures-util",
2024-04-08 16:52:41 +00:00
"http 1.1.0",
2024-09-23 13:32:54 +00:00
"http-body 1.0.1",
2024-08-30 18:05:51 +00:00
"pin-project-lite",
]
[[package]]
name = "httparse"
2024-09-23 13:32:54 +00:00
version = "1.9.4"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
2024-08-30 18:05:51 +00:00
[[package]]
name = "httpdate"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2024-10-02 15:56:52 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2024-08-30 18:05:51 +00:00
[[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 0.3.26",
"http 0.2.12",
"http-body 0.4.6",
"httparse",
"httpdate",
"itoa",
2023-10-02 09:22:04 +00:00
"pin-project-lite",
2024-08-30 18:05:51 +00:00
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
2023-10-02 09:22:04 +00:00
]
[[package]]
name = "hyper"
2024-09-23 13:32:54 +00:00
version = "1.4.1"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05"
2024-04-08 16:52:41 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-util",
2024-09-23 13:32:54 +00:00
"h2 0.4.6",
2024-04-08 16:52:41 +00:00
"http 1.1.0",
2024-09-23 13:32:54 +00:00
"http-body 1.0.1",
2024-04-08 16:52:41 +00:00
"httparse",
"itoa",
"pin-project-lite",
"smallvec",
"tokio",
"want",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "hyper-rustls"
version = "0.24.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
dependencies = [
"futures-util",
"http 0.2.12",
"hyper 0.14.30",
"log",
2024-09-23 13:32:54 +00:00
"rustls 0.21.12",
2024-08-30 18:05:51 +00:00
"rustls-native-certs",
"tokio",
2024-09-23 13:32:54 +00:00
"tokio-rustls 0.24.1",
]
[[package]]
name = "hyper-rustls"
version = "0.27.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
dependencies = [
"futures-util",
"http 1.1.0",
"hyper 1.4.1",
"hyper-util",
"rustls 0.23.13",
"rustls-pki-types",
"tokio",
"tokio-rustls 0.26.0",
"tower-service",
2024-08-30 18:05:51 +00:00
]
2024-04-08 16:52:41 +00:00
[[package]]
name = "hyper-tls"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
dependencies = [
"bytes",
"http-body-util",
2024-09-23 13:32:54 +00:00
"hyper 1.4.1",
2024-04-08 16:52:41 +00:00
"hyper-util",
2023-10-02 09:22:04 +00:00
"native-tls",
"tokio",
"tokio-native-tls",
2024-04-08 16:52:41 +00:00
"tower-service",
]
[[package]]
name = "hyper-util"
2024-09-23 13:32:54 +00:00
version = "0.1.8"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "da62f120a8a37763efb0cf8fdf264b884c7b8b9ac8660b900c8661030c00e6ba"
2024-04-08 16:52:41 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"http 1.1.0",
2024-09-23 13:32:54 +00:00
"http-body 1.0.1",
"hyper 1.4.1",
2024-04-08 16:52:41 +00:00
"pin-project-lite",
2024-06-06 10:33:25 +00:00
"socket2",
2024-04-08 16:52:41 +00:00
"tokio",
"tower",
"tower-service",
"tracing",
2023-10-02 09:22:04 +00:00
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2023-09-27 23:08:48 +00:00
[[package]]
name = "idna"
2024-06-06 10:33:25 +00:00
version = "0.5.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
2023-09-27 23:08:48 +00:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "image"
2024-08-31 00:32:37 +00:00
version = "0.25.2"
2024-08-30 18:05:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-31 00:32:37 +00:00
checksum = "99314c8a2152b8ddb211f924cdae532d8c5e4c8bb54728e12fff1b0cd5963a10"
2024-08-30 18:05:51 +00:00
dependencies = [
"bytemuck",
2024-08-31 00:32:37 +00:00
"byteorder-lite",
2024-08-30 18:05:51 +00:00
"color_quant",
"exr",
"gif",
2024-08-31 00:32:37 +00:00
"image-webp",
2024-08-30 18:05:51 +00:00
"num-traits",
"png",
"qoi",
2024-08-31 00:32:37 +00:00
"ravif",
"rayon",
"rgb",
2024-08-30 18:05:51 +00:00
"tiff",
2024-08-31 00:32:37 +00:00
"zune-core",
"zune-jpeg",
2024-08-30 18:05:51 +00:00
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "image-webp"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f79afb8cbee2ef20f59ccd477a218c12a93943d075b492015ecb1bb81f8ee904"
dependencies = [
"byteorder-lite",
"quick-error",
]
[[package]]
name = "imgref"
version = "1.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44feda355f4159a7c757171a77de25daf6411e217b4cabd03bd6650690468126"
2024-09-23 13:32:54 +00:00
[[package]]
name = "impl-more"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "206ca75c9c03ba3d4ace2460e57b189f39f43de612c2f85836e65c929701bb2d"
2023-09-27 23:08:48 +00:00
[[package]]
name = "indexmap"
2024-09-23 13:32:54 +00:00
version = "2.5.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5"
2023-09-27 23:08:48 +00:00
dependencies = [
2024-04-08 16:52:41 +00:00
"equivalent",
2023-09-27 23:08:48 +00:00
"hashbrown",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "interpolate_name"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2024-08-31 00:32:37 +00:00
]
2023-10-02 09:22:04 +00:00
[[package]]
name = "ipnet"
2024-09-23 13:32:54 +00:00
version = "2.10.0"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4"
2023-10-02 09:22:04 +00:00
2024-10-02 15:56:52 +00:00
[[package]]
name = "is_terminal_polyfill"
version = "1.70.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
2024-08-31 00:32:37 +00:00
[[package]]
name = "itertools"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
dependencies = [
"either",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "itoa"
2024-06-06 10:33:25 +00:00
version = "1.0.11"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
2023-09-27 23:08:48 +00:00
[[package]]
name = "jobserver"
2024-09-23 13:32:54 +00:00
version = "0.1.32"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
2023-09-27 23:08:48 +00:00
dependencies = [
"libc",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "jpeg-decoder"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
2023-10-02 09:22:04 +00:00
[[package]]
name = "js-sys"
2024-09-23 13:32:54 +00:00
version = "0.3.70"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a"
2023-10-02 09:22:04 +00:00
dependencies = [
"wasm-bindgen",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "language-tags"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2023-10-02 09:22:04 +00:00
[[package]]
name = "lazy_static"
2024-09-23 13:32:54 +00:00
version = "1.5.0"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2023-10-02 09:22:04 +00:00
2024-08-30 18:05:51 +00:00
[[package]]
name = "lebe"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
2023-09-27 23:08:48 +00:00
[[package]]
name = "libc"
2024-09-23 13:32:54 +00:00
version = "0.2.158"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439"
2023-09-27 23:08:48 +00:00
2024-08-31 00:32:37 +00:00
[[package]]
name = "libfuzzer-sys"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7"
dependencies = [
"arbitrary",
"cc",
"once_cell",
]
2023-10-02 09:22:04 +00:00
[[package]]
name = "linux-raw-sys"
2024-06-06 10:33:25 +00:00
version = "0.4.14"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
2023-10-02 09:22:04 +00:00
2023-09-27 23:08:48 +00:00
[[package]]
name = "local-channel"
2024-06-06 10:33:25 +00:00
version = "0.1.5"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8"
2023-09-27 23:08:48 +00:00
dependencies = [
"futures-core",
"futures-sink",
"local-waker",
]
[[package]]
name = "local-waker"
2024-06-06 10:33:25 +00:00
version = "0.1.4"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
2023-09-27 23:08:48 +00:00
[[package]]
name = "lock_api"
2024-06-06 10:33:25 +00:00
version = "0.4.12"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2023-09-27 23:08:48 +00:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
2024-09-23 13:32:54 +00:00
version = "0.4.22"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2024-04-08 07:17:14 +00:00
2024-08-31 00:32:37 +00:00
[[package]]
name = "loop9"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
dependencies = [
"imgref",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "lru"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37ee39891760e7d94734f6f63fedc29a2e4a152f836120753a72503f09fcf904"
dependencies = [
"hashbrown",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "maybe-rayon"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
dependencies = [
"cfg-if",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "md-5"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
dependencies = [
"cfg-if",
"digest",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "memchr"
2024-09-23 13:32:54 +00:00
version = "2.7.4"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2023-09-27 23:08:48 +00:00
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2024-08-30 18:05:51 +00:00
[[package]]
name = "mime_guess"
version = "2.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
dependencies = [
"mime",
"unicase",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2023-09-27 23:08:48 +00:00
[[package]]
name = "miniz_oxide"
2024-09-23 13:32:54 +00:00
version = "0.7.4"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
2023-09-27 23:08:48 +00:00
dependencies = [
"adler",
2024-08-30 18:05:51 +00:00
"simd-adler32",
2023-09-27 23:08:48 +00:00
]
2024-09-23 13:32:54 +00:00
[[package]]
name = "miniz_oxide"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
dependencies = [
"adler2",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "mio"
2024-09-23 13:32:54 +00:00
version = "1.0.2"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
2023-09-27 23:08:48 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"hermit-abi",
2023-09-27 23:08:48 +00:00
"libc",
"log",
"wasi",
2024-09-23 13:32:54 +00:00
"windows-sys 0.52.0",
2023-09-27 23:08:48 +00:00
]
2023-10-02 09:22:04 +00:00
[[package]]
name = "native-tls"
2024-06-06 10:33:25 +00:00
version = "0.2.12"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
2023-10-02 09:22:04 +00:00
dependencies = [
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "new_debug_unreachable"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "noop_proc_macro"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
2024-08-30 18:05:51 +00: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",
]
2024-06-06 10:33:25 +00:00
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2024-08-31 00:32:37 +00:00
[[package]]
name = "num-derive"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2024-08-31 00:32:37 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "num-integer"
version = "0.1.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
dependencies = [
"num-traits",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "num-rational"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
dependencies = [
"num-bigint",
"num-integer",
"num-traits",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "num-traits"
version = "0.2.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
dependencies = [
"autocfg",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "object"
2024-09-23 13:32:54 +00:00
version = "0.36.4"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a"
2023-09-27 23:08:48 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2024-06-06 10:33:25 +00:00
version = "1.19.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2023-09-27 23:08:48 +00:00
2023-10-02 09:22:04 +00:00
[[package]]
name = "openssl"
2024-09-23 13:32:54 +00:00
version = "0.10.66"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
2023-10-02 09:22:04 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"bitflags 2.6.0",
2023-10-02 09:22:04 +00:00
"cfg-if",
"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",
2024-09-23 13:32:54 +00:00
"syn",
2023-10-02 09:22:04 +00: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"
2024-09-23 13:32:54 +00:00
version = "0.9.103"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
2023-10-02 09:22:04 +00:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2024-04-08 07:17:14 +00:00
[[package]]
name = "os_info"
version = "3.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092"
dependencies = [
"log",
"serde",
"windows-sys 0.52.0",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "outref"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4030760ffd992bef45b0ae3f10ce1aba99e33464c90d14dd7c039884963ddc7a"
[[package]]
name = "p256"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
dependencies = [
"ecdsa",
"elliptic-curve",
"sha2",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "parking_lot"
2024-06-06 10:33:25 +00:00
version = "0.12.3"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2023-09-27 23:08:48 +00:00
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2024-06-06 10:33:25 +00:00
version = "0.9.10"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2023-09-27 23:08:48 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2024-09-23 13:32:54 +00:00
"windows-targets",
2023-09-27 23:08:48 +00:00
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "parse-size"
2024-09-23 13:32:54 +00:00
version = "1.1.0"
2024-08-31 00:32:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "487f2ccd1e17ce8c1bfab3a65c89525af41cfad4c8659021a1e9a2aacd73b89b"
2024-08-31 00:32:37 +00:00
2023-09-27 23:08:48 +00:00
[[package]]
name = "paste"
2024-06-06 10:33:25 +00:00
version = "1.0.15"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2023-09-27 23:08:48 +00:00
[[package]]
name = "percent-encoding"
2024-06-06 10:33:25 +00:00
version = "2.3.1"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2023-09-27 23:08:48 +00:00
2024-04-08 16:52:41 +00:00
[[package]]
name = "pin-project"
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2024-04-08 16:52:41 +00:00
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "pin-project-lite"
2024-06-06 10:33:25 +00:00
version = "0.2.14"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2023-09-27 23:08:48 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2024-08-30 18:05:51 +00:00
[[package]]
name = "pkcs8"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
dependencies = [
"der",
"spki",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "pkg-config"
2024-09-23 13:32:54 +00:00
version = "0.3.31"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
2024-06-06 10:33:25 +00:00
2024-08-30 18:05:51 +00:00
[[package]]
name = "png"
version = "0.17.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
dependencies = [
"bitflags 1.3.2",
"crc32fast",
"fdeflate",
"flate2",
2024-09-23 13:32:54 +00:00
"miniz_oxide 0.7.4",
2024-08-30 18:05:51 +00:00
]
2024-06-06 10:33:25 +00:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2023-09-27 23:08:48 +00:00
[[package]]
name = "ppv-lite86"
2024-09-23 13:32:54 +00:00
version = "0.2.20"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
dependencies = [
"zerocopy",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "proc-macro2"
2024-09-23 13:32:54 +00:00
version = "1.0.86"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
2023-09-27 23:08:48 +00:00
dependencies = [
"unicode-ident",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "profiling"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43d84d1d7a6ac92673717f9f6d1518374ef257669c24ebc5ac25d5033828be58"
dependencies = [
"profiling-procmacros",
]
[[package]]
name = "profiling-procmacros"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8021cf59c8ec9c432cfc2526ac6b8aa508ecaf29cd415f271b8406c1b851c3fd"
dependencies = [
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2024-08-31 00:32:37 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "qoi"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
dependencies = [
"bytemuck",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "quick-error"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2023-09-27 23:08:48 +00:00
[[package]]
name = "quote"
2024-09-23 13:32:54 +00:00
version = "1.0.37"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2023-09-27 23:08:48 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "rav1e"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9"
dependencies = [
"arbitrary",
"arg_enum_proc_macro",
"arrayvec",
"av1-grain",
"bitstream-io",
"built",
"cfg-if",
"interpolate_name",
"itertools",
"libc",
"libfuzzer-sys",
"log",
"maybe-rayon",
"new_debug_unreachable",
"noop_proc_macro",
"num-derive",
"num-traits",
"once_cell",
"paste",
"profiling",
"rand",
"rand_chacha",
"simd_helpers",
"system-deps",
"thiserror",
"v_frame",
"wasm-bindgen",
]
[[package]]
name = "ravif"
version = "0.11.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f0bfd976333248de2078d350bfdf182ff96e168a24d23d2436cef320dd4bdd"
dependencies = [
"avif-serialize",
"imgref",
"loop9",
"quick-error",
"rav1e",
"rgb",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "rayon"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "redis"
2024-09-23 13:32:54 +00:00
version = "0.27.2"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "a7e86f5670bd8b028edfb240f0616cad620705b31ec389d55e4f3da2c38dcd48"
2023-09-27 23:08:48 +00:00
dependencies = [
2024-08-30 18:05:51 +00:00
"arc-swap",
2023-09-27 23:08:48 +00:00
"async-trait",
"bytes",
"combine",
"futures-util",
"itoa",
2024-08-30 18:05:51 +00:00
"num-bigint",
2023-09-27 23:08:48 +00:00
"percent-encoding",
"pin-project-lite",
"ryu",
"sha1_smol",
2024-06-06 10:33:25 +00:00
"socket2",
2023-09-27 23:08:48 +00:00
"tokio",
"tokio-util",
"url",
]
[[package]]
name = "redox_syscall"
2024-09-23 13:32:54 +00:00
version = "0.5.4"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "0884ad60e090bf1345b93da0a5de8923c93884cd03f40dfcfddd3b4bee661853"
2023-09-27 23:08:48 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"bitflags 2.6.0",
2023-09-27 23:08:48 +00:00
]
[[package]]
name = "regex"
2024-09-23 13:32:54 +00:00
version = "1.10.6"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
2023-09-27 23:08:48 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[package]]
name = "regex-automata"
2024-09-23 13:32:54 +00:00
version = "0.4.7"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
2023-09-27 23:08:48 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
2024-06-06 10:33:25 +00:00
name = "regex-lite"
2024-09-23 13:32:54 +00:00
version = "0.1.6"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
2023-09-27 23:08:48 +00:00
2023-10-02 09:22:04 +00:00
[[package]]
2024-06-06 10:33:25 +00:00
name = "regex-syntax"
2024-09-23 13:32:54 +00:00
version = "0.8.4"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
2024-04-08 16:52:41 +00:00
[[package]]
name = "reqwest"
2024-09-23 13:32:54 +00:00
version = "0.12.7"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "f8f4955649ef5c38cc7f9e8aa41761d48fb9677197daea9984dc54f56aad5e63"
2024-04-08 16:52:41 +00:00
dependencies = [
2024-08-30 18:05:51 +00:00
"base64 0.22.1",
2024-04-08 16:52:41 +00:00
"bytes",
"encoding_rs",
2024-06-06 10:33:25 +00:00
"futures-channel",
2024-04-08 16:52:41 +00:00
"futures-core",
"futures-util",
2024-09-23 13:32:54 +00:00
"h2 0.4.6",
2024-04-08 16:52:41 +00:00
"http 1.1.0",
2024-09-23 13:32:54 +00:00
"http-body 1.0.1",
2024-04-08 16:52:41 +00:00
"http-body-util",
2024-09-23 13:32:54 +00:00
"hyper 1.4.1",
"hyper-rustls 0.27.3",
2024-06-06 10:33:25 +00:00
"hyper-tls",
2024-04-08 16:52:41 +00:00
"hyper-util",
"ipnet",
"js-sys",
"log",
"mime",
"native-tls",
"once_cell",
"percent-encoding",
"pin-project-lite",
2024-09-23 13:32:54 +00:00
"rustls-pemfile 2.1.3",
2024-04-08 16:52:41 +00:00
"serde",
"serde_json",
"serde_urlencoded",
"sync_wrapper",
"system-configuration",
"tokio",
"tokio-native-tls",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2024-09-23 13:32:54 +00:00
"windows-registry",
2023-10-02 09:22:04 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "rfc6979"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb"
dependencies = [
"crypto-bigint 0.4.9",
"hmac",
"zeroize",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "rgb"
2024-09-23 13:32:54 +00:00
version = "0.8.50"
2024-08-31 00:32:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
2024-08-31 00:32:37 +00:00
dependencies = [
"bytemuck",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "ring"
version = "0.17.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
dependencies = [
"cc",
"cfg-if",
"getrandom",
"libc",
"spin",
"untrusted",
"windows-sys 0.52.0",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "rustc-demangle"
2024-06-06 10:33:25 +00:00
version = "0.1.24"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2023-09-27 23:08:48 +00:00
[[package]]
name = "rustc_version"
2024-09-23 13:32:54 +00:00
version = "0.4.1"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2023-09-27 23:08:48 +00:00
dependencies = [
"semver",
]
2023-10-02 09:22:04 +00:00
[[package]]
name = "rustix"
2024-09-23 13:32:54 +00:00
version = "0.38.37"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
2023-10-02 09:22:04 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"bitflags 2.6.0",
2023-10-02 09:22:04 +00:00
"errno",
"libc",
"linux-raw-sys",
2024-06-06 10:33:25 +00:00
"windows-sys 0.52.0",
2023-10-02 09:22:04 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "rustls"
version = "0.21.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
dependencies = [
"log",
"ring",
2024-09-23 13:32:54 +00:00
"rustls-webpki 0.101.7",
2024-08-30 18:05:51 +00:00
"sct",
]
2024-09-23 13:32:54 +00:00
[[package]]
name = "rustls"
version = "0.23.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2dabaac7466917e566adb06783a81ca48944c6898a1b08b9374106dd671f4c8"
dependencies = [
"once_cell",
"rustls-pki-types",
"rustls-webpki 0.102.8",
"subtle",
"zeroize",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "rustls-native-certs"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
dependencies = [
"openssl-probe",
"rustls-pemfile 1.0.4",
"schannel",
"security-framework",
]
[[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",
]
2024-04-08 16:52:41 +00:00
[[package]]
name = "rustls-pemfile"
2024-09-23 13:32:54 +00:00
version = "2.1.3"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425"
2024-04-08 16:52:41 +00:00
dependencies = [
2024-08-30 18:05:51 +00:00
"base64 0.22.1",
2024-04-08 16:52:41 +00:00
"rustls-pki-types",
]
[[package]]
name = "rustls-pki-types"
2024-09-23 13:32:54 +00:00
version = "1.8.0"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0"
2024-04-08 16:52:41 +00:00
2024-08-30 18:05:51 +00:00
[[package]]
name = "rustls-webpki"
version = "0.101.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
dependencies = [
"ring",
"untrusted",
]
2024-09-23 13:32:54 +00:00
[[package]]
name = "rustls-webpki"
version = "0.102.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
dependencies = [
"ring",
"rustls-pki-types",
"untrusted",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "ryu"
2024-06-06 10:33:25 +00:00
version = "1.0.18"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2023-09-27 23:08:48 +00:00
2023-10-02 09:22:04 +00:00
[[package]]
name = "schannel"
2024-09-23 13:32:54 +00:00
version = "0.1.24"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "e9aaafd5a2b6e3d657ff009d82fbd630b6bd54dd4eb06f21693925cdf80f9b8b"
2023-10-02 09:22:04 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"windows-sys 0.59.0",
2023-10-02 09:22:04 +00:00
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "scopeguard"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2024-08-30 18:05:51 +00:00
[[package]]
name = "sct"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "sec1"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928"
dependencies = [
"base16ct",
"der",
"generic-array",
"pkcs8",
"subtle",
"zeroize",
]
2023-10-02 09:22:04 +00:00
[[package]]
name = "security-framework"
2024-09-23 13:32:54 +00:00
version = "2.11.1"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2023-10-02 09:22:04 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"bitflags 2.6.0",
2023-10-02 09:22:04 +00:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2024-09-23 13:32:54 +00:00
version = "2.12.0"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6"
2023-10-02 09:22:04 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "semver"
2024-06-06 10:33:25 +00:00
version = "1.0.23"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
2023-09-27 23:08:48 +00:00
2024-04-08 07:17:14 +00:00
[[package]]
name = "sentry"
2024-06-06 10:33:25 +00:00
version = "0.34.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "5484316556650182f03b43d4c746ce0e3e48074a21e2f51244b648b6542e1066"
2024-04-08 07:17:14 +00:00
dependencies = [
"httpdate",
"native-tls",
2024-06-06 10:33:25 +00:00
"reqwest",
2024-04-08 07:17:14 +00:00
"sentry-backtrace",
"sentry-contexts",
"sentry-core",
"sentry-debug-images",
"sentry-panic",
"sentry-tracing",
"tokio",
"ureq",
]
[[package]]
name = "sentry-actix"
2024-06-06 10:33:25 +00:00
version = "0.34.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "e461c7d3a46d298b5ffc66127c1f16454dd11d3d89fcfb21023cd499d82b9a78"
2024-04-08 07:17:14 +00:00
dependencies = [
"actix-web",
"futures-util",
"sentry-core",
]
[[package]]
name = "sentry-backtrace"
2024-06-06 10:33:25 +00:00
version = "0.34.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "40aa225bb41e2ec9d7c90886834367f560efc1af028f1c5478a6cce6a59c463a"
2024-04-08 07:17:14 +00:00
dependencies = [
"backtrace",
"once_cell",
"regex",
"sentry-core",
]
[[package]]
name = "sentry-contexts"
2024-06-06 10:33:25 +00:00
version = "0.34.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "1a8dd746da3d16cb8c39751619cefd4fcdbd6df9610f3310fd646b55f6e39910"
2024-04-08 07:17:14 +00:00
dependencies = [
"hostname",
"libc",
"os_info",
"rustc_version",
"sentry-core",
"uname",
]
[[package]]
name = "sentry-core"
2024-06-06 10:33:25 +00:00
version = "0.34.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "161283cfe8e99c8f6f236a402b9ccf726b201f365988b5bb637ebca0abbd4a30"
2024-04-08 07:17:14 +00:00
dependencies = [
"once_cell",
"rand",
"sentry-types",
"serde",
"serde_json",
]
[[package]]
name = "sentry-debug-images"
2024-06-06 10:33:25 +00:00
version = "0.34.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "8fc6b25e945fcaa5e97c43faee0267eebda9f18d4b09a251775d8fef1086238a"
2024-04-08 07:17:14 +00:00
dependencies = [
"findshlibs",
"once_cell",
"sentry-core",
]
[[package]]
name = "sentry-panic"
2024-06-06 10:33:25 +00:00
version = "0.34.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "bc74f229c7186dd971a9491ffcbe7883544aa064d1589bd30b83fb856cd22d63"
2024-04-08 07:17:14 +00:00
dependencies = [
"sentry-backtrace",
"sentry-core",
]
[[package]]
name = "sentry-tracing"
2024-06-06 10:33:25 +00:00
version = "0.34.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "cd3c5faf2103cd01eeda779ea439b68c4ee15adcdb16600836e97feafab362ec"
2024-04-08 07:17:14 +00:00
dependencies = [
"sentry-backtrace",
"sentry-core",
"tracing-core",
"tracing-subscriber",
]
[[package]]
name = "sentry-types"
2024-06-06 10:33:25 +00:00
version = "0.34.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "5d68cdf6bc41b8ff3ae2a9c4671e97426dcdd154cc1d4b6b72813f285d6b163f"
2024-04-08 07:17:14 +00:00
dependencies = [
"debugid",
"hex",
"rand",
"serde",
"serde_json",
"thiserror",
"time",
"url",
"uuid",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "serde"
2024-09-23 13:32:54 +00:00
version = "1.0.210"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
2023-09-27 23:08:48 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-09-23 13:32:54 +00:00
version = "1.0.210"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
2023-09-27 23:08:48 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2023-09-27 23:08:48 +00:00
]
[[package]]
name = "serde_json"
2024-09-23 13:32:54 +00:00
version = "1.0.128"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8"
2023-09-27 23:08:48 +00:00
dependencies = [
"itoa",
2024-09-23 13:32:54 +00:00
"memchr",
2023-09-27 23:08:48 +00:00
"ryu",
"serde",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "serde_plain"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50"
dependencies = [
"serde",
]
[[package]]
name = "serde_spanned"
version = "0.6.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d"
dependencies = [
"serde",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "sha1"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "sha1_smol"
2024-09-23 13:32:54 +00:00
version = "1.0.1"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
2023-09-27 23:08:48 +00:00
2024-08-30 18:05:51 +00:00
[[package]]
name = "sha2"
version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
2024-09-23 13:32:54 +00:00
[[package]]
name = "shlex"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2023-09-27 23:08:48 +00:00
[[package]]
name = "signal-hook-registry"
2024-06-06 10:33:25 +00:00
version = "1.4.2"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2023-09-27 23:08:48 +00:00
dependencies = [
"libc",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "signature"
version = "1.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
dependencies = [
"digest",
"rand_core",
]
[[package]]
name = "simd-adler32"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2024-08-31 00:32:37 +00:00
[[package]]
name = "simd_helpers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
dependencies = [
"quote",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "slab"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
2024-04-08 16:52:41 +00:00
version = "1.13.2"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-08 16:52:41 +00:00
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2023-09-27 23:08:48 +00:00
[[package]]
name = "socket2"
2024-06-06 10:33:25 +00:00
version = "0.5.7"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
2023-09-27 23:08:48 +00:00
dependencies = [
"libc",
2024-04-08 16:52:41 +00:00
"windows-sys 0.52.0",
2023-09-27 23:08:48 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
dependencies = [
"lock_api",
]
[[package]]
name = "spki"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b"
dependencies = [
"base64ct",
"der",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "strsim"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2024-08-30 18:05:51 +00:00
[[package]]
name = "subtle"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2023-09-27 23:08:48 +00:00
[[package]]
name = "syn"
2024-09-23 13:32:54 +00:00
version = "2.0.77"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed"
2023-09-27 23:08:48 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
2024-09-23 13:32:54 +00:00
name = "sync_wrapper"
version = "1.0.1"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
2023-09-27 23:08:48 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"futures-core",
2023-09-27 23:08:48 +00:00
]
2024-04-08 16:52:41 +00:00
[[package]]
name = "system-configuration"
2024-09-23 13:32:54 +00:00
version = "0.6.1"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
2024-04-08 16:52:41 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"bitflags 2.6.0",
2024-04-08 16:52:41 +00:00
"core-foundation",
"system-configuration-sys",
]
[[package]]
name = "system-configuration-sys"
2024-09-23 13:32:54 +00:00
version = "0.6.0"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2024-04-08 16:52:41 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "system-deps"
version = "6.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
dependencies = [
"cfg-expr",
"heck",
"pkg-config",
"toml",
"version-compare",
]
[[package]]
name = "target-lexicon"
version = "0.12.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2023-10-02 09:22:04 +00:00
[[package]]
name = "tempfile"
2024-09-23 13:32:54 +00:00
version = "3.12.0"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64"
2023-10-02 09:22:04 +00:00
dependencies = [
"cfg-if",
"fastrand",
2024-09-23 13:32:54 +00:00
"once_cell",
2023-10-02 09:22:04 +00:00
"rustix",
2024-09-23 13:32:54 +00:00
"windows-sys 0.59.0",
2024-04-08 07:17:14 +00:00
]
[[package]]
name = "thiserror"
2024-09-23 13:32:54 +00:00
version = "1.0.64"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84"
2024-04-08 07:17:14 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2024-09-23 13:32:54 +00:00
version = "1.0.64"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3"
2024-04-08 07:17:14 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2023-10-02 09:22:04 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "tiff"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
dependencies = [
"flate2",
"jpeg-decoder",
"weezl",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "time"
2024-06-06 10:33:25 +00:00
version = "0.3.36"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
2023-09-27 23:08:48 +00:00
dependencies = [
"deranged",
"itoa",
2024-06-06 10:33:25 +00:00
"num-conv",
"powerfmt",
2023-09-27 23:08:48 +00:00
"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"
2024-06-06 10:33:25 +00:00
version = "0.2.18"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
2023-09-27 23:08:48 +00:00
dependencies = [
2024-06-06 10:33:25 +00:00
"num-conv",
2023-09-27 23:08:48 +00:00
"time-core",
]
[[package]]
name = "tinyvec"
2024-09-23 13:32:54 +00:00
version = "1.8.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
2023-09-27 23:08:48 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
2024-09-23 13:32:54 +00:00
version = "1.40.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998"
2023-09-27 23:08:48 +00:00
dependencies = [
"backtrace",
"bytes",
"libc",
"mio",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
2024-06-06 10:33:25 +00:00
"socket2",
2023-09-27 23:08:48 +00:00
"tokio-macros",
2024-09-23 13:32:54 +00:00
"windows-sys 0.52.0",
2023-09-27 23:08:48 +00:00
]
[[package]]
name = "tokio-macros"
2024-09-23 13:32:54 +00:00
version = "2.4.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
2023-09-27 23:08:48 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2023-09-27 23:08:48 +00:00
]
2023-10-02 09:22:04 +00: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",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "tokio-rustls"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [
2024-09-23 13:32:54 +00:00
"rustls 0.21.12",
"tokio",
]
[[package]]
name = "tokio-rustls"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
dependencies = [
"rustls 0.23.13",
"rustls-pki-types",
2024-08-30 18:05:51 +00:00
"tokio",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "tokio-util"
2024-09-23 13:32:54 +00:00
version = "0.7.12"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
2023-09-27 23:08:48 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "toml"
version = "0.8.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
[[package]]
name = "toml_datetime"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
2024-09-23 13:32:54 +00:00
version = "0.22.21"
2024-08-31 00:32:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "3b072cee73c449a636ffd6f32bd8de3a9f7119139aff882f44943ce2986dc5cf"
2024-08-31 00:32:37 +00:00
dependencies = [
"indexmap",
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
]
2024-04-08 16:52:41 +00:00
[[package]]
name = "tower"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
"futures-core",
"futures-util",
"pin-project",
"pin-project-lite",
"tokio",
"tower-layer",
"tower-service",
]
[[package]]
name = "tower-layer"
2024-09-23 13:32:54 +00:00
version = "0.3.3"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2024-04-08 16:52:41 +00:00
2023-10-02 09:22:04 +00:00
[[package]]
name = "tower-service"
2024-09-23 13:32:54 +00:00
version = "0.3.3"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2023-10-02 09:22:04 +00:00
2023-09-27 23:08:48 +00:00
[[package]]
name = "tracing"
2024-06-06 10:33:25 +00:00
version = "0.1.40"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2023-09-27 23:08:48 +00:00
dependencies = [
"log",
"pin-project-lite",
2024-08-30 18:05:51 +00:00
"tracing-attributes",
2023-09-27 23:08:48 +00:00
"tracing-core",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "tracing-attributes"
version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2024-08-30 18:05:51 +00:00
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "tracing-core"
2024-06-06 10:33:25 +00:00
version = "0.1.32"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2023-09-27 23:08:48 +00:00
dependencies = [
"once_cell",
2024-04-08 07:17:14 +00:00
"valuable",
]
[[package]]
name = "tracing-subscriber"
version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
dependencies = [
"tracing-core",
2023-09-27 23:08:48 +00:00
]
2023-10-02 09:22:04 +00:00
[[package]]
name = "try-lock"
2024-06-06 10:33:25 +00:00
version = "0.2.5"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2023-10-02 09:22:04 +00:00
2023-09-27 23:08:48 +00:00
[[package]]
name = "typenum"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2024-04-08 07:17:14 +00:00
[[package]]
name = "uname"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8"
dependencies = [
"libc",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "unicase"
version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
dependencies = [
"version_check",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "unicode-bidi"
2024-06-06 10:33:25 +00:00
version = "0.3.15"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-06 10:33:25 +00:00
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
2023-09-27 23:08:48 +00:00
[[package]]
name = "unicode-ident"
2024-09-23 13:32:54 +00:00
version = "1.0.13"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
2023-09-27 23:08:48 +00:00
[[package]]
name = "unicode-normalization"
2024-09-23 13:32:54 +00:00
version = "0.1.24"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
2023-09-27 23:08:48 +00:00
dependencies = [
"tinyvec",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2024-04-08 07:17:14 +00:00
[[package]]
name = "ureq"
2024-09-23 13:32:54 +00:00
version = "2.10.1"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a"
2024-04-08 07:17:14 +00:00
dependencies = [
2024-08-30 18:05:51 +00:00
"base64 0.22.1",
2024-04-08 07:17:14 +00:00
"log",
"native-tls",
"once_cell",
"url",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "url"
2024-09-23 13:32:54 +00:00
version = "2.5.2"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
2023-09-27 23:08:48 +00:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
2024-04-08 07:17:14 +00:00
"serde",
2023-09-27 23:08:48 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "urlencoding"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2024-10-02 15:56:52 +00:00
[[package]]
name = "utf8parse"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2023-10-19 14:43:00 +00:00
[[package]]
name = "uuid"
2024-09-23 13:32:54 +00:00
version = "1.10.0"
2023-10-19 14:43:00 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
2023-10-19 14:43:00 +00:00
dependencies = [
"getrandom",
2024-04-08 07:17:14 +00:00
"serde",
2023-10-19 14:43:00 +00:00
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "v_frame"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b"
dependencies = [
"aligned-vec",
"num-traits",
"wasm-bindgen",
]
2024-04-08 07:17:14 +00:00
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2023-10-02 09:22:04 +00:00
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2024-08-31 00:32:37 +00:00
[[package]]
name = "version-compare"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
2023-09-27 23:08:48 +00:00
[[package]]
name = "version_check"
2024-09-23 13:32:54 +00:00
version = "0.9.5"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2023-09-27 23:08:48 +00:00
2024-08-30 18:05:51 +00:00
[[package]]
name = "vsimd"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
2023-10-02 09:22:04 +00:00
[[package]]
name = "want"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
dependencies = [
"try-lock",
]
2023-09-27 23:08:48 +00:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2023-10-02 09:22:04 +00:00
[[package]]
name = "wasm-bindgen"
2024-09-23 13:32:54 +00:00
version = "0.2.93"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5"
2023-10-02 09:22:04 +00:00
dependencies = [
"cfg-if",
2024-09-23 13:32:54 +00:00
"once_cell",
2023-10-02 09:22:04 +00:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2024-09-23 13:32:54 +00:00
version = "0.2.93"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b"
2023-10-02 09:22:04 +00:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2023-10-02 09:22:04 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2024-09-23 13:32:54 +00:00
version = "0.4.43"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed"
2023-10-02 09:22:04 +00:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2024-09-23 13:32:54 +00:00
version = "0.2.93"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf"
2023-10-02 09:22:04 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2024-09-23 13:32:54 +00:00
version = "0.2.93"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836"
2023-10-02 09:22:04 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2023-10-02 09:22:04 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2024-09-23 13:32:54 +00:00
version = "0.2.93"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484"
2023-10-02 09:22:04 +00:00
[[package]]
name = "web-sys"
2024-09-23 13:32:54 +00:00
version = "0.3.70"
2023-10-02 09:22:04 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0"
2023-10-02 09:22:04 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "weezl"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
2023-09-27 23:08:48 +00:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2024-06-06 10:33:25 +00:00
[[package]]
name = "windows"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
dependencies = [
"windows-core",
2024-09-23 13:32:54 +00:00
"windows-targets",
2024-06-06 10:33:25 +00:00
]
[[package]]
name = "windows-core"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
dependencies = [
2024-09-23 13:32:54 +00:00
"windows-targets",
2024-06-06 10:33:25 +00:00
]
2023-09-27 23:08:48 +00:00
[[package]]
2024-09-23 13:32:54 +00:00
name = "windows-registry"
version = "0.2.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
2023-09-27 23:08:48 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"windows-result",
"windows-strings",
"windows-targets",
2024-04-08 07:17:14 +00:00
]
[[package]]
2024-09-23 13:32:54 +00:00
name = "windows-result"
version = "0.2.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
2024-04-08 07:17:14 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"windows-targets",
2023-09-27 23:08:48 +00:00
]
[[package]]
2024-09-23 13:32:54 +00:00
name = "windows-strings"
version = "0.1.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
2023-09-27 23:08:48 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"windows-result",
"windows-targets",
2024-04-08 07:17:14 +00:00
]
[[package]]
2024-09-23 13:32:54 +00:00
name = "windows-sys"
version = "0.52.0"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2024-04-08 07:17:14 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"windows-targets",
2023-09-27 23:08:48 +00:00
]
[[package]]
2024-09-23 13:32:54 +00:00
name = "windows-sys"
version = "0.59.0"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
"windows-targets",
]
2023-09-27 23:08:48 +00:00
2024-04-08 07:17:14 +00:00
[[package]]
2024-09-23 13:32:54 +00:00
name = "windows-targets"
version = "0.52.6"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
dependencies = [
"windows_aarch64_gnullvm",
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_gnullvm",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_gnullvm",
"windows_x86_64_msvc",
]
2024-04-08 07:17:14 +00:00
2023-09-27 23:08:48 +00:00
[[package]]
2024-09-23 13:32:54 +00:00
name = "windows_aarch64_gnullvm"
version = "0.52.6"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2023-09-27 23:08:48 +00:00
2024-04-08 07:17:14 +00:00
[[package]]
name = "windows_aarch64_msvc"
2024-09-23 13:32:54 +00:00
version = "0.52.6"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2024-04-08 07:17:14 +00:00
2023-09-27 23:08:48 +00:00
[[package]]
name = "windows_i686_gnu"
2024-09-23 13:32:54 +00:00
version = "0.52.6"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2024-06-06 10:33:25 +00:00
[[package]]
name = "windows_i686_gnullvm"
2024-09-23 13:32:54 +00:00
version = "0.52.6"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2024-04-08 07:17:14 +00:00
2023-09-27 23:08:48 +00:00
[[package]]
name = "windows_i686_msvc"
2024-09-23 13:32:54 +00:00
version = "0.52.6"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2024-04-08 07:17:14 +00:00
2023-09-27 23:08:48 +00:00
[[package]]
name = "windows_x86_64_gnu"
2024-09-23 13:32:54 +00:00
version = "0.52.6"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2023-09-27 23:08:48 +00:00
2024-04-08 07:17:14 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2024-09-23 13:32:54 +00:00
version = "0.52.6"
2024-04-08 07:17:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2024-04-08 07:17:14 +00:00
2023-09-27 23:08:48 +00:00
[[package]]
name = "windows_x86_64_msvc"
2024-09-23 13:32:54 +00:00
version = "0.52.6"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2024-04-08 07:17:14 +00:00
2024-08-31 00:32:37 +00:00
[[package]]
name = "winnow"
version = "0.6.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f"
dependencies = [
"memchr",
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "xmlparser"
version = "0.13.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
2024-04-08 16:52:41 +00:00
[[package]]
2024-06-06 10:33:25 +00:00
name = "zerocopy"
2024-09-23 13:32:54 +00:00
version = "0.7.35"
2024-04-08 16:52:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
2024-04-08 16:52:41 +00:00
dependencies = [
2024-09-23 13:32:54 +00:00
"byteorder",
2024-06-06 10:33:25 +00:00
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
2024-09-23 13:32:54 +00:00
version = "0.7.35"
2024-06-06 10:33:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
2024-06-06 10:33:25 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-09-23 13:32:54 +00:00
"syn",
2024-04-08 16:52:41 +00:00
]
2024-08-30 18:05:51 +00:00
[[package]]
name = "zeroize"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2023-09-27 23:08:48 +00:00
[[package]]
name = "zstd"
2024-09-23 13:32:54 +00:00
version = "0.13.2"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
2023-09-27 23:08:48 +00:00
dependencies = [
"zstd-safe",
]
[[package]]
name = "zstd-safe"
2024-09-23 13:32:54 +00:00
version = "7.2.1"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
2023-09-27 23:08:48 +00:00
dependencies = [
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2024-09-23 13:32:54 +00:00
version = "2.0.13+zstd.1.5.6"
2023-09-27 23:08:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-23 13:32:54 +00:00
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
2023-09-27 23:08:48 +00:00
dependencies = [
"cc",
"pkg-config",
]
2024-08-30 18:05:51 +00:00
2024-08-31 00:32:37 +00:00
[[package]]
name = "zune-core"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
2024-08-30 18:05:51 +00:00
[[package]]
name = "zune-inflate"
version = "0.2.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
dependencies = [
"simd-adler32",
]
2024-08-31 00:32:37 +00:00
[[package]]
name = "zune-jpeg"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16099418600b4d8f028622f73ff6e3deaabdff330fb9a2a131dea781ee8b0768"
dependencies = [
"zune-core",
]