GeneIT/geneit_backend/Cargo.lock

4135 lines
100 KiB
Plaintext
Raw Normal View History

2023-05-24 11:52:24 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2023-05-24 12:38:18 +00:00
[[package]]
name = "actix-codec"
2024-03-11 17:25:47 +00:00
version = "0.5.2"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
2023-05-24 12:38:18 +00:00
dependencies = [
"bitflags 2.5.0",
2023-05-24 12:38:18 +00:00
"bytes",
"futures-core",
"futures-sink",
"memchr",
"pin-project-lite",
"tokio",
"tokio-util",
"tracing",
]
2023-06-06 13:47:30 +00:00
[[package]]
name = "actix-cors"
2024-01-07 00:10:00 +00:00
version = "0.7.0"
2023-06-06 13:47:30 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-07 00:10:00 +00:00
checksum = "f9e772b3bcafe335042b5db010ab7c09013dad6eac4915c91d8d50902769f331"
2023-06-06 13:47:30 +00:00
dependencies = [
"actix-utils",
"actix-web",
"derive_more",
"futures-util",
"log",
"once_cell",
"smallvec",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "actix-http"
2024-05-20 00:25:34 +00:00
version = "3.7.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-20 00:25:34 +00:00
checksum = "4eb9843d84c775696c37d9a418bbb01b932629d01870722c0f13eb3f95e2536d"
2023-05-24 12:38:18 +00:00
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"ahash",
2024-05-20 00:25:34 +00:00
"base64 0.22.1",
"bitflags 2.5.0",
2023-05-24 12:38:18 +00:00
"brotli",
"bytes",
"bytestring",
"derive_more",
"encoding_rs",
"flate2",
"futures-core",
"h2 0.3.26",
"http 0.2.12",
2023-05-24 12:38:18 +00:00
"httparse",
"httpdate",
"itoa",
"language-tags",
"local-channel",
"mime",
"percent-encoding",
"pin-project-lite",
"rand",
"sha1",
"smallvec",
"tokio",
"tokio-util",
"tracing",
2024-05-14 17:34:35 +00:00
"zstd",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "actix-macros"
2023-12-12 17:21:35 +00:00
version = "0.2.4"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
2023-05-24 12:38:18 +00:00
dependencies = [
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-05-24 12:38:18 +00:00
]
2023-08-05 17:15:52 +00:00
[[package]]
name = "actix-multipart"
2024-07-24 00:07:23 +00:00
version = "0.7.2"
2023-08-05 17:15:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-24 00:07:23 +00:00
checksum = "d5118a26dee7e34e894f7e85aa0ee5080ae4c18bf03c0e30d49a80e418f00a53"
2023-08-05 17:15:52 +00:00
dependencies = [
"actix-multipart-derive",
"actix-utils",
"actix-web",
"derive_more",
"futures-core",
"futures-util",
"httparse",
"local-waker",
"log",
"memchr",
"mime",
"rand",
2023-08-05 17:15:52 +00:00
"serde",
"serde_json",
"serde_plain",
"tempfile",
"tokio",
]
[[package]]
name = "actix-multipart-derive"
2024-07-24 00:07:23 +00:00
version = "0.7.0"
2023-08-05 17:15:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-24 00:07:23 +00:00
checksum = "e11eb847f49a700678ea2fa73daeb3208061afa2b9d1a8527c03390f4c4a1c6b"
2023-08-05 17:15:52 +00:00
dependencies = [
"darling",
2023-08-05 17:15:52 +00:00
"parse-size",
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-08-05 17:15:52 +00:00
]
2023-05-24 14:19:46 +00:00
[[package]]
name = "actix-remote-ip"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7629b357d4705cf3f1e31f989f48ecd56027112f7d52dcf06dd96ee197065f8e"
dependencies = [
"actix-web",
"futures-util",
"log",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "actix-router"
2024-05-20 00:25:34 +00:00
version = "0.5.3"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-20 00:25:34 +00:00
checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
2023-05-24 12:38:18 +00:00
dependencies = [
"bytestring",
2024-05-20 00:25:34 +00:00
"cfg-if",
"http 0.2.12",
2023-05-24 12:38:18 +00:00
"regex",
2024-05-20 00:25:34 +00:00
"regex-lite",
2023-05-24 12:38:18 +00:00
"serde",
"tracing",
]
[[package]]
name = "actix-rt"
2023-12-12 17:21:35 +00:00
version = "2.9.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "28f32d40287d3f402ae0028a9d54bef51af15c8769492826a69d28f81893151d"
2023-05-24 12:38:18 +00:00
dependencies = [
"futures-core",
"tokio",
]
[[package]]
name = "actix-server"
2023-12-12 17:21:35 +00:00
version = "2.3.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "3eb13e7eef0423ea6eab0e59f6c72e7cb46d33691ad56a726b3cd07ddec2c2d4"
2023-05-24 12:38:18 +00:00
dependencies = [
"actix-rt",
"actix-service",
"actix-utils",
"futures-core",
"futures-util",
"mio",
2024-04-06 00:11:37 +00:00
"socket2",
2023-05-24 12:38:18 +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-06-21 00:14:49 +00:00
version = "4.8.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-21 00:14:49 +00:00
checksum = "1988c02af8d2b718c05bc4aeb6a66395b7cdf32858c2c71131e5637a8c05a9ff"
2023-05-24 12:38:18 +00:00
dependencies = [
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-utils",
"actix-web-codegen",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"ahash",
2023-05-24 12:38:18 +00:00
"bytes",
"bytestring",
"cfg-if",
"cookie",
"derive_more",
"encoding_rs",
"futures-core",
"futures-util",
"itoa",
"language-tags",
"log",
"mime",
"once_cell",
"pin-project-lite",
"regex",
2024-05-20 00:25:34 +00:00
"regex-lite",
2023-05-24 12:38:18 +00:00
"serde",
"serde_json",
"serde_urlencoded",
"smallvec",
2024-04-06 00:11:37 +00:00
"socket2",
2023-05-24 12:38:18 +00:00
"time",
"url",
]
[[package]]
name = "actix-web-codegen"
2024-06-09 00:13:08 +00:00
version = "4.3.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-09 00:13:08 +00:00
checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
2023-05-24 12:38:18 +00:00
dependencies = [
"actix-router",
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-05-24 12:38:18 +00:00
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "addr2line"
2023-12-12 17:21:35 +00:00
version = "0.21.0"
2023-07-04 16:47:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2023-07-04 16:47:37 +00:00
dependencies = [
"gimli",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2023-08-17 15:37:44 +00:00
[[package]]
name = "aes"
2024-03-11 17:25:47 +00:00
version = "0.8.4"
2023-08-17 15:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
2023-08-17 15:37:44 +00:00
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "ahash"
2024-03-11 17:25:47 +00:00
version = "0.8.11"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
2023-05-24 12:38:18 +00:00
dependencies = [
"cfg-if",
"getrandom",
"once_cell",
"version_check",
2023-12-12 17:21:35 +00:00
"zerocopy",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "aho-corasick"
version = "1.1.3"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
2023-05-24 12:38:18 +00:00
dependencies = [
"memchr",
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "aligned-vec"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1"
2023-05-24 12:38:18 +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",
]
2023-12-12 17:21:35 +00:00
[[package]]
name = "allocator-api2"
2024-05-14 17:34:35 +00:00
version = "0.2.18"
2023-12-12 17:21:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
2023-12-12 17:21:35 +00:00
2023-08-04 17:03:46 +00:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
2023-05-24 11:52:24 +00:00
[[package]]
name = "anstream"
2024-05-14 17:34:35 +00:00
version = "0.6.14"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
2023-05-24 11:52:24 +00:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
2024-05-14 17:34:35 +00:00
"is_terminal_polyfill",
2023-05-24 11:52:24 +00:00
"utf8parse",
]
[[package]]
name = "anstyle"
2024-05-14 17:34:35 +00:00
version = "1.0.7"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
2023-05-24 11:52:24 +00:00
[[package]]
name = "anstyle-parse"
2024-05-14 17:34:35 +00:00
version = "0.2.4"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
2023-05-24 11:52:24 +00:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
2024-05-14 17:34:35 +00:00
version = "1.0.3"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5"
2023-05-24 11:52:24 +00:00
dependencies = [
2024-03-11 17:25:47 +00:00
"windows-sys 0.52.0",
2023-05-24 11:52:24 +00:00
]
[[package]]
name = "anstyle-wincon"
2024-05-14 17:34:35 +00:00
version = "3.0.3"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
2023-05-24 11:52:24 +00:00
dependencies = [
"anstyle",
2024-03-11 17:25:47 +00:00
"windows-sys 0.52.0",
2023-05-24 11:52:24 +00:00
]
2023-05-24 14:19:46 +00:00
[[package]]
name = "anyhow"
2024-05-19 00:24:54 +00:00
version = "1.0.86"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-19 00:24:54 +00:00
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
2024-03-11 17:25:47 +00:00
[[package]]
name = "arbitrary"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
2024-05-14 17:34:35 +00:00
dependencies = [
"derive_arbitrary",
]
2024-03-11 17:25:47 +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-05-14 17:34:35 +00:00
"syn 2.0.63",
2024-03-11 17:25:47 +00:00
]
[[package]]
name = "arrayvec"
version = "0.7.4"
2023-05-24 14:19:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"
2023-05-24 14:19:46 +00:00
2023-05-25 07:22:49 +00:00
[[package]]
name = "ascii_utils"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a"
2023-08-05 12:49:17 +00:00
[[package]]
name = "async-trait"
2024-05-14 17:34:35 +00:00
version = "0.1.80"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca"
2023-08-05 12:49:17 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-08-05 12:49:17 +00:00
]
[[package]]
name = "attohttpc"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
version = "0.26.1"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
checksum = "0f77d243921b0979fbbd728dd2d5162e68ac8252976797c24eb5b3a6af9090dc"
2023-08-05 12:49:17 +00:00
dependencies = [
"http 0.2.12",
2023-08-05 12:49:17 +00:00
"log",
"native-tls",
"serde",
"serde_json",
"url",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "autocfg"
2024-05-14 17:34:35 +00:00
version = "1.3.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
2023-05-24 12:38:18 +00:00
2024-03-11 17:25:47 +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",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "aws-creds"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
version = "0.36.0"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
checksum = "390ad3b77f3e21e01a4a0355865853b681daf1988510b0b15e31c0c4ae7eb0f6"
2023-08-05 12:49:17 +00:00
dependencies = [
"attohttpc",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"home",
2023-08-05 12:49:17 +00:00
"log",
"quick-xml",
"rust-ini",
"serde",
"thiserror",
"time",
"url",
]
[[package]]
name = "aws-region"
2023-12-12 17:21:35 +00:00
version = "0.25.4"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "42fed2b9fca70f2908268d057a607f2a906f47edbf856ea8587de9038d264e22"
2023-08-05 12:49:17 +00:00
dependencies = [
"thiserror",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "backtrace"
version = "0.3.71"
2023-07-04 16:47:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
2023-07-04 16:47:37 +00:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "base64"
2024-01-12 00:09:51 +00:00
version = "0.21.7"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-12 00:09:51 +00:00
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
2023-05-24 12:38:18 +00:00
2024-03-11 17:25:47 +00:00
[[package]]
name = "base64"
2024-05-05 00:05:01 +00:00
version = "0.22.1"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-05 00:05:01 +00:00
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
2024-03-11 17:25:47 +00:00
2023-05-31 11:33:26 +00:00
[[package]]
name = "bcrypt"
2024-03-26 00:24:52 +00:00
version = "0.15.1"
2023-05-31 11:33:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-26 00:24:52 +00:00
checksum = "e65938ed058ef47d92cf8b346cc76ef48984572ade631927e9937b5ffc7662c7"
2023-05-31 11:33:26 +00:00
dependencies = [
2024-05-05 00:05:01 +00:00
"base64 0.22.1",
2023-05-31 11:33:26 +00:00
"blowfish",
"getrandom",
"subtle",
"zeroize",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "bit_field"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
2023-05-24 11:52:24 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-07-04 16:47:37 +00:00
[[package]]
name = "bitflags"
version = "2.5.0"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
2024-03-11 17:25:47 +00:00
[[package]]
name = "bitstream-io"
2024-05-14 17:34:35 +00:00
version = "2.3.0"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "7c12d1856e42f0d817a835fe55853957c85c8c8a470114029143d3f12671446e"
2023-07-04 16:47:37 +00:00
2023-05-24 12:38:18 +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",
]
2023-05-31 11:33:26 +00:00
[[package]]
name = "blowfish"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
dependencies = [
"byteorder",
"cipher",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "brotli"
2024-05-20 00:25:34 +00:00
version = "6.0.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-20 00:25:34 +00:00
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
2023-05-24 12:38:18 +00:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
2024-05-20 00:25:34 +00:00
version = "4.0.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-20 00:25:34 +00:00
checksum = "e6221fe77a248b9117d431ad93761222e1cf8ff282d9d1d5d9f53d6299a1cf76"
2023-05-24 12:38:18 +00:00
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "built"
2024-05-14 17:34:35 +00:00
version = "0.7.2"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "41bfbdb21256b87a8b5e80fab81a8eed158178e812fd7ba451907518b2742f16"
2024-03-11 17:25:47 +00:00
2023-06-02 09:49:18 +00:00
[[package]]
name = "bumpalo"
version = "3.16.0"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
2023-06-02 09:49:18 +00:00
2023-08-07 09:07:24 +00:00
[[package]]
name = "bytemuck"
2024-05-14 17:34:35 +00:00
version = "1.16.0"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "78834c15cb5d5efe3452d58b1e8ba890dd62d21907f867f383358198e56ebca5"
2023-08-07 09:07:24 +00:00
2023-05-24 11:52:24 +00:00
[[package]]
name = "byteorder"
2023-12-12 17:21:35 +00:00
version = "1.5.0"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2023-05-24 11:52:24 +00:00
2024-05-14 17:34:35 +00:00
[[package]]
name = "byteorder-lite"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
2023-05-24 12:38:18 +00:00
[[package]]
name = "bytes"
version = "1.6.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
2023-05-24 12:38:18 +00:00
[[package]]
name = "bytestring"
2023-12-12 17:21:35 +00:00
version = "1.3.1"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "74d80203ea6b29df88012294f62733de21cfeab47f17b41af3a38bc30a03ee72"
2023-05-24 12:38:18 +00:00
dependencies = [
"bytes",
]
2023-08-17 15:37:44 +00:00
[[package]]
name = "bzip2"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
dependencies = [
"bzip2-sys",
"libc",
]
[[package]]
name = "bzip2-sys"
version = "0.1.11+1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
dependencies = [
"cc",
"libc",
"pkg-config",
]
2023-05-24 11:52:24 +00:00
[[package]]
name = "cc"
2024-05-14 17:34:35 +00:00
version = "1.0.97"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4"
2023-05-24 12:38:18 +00:00
dependencies = [
"jobserver",
2023-12-12 17:21:35 +00:00
"libc",
2024-05-14 17:34:35 +00:00
"once_cell",
2023-05-24 12:38:18 +00:00
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "cfg-expr"
2024-05-14 17:34:35 +00:00
version = "0.15.8"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
2024-03-11 17:25:47 +00:00
dependencies = [
"smallvec",
"target-lexicon",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2023-05-24 11:52:24 +00:00
2023-08-04 17:03:46 +00:00
[[package]]
name = "chrono"
2024-05-14 17:34:35 +00:00
version = "0.4.38"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
2023-08-04 17:03:46 +00:00
dependencies = [
"android-tzdata",
"iana-time-zone",
"js-sys",
2023-08-04 17:03:46 +00:00
"num-traits",
"serde",
"wasm-bindgen",
2024-05-14 17:34:35 +00:00
"windows-targets 0.52.5",
2023-12-12 17:21:35 +00:00
]
[[package]]
name = "chumsky"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eebd66744a15ded14960ab4ccdbfb51ad3b81f51f3f04a80adac98c985396c9"
dependencies = [
2024-05-14 17:34:35 +00:00
"hashbrown 0.14.5",
2023-12-12 17:21:35 +00:00
"stacker",
2023-08-04 17:03:46 +00:00
]
2023-05-31 11:33:26 +00:00
[[package]]
name = "cipher"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
"crypto-common",
"inout",
]
2023-05-24 11:52:24 +00:00
[[package]]
name = "clap"
2024-07-24 00:07:23 +00:00
version = "4.5.10"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-24 00:07:23 +00:00
checksum = "8f6b81fb3c84f5563d509c59b5a48d935f689e993afa90fe39047f05adef9142"
2023-05-24 11:52:24 +00:00
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
2024-07-24 00:07:23 +00:00
version = "4.5.10"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-24 00:07:23 +00:00
checksum = "5ca6706fd5224857d9ac5eb9355f6683563cc0541c7cd9d014043b57cbec78ac"
2023-05-24 11:52:24 +00:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
"strsim 0.11.1",
2023-05-24 11:52:24 +00:00
]
[[package]]
name = "clap_derive"
2024-06-29 00:15:23 +00:00
version = "4.5.8"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-29 00:15:23 +00:00
checksum = "2bac35c6dafb060fd4d275d9a4ffae97917c13a6327903a8be2153cd964f7085"
2023-05-24 11:52:24 +00:00
dependencies = [
"heck",
2023-05-24 11:52:24 +00:00
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-05-24 11:52:24 +00:00
]
[[package]]
name = "clap_lex"
2024-03-11 17:25:47 +00:00
version = "0.7.0"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
2023-05-24 11:52:24 +00:00
2023-08-07 09:07:24 +00:00
[[package]]
name = "color_quant"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
2023-05-24 11:52:24 +00:00
[[package]]
name = "colorchoice"
2024-05-14 17:34:35 +00:00
version = "1.0.1"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
2023-05-24 11:52:24 +00:00
2023-05-26 15:55:19 +00:00
[[package]]
name = "combine"
2024-05-14 17:34:35 +00:00
version = "4.6.7"
2023-05-26 15:55:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
2023-05-26 15:55:19 +00:00
dependencies = [
"bytes",
"memchr",
]
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
[[package]]
name = "const-random"
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
dependencies = [
"const-random-macro",
]
[[package]]
name = "const-random-macro"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
dependencies = [
"getrandom",
"once_cell",
"tiny-keccak",
]
2023-08-17 15:37:44 +00:00
[[package]]
name = "constant_time_eq"
2024-05-14 17:34:35 +00:00
version = "0.3.0"
2023-08-17 15:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
2023-08-17 15:37:44 +00:00
2023-05-24 12:38:18 +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-05-30 13:12:58 +00:00
[[package]]
name = "core-foundation"
2023-12-12 17:21:35 +00:00
version = "0.9.4"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
2023-05-30 13:12:58 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "core-foundation-sys"
2023-12-12 17:21:35 +00:00
version = "0.8.6"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
2023-05-30 13:12:58 +00:00
2023-05-24 12:38:18 +00:00
[[package]]
name = "cpufeatures"
2024-03-11 17:25:47 +00:00
version = "0.2.12"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
2023-05-24 12:38:18 +00:00
dependencies = [
"libc",
]
2024-05-14 17:34:35 +00:00
[[package]]
name = "crc"
version = "3.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
2023-05-24 12:38:18 +00:00
[[package]]
name = "crc32fast"
2024-06-03 00:12:03 +00:00
version = "1.4.2"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-03 00:12:03 +00:00
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
2023-05-24 12:38:18 +00:00
dependencies = [
"cfg-if",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "crossbeam-deque"
2024-03-11 17:25:47 +00:00
version = "0.8.5"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
2023-08-07 09:07:24 +00:00
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2024-03-11 17:25:47 +00:00
version = "0.9.18"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
2023-08-07 09:07:24 +00:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2024-06-03 00:12:03 +00:00
version = "0.8.20"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-03 00:12:03 +00:00
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
2023-08-07 09:07:24 +00:00
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
2023-05-24 12:38:18 +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",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "csv"
2023-12-12 17:21:35 +00:00
version = "1.3.0"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
2023-08-04 17:03:46 +00:00
dependencies = [
"csv-core",
"itoa",
"ryu",
"serde",
]
[[package]]
name = "csv-core"
2023-12-12 17:21:35 +00:00
version = "0.1.11"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
2023-08-04 17:03:46 +00:00
dependencies = [
"memchr",
]
[[package]]
name = "darling"
2024-03-11 17:25:47 +00:00
version = "0.20.8"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "54e36fcd13ed84ffdfda6f5be89b31287cbb80c439841fe69e04841435464391"
2023-08-04 17:03:46 +00:00
dependencies = [
"darling_core",
"darling_macro",
2023-08-04 17:03:46 +00:00
]
[[package]]
name = "darling_core"
2024-03-11 17:25:47 +00:00
version = "0.20.8"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "9c2cf1c23a687a1feeb728783b993c4e1ad83d99f351801977dd809b48d0a70f"
2023-08-04 17:03:46 +00:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
2024-03-11 17:25:47 +00:00
"strsim 0.10.0",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-08-04 17:03:46 +00:00
]
[[package]]
name = "darling_macro"
2024-03-11 17:25:47 +00:00
version = "0.20.8"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "a668eda54683121533a393014d8692171709ff57a7d61f187b6e782719f8933f"
2023-08-04 17:03:46 +00:00
dependencies = [
"darling_core",
2023-08-04 17:03:46 +00:00
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-12-12 17:21:35 +00:00
]
2024-05-14 17:34:35 +00:00
[[package]]
name = "deflate64"
2024-07-20 00:08:20 +00:00
version = "0.1.9"
2024-05-14 17:34:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-20 00:08:20 +00:00
checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
2024-05-14 17:34:35 +00:00
2023-12-12 17:21:35 +00:00
[[package]]
name = "deranged"
2024-03-11 17:25:47 +00:00
version = "0.3.11"
2023-12-12 17:21:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
2023-12-12 17:21:35 +00:00
dependencies = [
"powerfmt",
"serde",
2023-08-04 17:03:46 +00:00
]
2024-05-14 17:34:35 +00:00
[[package]]
name = "derive_arbitrary"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.63",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "derive_more"
version = "0.99.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
dependencies = [
"convert_case",
"proc-macro2",
"quote",
"rustc_version",
"syn 1.0.109",
]
2023-05-24 11:52:24 +00:00
[[package]]
name = "diesel"
2024-07-20 00:08:16 +00:00
version = "2.2.2"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-20 00:08:16 +00:00
checksum = "bf97ee7261bb708fa3402fa9c17a54b70e90e3cb98afb3dc8999d5512cb03f94"
2023-05-24 11:52:24 +00:00
dependencies = [
"bitflags 2.5.0",
2023-05-24 11:52:24 +00:00
"byteorder",
"diesel_derives",
"itoa",
"pq-sys",
]
[[package]]
name = "diesel_derives"
version = "2.2.0"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d6fdd83d5947068817016e939596d246e5367279453f2a3433287894f2f2996"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-07-04 16:47:37 +00:00
"diesel_table_macro_syntax",
"dsl_auto_type",
2023-05-24 11:52:24 +00:00
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-07-04 16:47:37 +00:00
]
[[package]]
name = "diesel_migrations"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a73ce704bad4231f001bff3314d91dce4aba0770cee8b233991859abc15c1f6"
dependencies = [
"diesel",
"migrations_internals",
"migrations_macros",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "diesel_table_macro_syntax"
version = "0.2.0"
2023-07-04 16:47:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "209c735641a413bc68c4923a9d6ad4bcb3ca306b794edaa7eb0b3228a99ffb25"
2023-07-04 16:47:37 +00:00
dependencies = [
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-05-24 11:52:24 +00:00
]
[[package]]
2023-05-24 12:38:18 +00:00
name = "digest"
version = "0.10.7"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"block-buffer",
"crypto-common",
2023-08-05 12:49:17 +00:00
"subtle",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "dirs-next"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
"cfg-if",
"dirs-sys-next",
]
[[package]]
name = "dirs-sys-next"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
dependencies = [
"libc",
"redox_users",
"winapi",
]
2024-05-14 17:34:35 +00:00
[[package]]
name = "displaydoc"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.63",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "dlv-list"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
version = "0.5.2"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
dependencies = [
"const-random",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "dsl_auto_type"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab32c18ea6760d951659768a3e35ea72fc1ba0916d665a88dfe048b2a41e543f"
dependencies = [
"darling",
"either",
"heck",
"proc-macro2",
"quote",
"syn 2.0.63",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "either"
2024-05-14 17:34:35 +00:00
version = "1.11.0"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
2023-08-07 09:07:24 +00:00
2023-05-30 13:12:58 +00:00
[[package]]
name = "email-encoding"
2024-03-29 00:20:06 +00:00
version = "0.3.0"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 00:20:06 +00:00
checksum = "60d1d33cdaede7e24091f039632eb5d3c7469fe5b066a985281a34fc70fa317f"
2023-05-30 13:12:58 +00:00
dependencies = [
2024-05-05 00:05:01 +00:00
"base64 0.22.1",
2023-05-30 13:12:58 +00:00
"memchr",
]
[[package]]
name = "email_address"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2153bd83ebc09db15bcbdc3e2194d901804952e3dc96967e1cd3b0c5c32d112"
2023-08-04 17:03:46 +00:00
[[package]]
name = "encode_unicode"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "encoding_rs"
2024-05-14 17:34:35 +00:00
version = "0.8.34"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"cfg-if",
2023-05-24 11:52:24 +00:00
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "env_filter"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
dependencies = [
"log",
"regex",
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "env_logger"
2024-03-11 17:25:47 +00:00
version = "0.11.3"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9"
2023-05-24 11:52:24 +00:00
dependencies = [
2024-03-11 17:25:47 +00:00
"anstream",
"anstyle",
"env_filter",
2023-05-24 12:38:18 +00:00
"humantime",
"log",
2023-05-24 11:52:24 +00:00
]
[[package]]
2023-12-12 17:21:35 +00:00
name = "equivalent"
version = "1.0.1"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-05-24 11:52:24 +00:00
[[package]]
2023-12-12 17:21:35 +00:00
name = "errno"
2024-05-14 17:34:35 +00:00
version = "0.3.9"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
2023-05-24 11:52:24 +00:00
dependencies = [
"libc",
2023-12-12 17:21:35 +00:00
"windows-sys 0.52.0",
2023-05-24 11:52:24 +00:00
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "exr"
2024-03-11 17:25:47 +00:00
version = "1.72.0"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "887d93f60543e9a9362ef8a21beedd0a833c5d9610e18c67abe15a5963dcb1a4"
2023-08-07 09:07:24 +00:00
dependencies = [
"bit_field",
"flume",
"half",
"lebe",
"miniz_oxide",
"rayon-core",
"smallvec",
"zune-inflate",
]
2023-05-25 07:22:49 +00:00
[[package]]
name = "fast_chemail"
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4"
dependencies = [
"ascii_utils",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "fastrand"
2024-05-14 17:34:35 +00:00
version = "2.1.0"
2023-08-18 11:41:20 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
2023-08-18 11:41:20 +00:00
2023-08-07 09:07:24 +00:00
[[package]]
name = "fdeflate"
2024-03-11 17:25:47 +00:00
version = "0.3.4"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
2023-08-07 09:07:24 +00:00
dependencies = [
"simd-adler32",
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "flate2"
2024-05-14 17:34:35 +00:00
version = "1.0.30"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"crc32fast",
"miniz_oxide",
2023-05-24 11:52:24 +00:00
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "flume"
2023-12-12 17:21:35 +00:00
version = "0.11.0"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
2023-08-07 09:07:24 +00:00
dependencies = [
"spin",
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "fnv"
version = "1.0.7"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2023-05-24 11:52:24 +00:00
2023-05-30 13:12:58 +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-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "form_urlencoded"
2023-12-12 17:21:35 +00:00
version = "1.2.1"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
2023-05-24 12:38:18 +00:00
dependencies = [
"percent-encoding",
]
2023-05-24 11:52:24 +00:00
2023-08-05 12:49:17 +00:00
[[package]]
name = "futures"
2024-03-11 17:25:47 +00:00
version = "0.3.30"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
2023-08-05 12:49:17 +00:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "futures-channel"
2024-03-11 17:25:47 +00:00
version = "0.3.30"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
2023-06-02 09:49:18 +00:00
dependencies = [
"futures-core",
2023-08-05 12:49:17 +00:00
"futures-sink",
2023-06-02 09:49:18 +00:00
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "futures-core"
2024-03-11 17:25:47 +00:00
version = "0.3.30"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
2023-05-24 11:52:24 +00:00
2023-08-05 12:49:17 +00:00
[[package]]
name = "futures-executor"
2024-03-11 17:25:47 +00:00
version = "0.3.30"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
2023-08-05 12:49:17 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "futures-io"
2024-03-11 17:25:47 +00:00
version = "0.3.30"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
2023-05-30 13:12:58 +00:00
2023-05-24 14:19:46 +00:00
[[package]]
name = "futures-macro"
2024-03-11 17:25:47 +00:00
version = "0.3.30"
2023-05-24 14:19:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
2023-05-24 14:19:46 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-05-24 14:19:46 +00:00
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "futures-sink"
2024-03-11 17:25:47 +00:00
version = "0.3.30"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "futures-task"
2024-03-11 17:25:47 +00:00
version = "0.3.30"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
2023-05-24 12:38:18 +00:00
[[package]]
name = "futures-util"
2024-03-11 17:25:47 +00:00
version = "0.3.30"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-08-05 12:49:17 +00:00
"futures-channel",
2023-05-24 12:38:18 +00:00
"futures-core",
2023-05-30 13:12:58 +00:00
"futures-io",
2023-05-24 14:19:46 +00:00
"futures-macro",
2023-08-05 12:49:17 +00:00
"futures-sink",
2023-05-24 12:38:18 +00:00
"futures-task",
2023-05-30 13:12:58 +00:00
"memchr",
2023-05-24 12:38:18 +00:00
"pin-project-lite",
"pin-utils",
2023-05-24 14:19:46 +00:00
"slab",
2023-05-24 11:52:24 +00:00
]
[[package]]
2023-05-24 12:38:18 +00:00
name = "geneit_backend"
version = "0.1.0"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-06-06 13:47:30 +00:00
"actix-cors",
2023-08-05 17:15:52 +00:00
"actix-multipart",
2023-05-24 14:19:46 +00:00
"actix-remote-ip",
2023-05-24 12:38:18 +00:00
"actix-web",
2023-05-24 14:19:46 +00:00
"anyhow",
2024-05-05 00:05:01 +00:00
"base64 0.22.1",
2023-05-31 11:33:26 +00:00
"bcrypt",
"chrono",
2023-05-24 12:38:18 +00:00
"clap",
"diesel",
"diesel_migrations",
2023-05-24 12:38:18 +00:00
"env_logger",
2023-05-31 13:52:49 +00:00
"futures-util",
2023-08-07 12:53:44 +00:00
"httpdate",
"ical",
2023-08-07 09:07:24 +00:00
"image",
"lazy-regex",
2023-05-24 12:38:18 +00:00
"lazy_static",
2023-05-30 13:12:58 +00:00
"lettre",
2023-06-02 09:49:18 +00:00
"light-openid",
2023-05-24 12:38:18 +00:00
"log",
2023-05-25 07:22:49 +00:00
"mailchecker",
2023-08-17 15:37:44 +00:00
"mime_guess",
2023-05-30 13:12:58 +00:00
"rand",
2023-05-26 15:55:19 +00:00
"redis",
2023-08-05 12:49:17 +00:00
"rust-s3",
2023-08-04 17:03:46 +00:00
"rust_iso3166",
2023-05-24 12:38:18 +00:00
"serde",
2023-05-26 15:55:19 +00:00
"serde_json",
2023-08-04 17:03:46 +00:00
"serde_with",
2023-08-07 09:07:24 +00:00
"sha2",
2023-08-18 11:41:20 +00:00
"tempfile",
2023-06-02 13:04:49 +00:00
"thiserror",
2023-08-07 09:07:24 +00:00
"uuid",
2023-08-17 15:37:44 +00:00
"zip",
2023-05-24 11:52:24 +00:00
]
[[package]]
2023-05-24 12:38:18 +00:00
name = "generic-array"
version = "0.14.7"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"typenum",
2023-05-24 11:52:24 +00:00
"version_check",
]
[[package]]
2023-05-24 12:38:18 +00:00
name = "getrandom"
2024-05-14 17:34:35 +00:00
version = "0.2.15"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"cfg-if",
"libc",
"wasi",
2023-08-07 09:07:24 +00:00
]
[[package]]
name = "gif"
2024-02-24 00:12:14 +00:00
version = "0.13.1"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-24 00:12:14 +00:00
checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2"
2023-08-07 09:07:24 +00:00
dependencies = [
"color_quant",
"weezl",
2023-05-24 11:52:24 +00:00
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "gimli"
2023-12-12 17:21:35 +00:00
version = "0.28.1"
2023-07-04 16:47:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
2023-07-04 16:47:37 +00:00
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "h2"
version = "0.3.26"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
2023-05-24 11:52:24 +00:00
dependencies = [
2023-05-24 12:38:18 +00:00
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http 0.2.12",
"indexmap 2.2.6",
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "h2"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "816ec7294445779408f36fe57bc5b7fc1cf59664059096c65f905c1c61f58069"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http 1.1.0",
"indexmap 2.2.6",
2023-05-24 12:38:18 +00:00
"slab",
"tokio",
"tokio-util",
"tracing",
2023-05-24 11:52:24 +00:00
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "half"
version = "2.4.1"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
2023-08-07 09:07:24 +00:00
dependencies = [
2024-03-11 17:25:47 +00:00
"cfg-if",
2023-08-07 09:07:24 +00:00
"crunchy",
]
2023-05-24 11:52:24 +00:00
[[package]]
2023-05-24 12:38:18 +00:00
name = "hashbrown"
version = "0.12.3"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-24 12:38:18 +00:00
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
[[package]]
name = "hashbrown"
version = "0.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
2023-12-12 17:21:35 +00:00
[[package]]
name = "hashbrown"
2024-05-14 17:34:35 +00:00
version = "0.14.5"
2023-12-12 17:21:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2023-12-12 17:21:35 +00:00
dependencies = [
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"ahash",
2023-12-12 17:21:35 +00:00
"allocator-api2",
2023-08-05 12:49:17 +00:00
]
2023-05-24 12:38:18 +00:00
2024-03-27 00:24:26 +00:00
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2023-05-24 12:38:18 +00:00
[[package]]
name = "hermit-abi"
2024-03-11 17:25:47 +00:00
version = "0.3.9"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2023-05-24 12:38:18 +00:00
2023-08-04 17:03:46 +00:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2023-08-05 12:49:17 +00:00
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest",
]
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
[[package]]
name = "home"
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
dependencies = [
"windows-sys 0.52.0",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "hostname"
2024-04-24 00:16:59 +00:00
version = "0.4.0"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-24 00:16:59 +00:00
checksum = "f9c7c7c8ac16c798734b8a24560c1362120597c40d5e1459f09498f8f6c8f2ba"
2023-05-30 13:12:58 +00:00
dependencies = [
2024-04-24 00:16:59 +00:00
"cfg-if",
2023-05-30 13:12:58 +00:00
"libc",
2024-04-24 00:16:59 +00:00
"windows",
2023-05-30 13:12:58 +00:00
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "http"
2024-03-11 17:25:47 +00:00
version = "0.2.12"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
2023-05-24 12:38:18 +00:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
dependencies = [
"bytes",
"fnv",
"itoa",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "http-body"
2024-03-11 17:25:47 +00:00
version = "0.4.6"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
2023-06-02 09:49:18 +00:00
dependencies = [
"bytes",
"http 0.2.12",
"pin-project-lite",
]
[[package]]
name = "http-body"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
dependencies = [
"bytes",
"http 1.1.0",
]
[[package]]
name = "http-body-util"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0475f8b2ac86659c21b64320d5d653f9efe42acd2a4e560073ec61a155a34f1d"
dependencies = [
"bytes",
"futures-core",
"http 1.1.0",
"http-body 1.0.0",
2023-06-02 09:49:18 +00:00
"pin-project-lite",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
[[package]]
name = "httpdate"
2023-08-26 00:32:00 +00:00
version = "1.0.3"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-26 00:32:00 +00:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2023-05-24 12:38:18 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
2023-06-02 09:49:18 +00:00
[[package]]
name = "hyper"
2024-03-11 17:25:47 +00:00
version = "0.14.28"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
2023-06-02 09:49:18 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"http 0.2.12",
"http-body 0.4.6",
2023-06-02 09:49:18 +00:00
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
2024-04-06 00:11:37 +00:00
"socket2",
2023-06-02 09:49:18 +00:00
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper"
2024-05-14 17:34:35 +00:00
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "fe575dd17d0862a9a33781c8c4696a55c320909004a67a00fb286ba8b1bc496d"
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"h2 0.4.4",
"http 1.1.0",
"http-body 1.0.0",
"httparse",
"itoa",
"pin-project-lite",
"smallvec",
"tokio",
"want",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
"bytes",
"hyper 0.14.28",
2023-06-02 09:49:18 +00:00
"native-tls",
"tokio",
"tokio-native-tls",
]
[[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-05-14 17:34:35 +00:00
"hyper 1.3.1",
"hyper-util",
2023-06-02 09:49:18 +00:00
"native-tls",
"tokio",
"tokio-native-tls",
"tower-service",
]
[[package]]
name = "hyper-util"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca38ef113da30126bbff9cd1705f9273e15d45498615d138b0c20279ac7a76aa"
dependencies = [
"bytes",
"futures-channel",
"futures-util",
"http 1.1.0",
"http-body 1.0.0",
2024-05-14 17:34:35 +00:00
"hyper 1.3.1",
"pin-project-lite",
"socket2",
"tokio",
"tower",
"tower-service",
"tracing",
2023-06-02 09:49:18 +00:00
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "iana-time-zone"
2024-03-11 17:25:47 +00:00
version = "0.1.60"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
2023-08-04 17:03:46 +00:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
2023-12-12 17:21:35 +00:00
"windows-core",
2023-08-04 17:03:46 +00:00
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
"cc",
]
[[package]]
name = "ical"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b7cab7543a8b7729a19e2c04309f902861293dcdae6558dfbeb634454d279f6"
dependencies = [
"thiserror",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2023-05-24 12:38:18 +00:00
[[package]]
name = "idna"
2023-12-12 17:21:35 +00:00
version = "0.5.0"
2023-07-04 16:47:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
2023-07-04 16:47:37 +00:00
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "image"
2024-07-22 00:06:31 +00:00
version = "0.25.2"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-22 00:06:31 +00:00
checksum = "99314c8a2152b8ddb211f924cdae532d8c5e4c8bb54728e12fff1b0cd5963a10"
2023-08-07 09:07:24 +00:00
dependencies = [
"bytemuck",
2024-07-22 00:06:31 +00:00
"byteorder-lite",
2023-08-07 09:07:24 +00:00
"color_quant",
"exr",
"gif",
2024-03-11 17:25:47 +00:00
"image-webp",
2023-08-07 09:07:24 +00:00
"num-traits",
"png",
"qoi",
2024-03-11 17:25:47 +00:00
"ravif",
"rayon",
"rgb",
2023-08-07 09:07:24 +00:00
"tiff",
2024-03-11 17:25:47 +00:00
"zune-core",
"zune-jpeg",
2023-08-07 09:07:24 +00:00
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "image-webp"
2024-05-14 17:34:35 +00:00
version = "0.1.2"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "d730b085583c4d789dfd07fdcf185be59501666a90c97c40162b37e4fdad272d"
2024-03-11 17:25:47 +00:00
dependencies = [
2024-05-14 17:34:35 +00:00
"byteorder-lite",
2024-03-11 17:25:47 +00:00
"thiserror",
]
[[package]]
name = "imgref"
version = "1.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44feda355f4159a7c757171a77de25daf6411e217b4cabd03bd6650690468126"
2023-05-24 12:38:18 +00:00
[[package]]
name = "indexmap"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
2023-12-12 17:21:35 +00:00
"hashbrown 0.12.3",
2023-08-04 17:03:46 +00:00
"serde",
2023-05-24 12:38:18 +00:00
]
2023-05-31 11:33:26 +00:00
[[package]]
2023-12-12 17:21:35 +00:00
name = "indexmap"
version = "2.2.6"
2023-05-31 11:33:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
2023-05-31 11:33:26 +00:00
dependencies = [
2023-12-12 17:21:35 +00:00
"equivalent",
2024-05-14 17:34:35 +00:00
"hashbrown 0.14.5",
2023-12-12 17:21:35 +00:00
"serde",
2023-05-31 11:33:26 +00:00
]
2023-05-30 13:12:58 +00:00
[[package]]
2023-12-12 17:21:35 +00:00
name = "inout"
version = "0.1.3"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
2023-05-30 13:12:58 +00:00
dependencies = [
2023-12-12 17:21:35 +00:00
"generic-array",
2023-05-30 13:12:58 +00:00
]
2024-03-11 17:25:47 +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-05-14 17:34:35 +00:00
"syn 2.0.63",
2024-03-11 17:25:47 +00:00
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "ipnet"
2023-12-12 17:21:35 +00:00
version = "2.9.0"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
2023-06-02 09:49:18 +00:00
2023-05-24 12:38:18 +00:00
[[package]]
name = "is-terminal"
2024-03-11 17:25:47 +00:00
version = "0.4.12"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b"
2023-05-24 12:38:18 +00:00
dependencies = [
2023-07-04 16:47:37 +00:00
"hermit-abi",
2024-03-11 17:25:47 +00:00
"libc",
"windows-sys 0.52.0",
]
2024-05-14 17:34:35 +00:00
[[package]]
name = "is_terminal_polyfill"
version = "1.70.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
2024-03-11 17:25:47 +00:00
[[package]]
name = "itertools"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
dependencies = [
"either",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "itoa"
version = "1.0.11"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
2023-05-24 12:38:18 +00:00
[[package]]
name = "jobserver"
2024-05-14 17:34:35 +00:00
version = "0.1.31"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
2023-05-24 12:38:18 +00:00
dependencies = [
"libc",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "jpeg-decoder"
2024-03-11 17:25:47 +00:00
version = "0.3.1"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
2023-08-07 09:07:24 +00:00
2023-06-02 09:49:18 +00:00
[[package]]
name = "js-sys"
2024-03-11 17:25:47 +00:00
version = "0.3.69"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
2023-06-02 09:49:18 +00:00
dependencies = [
"wasm-bindgen",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "language-tags"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
[[package]]
name = "lazy-regex"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d12be4595afdf58bd19e4a9f4e24187da2a66700786ff660a418e9059937a4c"
dependencies = [
"lazy-regex-proc_macros",
"once_cell",
"regex",
]
[[package]]
name = "lazy-regex-proc_macros"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44bcd58e6c97a7fcbaffcdc95728b393b8d98933bfadad49ed4097845b57ef0b"
dependencies = [
"proc-macro2",
"quote",
"regex",
"syn 2.0.63",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2023-08-07 09:07:24 +00:00
[[package]]
name = "lebe"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
2023-05-30 13:12:58 +00:00
[[package]]
name = "lettre"
2024-04-24 00:16:59 +00:00
version = "0.11.7"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-24 00:16:59 +00:00
checksum = "1a62049a808f1c4e2356a2a380bd5f2aca3b011b0b482cf3b914ba1731426969"
2023-05-30 13:12:58 +00:00
dependencies = [
2024-05-05 00:05:01 +00:00
"base64 0.22.1",
2023-12-12 17:21:35 +00:00
"chumsky",
2023-05-30 13:12:58 +00:00
"email-encoding",
"email_address",
2023-12-12 17:21:35 +00:00
"fastrand",
2023-05-30 13:12:58 +00:00
"futures-util",
"hostname",
"httpdate",
2023-12-12 17:21:35 +00:00
"idna",
2023-05-30 13:12:58 +00:00
"mime",
"native-tls",
"nom",
2024-03-11 17:25:47 +00:00
"percent-encoding",
2023-05-30 13:12:58 +00:00
"quoted_printable",
2024-04-06 00:11:37 +00:00
"socket2",
2023-05-30 13:12:58 +00:00
"tokio",
2023-12-12 17:21:35 +00:00
"url",
2023-05-30 13:12:58 +00:00
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "libc"
2024-05-14 17:34:35 +00:00
version = "0.2.154"
2023-12-12 17:21:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
2023-12-12 17:21:35 +00:00
2024-03-11 17:25:47 +00:00
[[package]]
name = "libfuzzer-sys"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7"
dependencies = [
"arbitrary",
2024-03-11 17:25:47 +00:00
"cc",
"once_cell",
]
2023-12-12 17:21:35 +00:00
[[package]]
name = "libredox"
version = "0.1.3"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
2023-12-12 17:21:35 +00:00
dependencies = [
"bitflags 2.5.0",
2023-12-12 17:21:35 +00:00
"libc",
]
2023-05-24 12:38:18 +00:00
2023-06-02 09:49:18 +00:00
[[package]]
name = "light-openid"
version = "1.0.2"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "740b0dd2309a8d6f7ef6612ce58692407b87e1cd33728b8d1dfec639faa27066"
2023-06-02 09:49:18 +00:00
dependencies = [
2024-05-05 00:05:01 +00:00
"base64 0.22.1",
2023-06-02 09:49:18 +00:00
"log",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"reqwest",
2023-06-02 09:49:18 +00:00
"serde",
"serde_json",
"urlencoding",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "linux-raw-sys"
2024-03-11 17:25:47 +00:00
version = "0.4.13"
2023-07-04 16:47:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
2023-07-04 16:47:37 +00:00
2023-05-24 12:38:18 +00:00
[[package]]
name = "local-channel"
2023-12-12 17:21:35 +00:00
version = "0.1.5"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8"
2023-05-24 12:38:18 +00:00
dependencies = [
"futures-core",
"futures-sink",
"local-waker",
]
[[package]]
name = "local-waker"
2023-12-12 17:21:35 +00:00
version = "0.1.4"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
2023-05-24 12:38:18 +00:00
[[package]]
name = "lock_api"
2024-05-14 17:34:35 +00:00
version = "0.4.12"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2023-05-24 12:38:18 +00:00
dependencies = [
"autocfg",
"scopeguard",
]
2024-05-25 00:24:55 +00:00
[[package]]
name = "lockfree-object-pool"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
2023-05-24 12:38:18 +00:00
[[package]]
name = "log"
2024-06-29 00:15:27 +00:00
version = "0.4.22"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-29 00:15:27 +00:00
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2023-05-24 12:38:18 +00:00
2024-03-11 17:25:47 +00:00
[[package]]
name = "loop9"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
dependencies = [
"imgref",
]
2024-05-14 17:34:35 +00:00
[[package]]
name = "lzma-rs"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
dependencies = [
"byteorder",
"crc",
]
2023-05-25 07:22:49 +00:00
[[package]]
name = "mailchecker"
version = "6.0.5"
2023-05-25 07:22:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37614f18c61fd8d4a025bc82775f4b435d8e025d6ac499af42451356f985ac97"
2023-05-25 07:22:49 +00:00
dependencies = [
"fast_chemail",
"once_cell",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "maybe-async"
2024-03-11 17:25:47 +00:00
version = "0.2.10"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11"
2023-08-05 12:49:17 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2024-03-11 17:25:47 +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",
"rayon",
2023-08-05 12:49:17 +00:00
]
[[package]]
name = "md5"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
2023-05-24 12:38:18 +00:00
[[package]]
name = "memchr"
version = "2.7.2"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
2023-08-07 09:07:24 +00:00
[[package]]
name = "migrations_internals"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd01039851e82f8799046eabbb354056283fb265c8ec0996af940f4e85a380ff"
dependencies = [
"serde",
"toml",
]
[[package]]
name = "migrations_macros"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffb161cc72176cb37aa47f1fc520d3ef02263d67d661f44f05d05a079e1237fd"
dependencies = [
"migrations_internals",
"proc-macro2",
"quote",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2023-08-17 15:37:44 +00:00
[[package]]
name = "mime_guess"
2024-06-30 00:06:16 +00:00
version = "2.0.5"
2023-08-17 15:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-30 00:06:16 +00:00
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2023-08-17 15:37:44 +00:00
dependencies = [
"mime",
"unicase",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "minidom"
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f45614075738ce1b77a1768912a60c0227525971b03e09122a05b8a34a2a6278"
dependencies = [
"rxml",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2023-05-24 12:38:18 +00:00
[[package]]
name = "miniz_oxide"
2024-03-11 17:25:47 +00:00
version = "0.7.2"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
2023-05-24 12:38:18 +00:00
dependencies = [
"adler",
2023-08-07 09:07:24 +00:00
"simd-adler32",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "mio"
2024-03-11 17:25:47 +00:00
version = "0.8.11"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
2023-05-24 12:38:18 +00:00
dependencies = [
"libc",
"log",
"wasi",
2023-12-12 17:21:35 +00:00
"windows-sys 0.48.0",
2023-08-07 09:07:24 +00:00
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "native-tls"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
dependencies = [
"lazy_static",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "new_debug_unreachable"
version = "1.0.6"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
2024-03-11 17:25:47 +00:00
2023-05-30 13:12:58 +00:00
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "noop_proc_macro"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
[[package]]
name = "num-bigint"
2024-05-14 17:34:35 +00:00
version = "0.4.5"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "c165a9ab64cf766f73521c0dd2cfdff64f488b8f0b3e621face3462d3db536d7"
2024-03-11 17:25:47 +00:00
dependencies = [
"num-integer",
"num-traits",
]
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
[[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-05-14 17:34:35 +00:00
"syn 2.0.63",
2024-03-11 17:25:47 +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",
]
[[package]]
name = "num-rational"
2024-05-14 17:34:35 +00:00
version = "0.4.2"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
2024-03-11 17:25:47 +00:00
dependencies = [
"num-bigint",
"num-integer",
"num-traits",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "num-traits"
2024-05-14 17:34:35 +00:00
version = "0.2.19"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2023-08-04 17:03:46 +00:00
dependencies = [
"autocfg",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "object"
2024-03-11 17:25:47 +00:00
version = "0.32.2"
2023-07-04 16:47:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
2023-07-04 16:47:37 +00:00
dependencies = [
"memchr",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "once_cell"
2024-03-11 17:25:47 +00:00
version = "1.19.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2023-05-24 12:38:18 +00:00
2023-05-30 13:12:58 +00:00
[[package]]
name = "openssl"
2024-03-11 17:25:47 +00:00
version = "0.10.64"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
2023-05-30 13:12:58 +00:00
dependencies = [
"bitflags 2.5.0",
2023-05-30 13:12:58 +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-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-05-30 13:12:58 +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"
version = "0.9.102"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
2023-05-30 13:12:58 +00:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "ordered-multimap"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
version = "0.6.0"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
checksum = "4ed8acf08e98e744e5384c8bc63ceb0364e68a6854187221c18df61c4797690e"
2023-08-05 12:49:17 +00:00
dependencies = [
"dlv-list",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"hashbrown 0.13.2",
2023-08-05 12:49:17 +00:00
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "parking_lot"
2024-05-14 17:34:35 +00:00
version = "0.12.2"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb"
2023-05-24 12:38:18 +00:00
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2024-05-14 17:34:35 +00:00
version = "0.9.10"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2023-05-24 12:38:18 +00:00
dependencies = [
"cfg-if",
"libc",
2023-12-12 17:21:35 +00:00
"redox_syscall",
2023-05-24 12:38:18 +00:00
"smallvec",
2024-05-14 17:34:35 +00:00
"windows-targets 0.52.5",
2023-05-24 12:38:18 +00:00
]
2023-08-05 17:15:52 +00:00
[[package]]
name = "parse-size"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "944553dd59c802559559161f9816429058b869003836120e262e8caec061b7ae"
2023-05-24 12:38:18 +00:00
[[package]]
name = "paste"
2024-05-14 17:34:35 +00:00
version = "1.0.15"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2023-05-24 12:38:18 +00:00
2023-08-17 15:37:44 +00:00
[[package]]
name = "pbkdf2"
2024-05-14 17:34:35 +00:00
version = "0.12.2"
2023-08-17 15:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
2023-08-17 15:37:44 +00:00
dependencies = [
"digest",
"hmac",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "percent-encoding"
2023-12-12 17:21:35 +00:00
version = "2.3.1"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2023-05-24 12:38:18 +00:00
2023-08-04 17:03:46 +00:00
[[package]]
name = "phf"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
dependencies = [
"phf_macros",
"phf_shared",
]
[[package]]
name = "phf_generator"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
dependencies = [
"phf_shared",
"rand",
]
[[package]]
name = "phf_macros"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
dependencies = [
"phf_generator",
"phf_shared",
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-08-04 17:03:46 +00:00
]
[[package]]
name = "phf_shared"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
dependencies = [
"siphasher",
]
[[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-05-14 17:34:35 +00:00
"syn 2.0.63",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "pin-project-lite"
version = "0.2.14"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2023-05-24 12:38:18 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2024-03-11 17:25:47 +00:00
version = "0.3.30"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
2023-05-24 12:38:18 +00:00
2023-08-07 09:07:24 +00:00
[[package]]
name = "png"
2024-03-11 17:25:47 +00:00
version = "0.17.13"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
2023-08-07 09:07:24 +00:00
dependencies = [
"bitflags 1.3.2",
"crc32fast",
"fdeflate",
"flate2",
"miniz_oxide",
]
2023-12-12 17:21:35 +00:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2023-05-24 12:38:18 +00:00
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
[[package]]
name = "pq-sys"
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31c0052426df997c0cbd30789eb44ca097e3541717a7b8fa36b1c464ee7edebd"
dependencies = [
"vcpkg",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "prettytable-rs"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a"
dependencies = [
"csv",
"encode_unicode",
"is-terminal",
"lazy_static",
"term",
"unicode-width",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "proc-macro2"
2024-05-14 17:34:35 +00:00
version = "1.0.82"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
2023-05-24 12:38:18 +00:00
dependencies = [
"unicode-ident",
]
2024-03-11 17:25:47 +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-05-14 17:34:35 +00:00
"syn 2.0.63",
2024-03-11 17:25:47 +00:00
]
2023-12-12 17:21:35 +00:00
[[package]]
name = "psm"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
dependencies = [
"cc",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "qoi"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
dependencies = [
"bytemuck",
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "quick-error"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2023-08-05 12:49:17 +00:00
[[package]]
name = "quick-xml"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
version = "0.30.0"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956"
2023-08-05 12:49:17 +00:00
dependencies = [
"memchr",
"serde",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "quote"
2024-05-14 17:34:35 +00:00
version = "1.0.36"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2023-05-24 12:38:18 +00:00
dependencies = [
"proc-macro2",
]
2023-05-30 13:12:58 +00:00
[[package]]
name = "quoted_printable"
2023-12-12 17:21:35 +00:00
version = "0.5.0"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "79ec282e887b434b68c18fe5c121d38e72a5cf35119b59e54ec5b992ea9c8eb0"
2023-05-30 13:12:58 +00:00
2023-05-24 12:38:18 +00:00
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
"getrandom",
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "rav1e"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9"
dependencies = [
"arbitrary",
2024-03-11 17:25:47 +00:00
"arg_enum_proc_macro",
"arrayvec",
"av1-grain",
"bitstream-io",
"built",
2024-03-11 17:25:47 +00:00
"cfg-if",
"interpolate_name",
"itertools",
2024-03-11 17:25:47 +00:00
"libc",
"libfuzzer-sys",
2024-03-11 17:25:47 +00:00
"log",
"maybe-rayon",
"new_debug_unreachable",
"noop_proc_macro",
"num-derive",
2024-03-11 17:25:47 +00:00
"num-traits",
"once_cell",
"paste",
"profiling",
"rand",
"rand_chacha",
"simd_helpers",
"system-deps",
"thiserror",
"v_frame",
"wasm-bindgen",
2024-03-11 17:25:47 +00:00
]
[[package]]
name = "ravif"
version = "0.11.5"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc13288f5ab39e6d7c9d501759712e6969fcc9734220846fc9ed26cae2cc4234"
2024-03-11 17:25:47 +00:00
dependencies = [
"avif-serialize",
"imgref",
"loop9",
"quick-error",
"rav1e",
2024-03-11 17:25:47 +00:00
"rayon",
"rgb",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "rayon"
version = "1.10.0"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2023-08-07 09:07:24 +00:00
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2024-03-11 17:25:47 +00:00
version = "1.12.1"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2023-08-07 09:07:24 +00:00
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
]
2023-05-26 15:55:19 +00:00
[[package]]
name = "redis"
2024-05-30 00:20:12 +00:00
version = "0.25.4"
2023-05-26 15:55:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-30 00:20:12 +00:00
checksum = "e0d7a6955c7511f60f3ba9e86c6d02b3c3f144f8c24b288d1f4e18074ab8bbec"
2023-05-26 15:55:19 +00:00
dependencies = [
"combine",
"itoa",
"percent-encoding",
"ryu",
"sha1_smol",
2024-04-06 00:11:37 +00:00
"socket2",
2023-05-26 15:55:19 +00:00
"url",
]
2023-10-27 00:25:48 +00:00
[[package]]
name = "redox_syscall"
2024-05-14 17:34:35 +00:00
version = "0.5.1"
2023-10-27 00:25:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e"
2023-10-27 00:25:48 +00:00
dependencies = [
2024-05-14 17:34:35 +00:00
"bitflags 2.5.0",
2023-10-27 00:25:48 +00:00
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "redox_users"
version = "0.4.5"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
2023-08-04 17:03:46 +00:00
dependencies = [
"getrandom",
2023-12-12 17:21:35 +00:00
"libredox",
2023-08-04 17:03:46 +00:00
"thiserror",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "regex"
version = "1.10.4"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
2023-12-12 17:21:35 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-automata",
"regex-syntax",
]
[[package]]
name = "regex-automata"
2024-03-11 17:25:47 +00:00
version = "0.4.6"
2023-12-12 17:21:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
2023-05-24 12:38:18 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
2024-05-20 00:25:34 +00:00
[[package]]
name = "regex-lite"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30b661b2f27137bdbc16f00eda72866a92bb28af1753ffbd56744fb6e2e9cd8e"
2023-05-24 12:38:18 +00:00
[[package]]
name = "regex-syntax"
version = "0.8.3"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
2023-05-24 12:38:18 +00:00
[[package]]
name = "reqwest"
2024-05-14 17:34:35 +00:00
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "566cafdd92868e0939d3fb961bd0dc25fcfaaed179291093b3d43e6b3150ea10"
dependencies = [
2024-05-05 00:05:01 +00:00
"base64 0.22.1",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2 0.4.4",
"http 1.1.0",
"http-body 1.0.0",
"http-body-util",
2024-05-14 17:34:35 +00:00
"hyper 1.3.1",
"hyper-tls 0.6.0",
"hyper-util",
"ipnet",
"js-sys",
"log",
"mime",
"native-tls",
"once_cell",
"percent-encoding",
"pin-project-lite",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"rustls-pemfile",
"serde",
"serde_json",
"serde_urlencoded",
"sync_wrapper",
"system-configuration",
"tokio",
"tokio-native-tls",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"winreg",
2023-06-02 09:49:18 +00:00
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "rgb"
version = "0.8.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05aaa8004b64fd573fc9d002f4e632d51ad4f026c2b5ba95fcb6c2f32c2c47d8"
dependencies = [
"bytemuck",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "rust-ini"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
version = "0.19.0"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
checksum = "7e2a3bcec1f113553ef1c88aae6c020a369d03d55b58de9869a0908930385091"
2023-08-05 12:49:17 +00:00
dependencies = [
"cfg-if",
"ordered-multimap",
]
[[package]]
name = "rust-s3"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
version = "0.34.0"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
checksum = "c6679da8efaf4c6f0c161de0961dfe95fb6e9049c398d6fbdada2639f053aedb"
2023-08-05 12:49:17 +00:00
dependencies = [
"async-trait",
"aws-creds",
"aws-region",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"base64 0.21.7",
2023-08-05 12:49:17 +00:00
"bytes",
"cfg-if",
"futures",
"hex",
"hmac",
"http 0.2.12",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"hyper 0.14.28",
"hyper-tls 0.5.0",
2023-08-05 12:49:17 +00:00
"log",
"maybe-async",
"md5",
"minidom",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"native-tls",
2023-08-05 12:49:17 +00:00
"percent-encoding",
"quick-xml",
"serde",
"serde_derive",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"serde_json",
2023-08-05 12:49:17 +00:00
"sha2",
"thiserror",
"time",
"tokio",
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
"tokio-native-tls",
2023-08-05 12:49:17 +00:00
"tokio-stream",
"url",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "rust_iso3166"
version = "0.1.13"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd3126eab517ef8ca4761a366cb0d55e1bf5ab9c7b7f18301d712a57de000a90"
2023-08-04 17:03:46 +00:00
dependencies = [
"js-sys",
"phf",
"prettytable-rs",
"wasm-bindgen",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "rustc-demangle"
2024-05-14 17:34:35 +00:00
version = "0.1.24"
2023-07-04 16:47:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2023-07-04 16:47:37 +00:00
2023-05-24 12:38:18 +00:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
2023-07-04 16:47:37 +00:00
[[package]]
name = "rustix"
2024-05-14 17:34:35 +00:00
version = "0.38.34"
2023-07-04 16:47:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
2023-07-04 16:47:37 +00:00
dependencies = [
"bitflags 2.5.0",
2023-07-04 16:47:37 +00:00
"errno",
"libc",
2023-08-18 11:41:20 +00:00
"linux-raw-sys",
2023-12-29 00:20:46 +00:00
"windows-sys 0.52.0",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "rustls-pemfile"
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
dependencies = [
2024-05-05 00:05:01 +00:00
"base64 0.22.1",
"rustls-pki-types",
]
[[package]]
name = "rustls-pki-types"
2024-05-14 17:34:35 +00:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
2023-08-04 17:03:46 +00:00
[[package]]
name = "rustversion"
2024-05-14 17:34:35 +00:00
version = "1.0.16"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "092474d1a01ea8278f69e6a358998405fae5b8b963ddaeb2b0b04a128bf1dfb0"
2023-08-04 17:03:46 +00:00
2023-08-05 12:49:17 +00:00
[[package]]
name = "rxml"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a98f186c7a2f3abbffb802984b7f1dfd65dac8be1aafdaabbca4137f53f0dff7"
dependencies = [
"bytes",
"rxml_validation",
"smartstring",
]
[[package]]
name = "rxml_validation"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22a197350ece202f19a166d1ad6d9d6de145e1d2a8ef47db299abe164dbd7530"
2023-05-24 12:38:18 +00:00
[[package]]
name = "ryu"
2024-05-14 17:34:35 +00:00
version = "1.0.18"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2023-05-24 12:38:18 +00:00
2023-05-30 13:12:58 +00:00
[[package]]
name = "schannel"
2024-03-11 17:25:47 +00:00
version = "0.1.23"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
2023-05-30 13:12:58 +00:00
dependencies = [
2024-03-11 17:25:47 +00:00
"windows-sys 0.52.0",
2023-05-30 13:12:58 +00:00
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "scopeguard"
2023-12-12 17:21:35 +00:00
version = "1.2.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2023-05-24 12:38:18 +00:00
2023-05-30 13:12:58 +00:00
[[package]]
name = "security-framework"
2024-05-14 17:34:35 +00:00
version = "2.11.0"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0"
2023-05-30 13:12:58 +00:00
dependencies = [
2024-05-14 17:34:35 +00:00
"bitflags 2.5.0",
2023-05-30 13:12:58 +00:00
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2024-05-14 17:34:35 +00:00
version = "2.11.0"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7"
2023-05-30 13:12:58 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "semver"
2024-05-14 17:34:35 +00:00
version = "1.0.23"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
2023-05-24 12:38:18 +00:00
[[package]]
name = "serde"
2024-07-07 00:21:15 +00:00
version = "1.0.204"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-07 00:21:15 +00:00
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
2023-05-24 12:38:18 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-07-07 00:21:15 +00:00
version = "1.0.204"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-07 00:21:15 +00:00
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
2023-05-24 12:38:18 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "serde_json"
version = "1.0.120"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
2023-05-24 12:38:18 +00:00
dependencies = [
"itoa",
"ryu",
"serde",
]
2023-08-05 17:15:52 +00:00
[[package]]
name = "serde_plain"
2023-12-12 17:21:35 +00:00
version = "1.0.2"
2023-08-05 17:15:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "9ce1fc6db65a611022b23a0dec6975d63fb80a302cb3388835ff02c097258d50"
2023-08-05 17:15:52 +00:00
dependencies = [
"serde",
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "serde_spanned"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
dependencies = [
"serde",
]
2023-05-24 12:38:18 +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",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "serde_with"
2024-07-15 00:08:10 +00:00
version = "3.9.0"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-15 00:08:10 +00:00
checksum = "69cecfa94848272156ea67b2b1a53f20fc7bc638c4a46d2f8abde08f05f4b857"
2023-08-04 17:03:46 +00:00
dependencies = [
2024-05-14 17:34:35 +00:00
"base64 0.22.1",
2023-08-04 17:03:46 +00:00
"chrono",
"hex",
2023-12-12 17:21:35 +00:00
"indexmap 1.9.3",
"indexmap 2.2.6",
2023-08-04 17:03:46 +00:00
"serde",
2024-03-11 17:25:47 +00:00
"serde_derive",
2023-08-04 17:03:46 +00:00
"serde_json",
"serde_with_macros",
"time",
]
[[package]]
name = "serde_with_macros"
2024-07-15 00:08:10 +00:00
version = "3.9.0"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-15 00:08:10 +00:00
checksum = "a8fee4991ef4f274617a51ad4af30519438dacb2f56ac773b08a1922ff743350"
2023-08-04 17:03:46 +00:00
dependencies = [
"darling",
2023-08-04 17:03:46 +00:00
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-08-04 17:03:46 +00:00
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "sha1"
2023-12-12 17:21:35 +00:00
version = "0.10.6"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2023-05-24 12:38:18 +00:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
2023-05-26 15:55:19 +00:00
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
2023-08-05 12:49:17 +00:00
[[package]]
name = "sha2"
2023-12-12 17:21:35 +00:00
version = "0.10.8"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
2023-08-05 12:49:17 +00:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "signal-hook-registry"
2024-05-14 17:34:35 +00:00
version = "1.4.2"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2023-05-24 12:38:18 +00:00
dependencies = [
"libc",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "simd-adler32"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2024-03-11 17:25:47 +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-08-04 17:03:46 +00:00
[[package]]
name = "siphasher"
2023-12-12 17:21:35 +00:00
version = "0.3.11"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
2023-08-04 17:03:46 +00:00
2023-05-24 12:38:18 +00:00
[[package]]
name = "slab"
2023-12-12 17:21:35 +00:00
version = "0.4.9"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2023-05-24 12:38:18 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
version = "1.13.2"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2023-05-24 12:38:18 +00:00
2023-08-05 12:49:17 +00:00
[[package]]
name = "smartstring"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
dependencies = [
"autocfg",
"static_assertions",
"version_check",
]
2023-09-04 00:32:51 +00:00
[[package]]
name = "socket2"
2024-05-14 17:34:35 +00:00
version = "0.5.7"
2023-09-04 00:32:51 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
2023-09-04 00:32:51 +00:00
dependencies = [
"libc",
2024-03-11 17:25:47 +00:00
"windows-sys 0.52.0",
2023-09-04 00:32:51 +00:00
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
dependencies = [
"lock_api",
]
2023-12-12 17:21:35 +00:00
[[package]]
name = "stacker"
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
dependencies = [
"cc",
"cfg-if",
"libc",
"psm",
"winapi",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2023-05-24 11:52:24 +00:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2024-03-11 17:25:47 +00:00
[[package]]
name = "strsim"
version = "0.11.1"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2024-03-11 17:25:47 +00:00
2023-05-31 11:33:26 +00:00
[[package]]
name = "subtle"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2023-05-24 11:52:24 +00:00
[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
2024-05-14 17:34:35 +00:00
version = "2.0.63"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "bf5be731623ca1a1fb7d8be6f261a3be6d3e2337b8a1f97be944d020c8fcb704"
2023-05-24 11:52:24 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "sync_wrapper"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
[[package]]
name = "system-configuration"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"system-configuration-sys",
]
[[package]]
name = "system-configuration-sys"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
dependencies = [
"core-foundation-sys",
"libc",
2023-12-12 17:21:35 +00:00
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "system-deps"
version = "6.2.2"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
2024-03-11 17:25:47 +00:00
dependencies = [
"cfg-expr",
"heck",
2024-03-11 17:25:47 +00:00
"pkg-config",
"toml",
2024-03-11 17:25:47 +00:00
"version-compare",
]
[[package]]
name = "target-lexicon"
version = "0.12.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
2023-05-30 13:12:58 +00:00
[[package]]
name = "tempfile"
2024-02-27 00:12:21 +00:00
version = "3.10.1"
2023-05-30 13:12:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-27 00:12:21 +00:00
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
2023-05-30 13:12:58 +00:00
dependencies = [
"cfg-if",
2023-12-12 17:21:35 +00:00
"fastrand",
2023-08-18 11:41:20 +00:00
"rustix",
2023-12-29 00:20:46 +00:00
"windows-sys 0.52.0",
2023-05-30 13:12:58 +00:00
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "term"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f"
dependencies = [
"dirs-next",
"rustversion",
"winapi",
]
2023-06-02 13:04:49 +00:00
[[package]]
name = "thiserror"
2024-07-18 00:07:45 +00:00
version = "1.0.63"
2023-06-02 13:04:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-18 00:07:45 +00:00
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
2023-06-02 13:04:49 +00:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2024-07-18 00:07:45 +00:00
version = "1.0.63"
2023-06-02 13:04:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-18 00:07:45 +00:00
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
2023-06-02 13:04:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-06-02 13:04:49 +00:00
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "tiff"
2024-03-11 17:25:47 +00:00
version = "0.9.1"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
2023-08-07 09:07:24 +00:00
dependencies = [
"flate2",
"jpeg-decoder",
"weezl",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "time"
2024-05-14 17:34:35 +00:00
version = "0.3.36"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
2023-05-24 12:38:18 +00:00
dependencies = [
2023-12-12 17:21:35 +00:00
"deranged",
2023-05-24 12:38:18 +00:00
"itoa",
2024-03-11 17:25:47 +00:00
"num-conv",
2023-12-12 17:21:35 +00:00
"powerfmt",
2023-05-24 12:38:18 +00:00
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
2023-12-12 17:21:35 +00:00
version = "0.1.2"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2023-05-24 12:38:18 +00:00
[[package]]
name = "time-macros"
2024-05-14 17:34:35 +00:00
version = "0.2.18"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
2023-05-24 12:38:18 +00:00
dependencies = [
2024-03-11 17:25:47 +00:00
"num-conv",
2023-05-24 12:38:18 +00:00
"time-core",
]
Update Rust crate rust-s3 to 0.34.0 (#218) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rust-s3](https://github.com/durch/rust-s3) | dependencies | minor | `0.33.0` -> `0.34.0` | --- ### Release Notes <details> <summary>durch/rust-s3 (rust-s3)</summary> ### [`v0.34.0`](https://github.com/durch/rust-s3/releases/tag/v0.34.0) [Compare Source](https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0) #### What's Changed - Fix etag generation for small files by [@&#8203;theCapypara](https://github.com/theCapypara) in https://github.com/durch/rust-s3/pull/324 - add support for new region eu-central-2 by [@&#8203;robinfriedli](https://github.com/robinfriedli) in https://github.com/durch/rust-s3/pull/314 - fix: presigned custom header order by [@&#8203;zifeo](https://github.com/zifeo) in https://github.com/durch/rust-s3/pull/309 - refactor(s3): don't depend on reqwest by [@&#8203;tomkarw](https://github.com/tomkarw) in https://github.com/durch/rust-s3/pull/299 - Remove superfluous println by [@&#8203;zaninime](https://github.com/zaninime) in https://github.com/durch/rust-s3/pull/345 - Move to the smaller, cargo-team maintained `home` crate by [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) in https://github.com/durch/rust-s3/pull/338 - remove misleading comment from GCP example by [@&#8203;pascualex](https://github.com/pascualex) in https://github.com/durch/rust-s3/pull/356 - Add il-central-1 region by [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) in https://github.com/durch/rust-s3/pull/359 - Add feature-gate on Credentials::refresh by [@&#8203;olback](https://github.com/olback) in https://github.com/durch/rust-s3/pull/361 - Only send metadata on Initiate of multipart upload by [@&#8203;jcrossley3](https://github.com/jcrossley3) in https://github.com/durch/rust-s3/pull/353 - Fix put_object_stream sync for small files by [@&#8203;jsurkont](https://github.com/jsurkont) in https://github.com/durch/rust-s3/pull/357 - Rework presign_post to be correct by [@&#8203;urkle](https://github.com/urkle) in https://github.com/durch/rust-s3/pull/358 - Implement a new `ListBuckets` command and its consumer API. by [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) in https://github.com/durch/rust-s3/pull/348 - feat: re-expose 'http-credentials' from 's3' by [@&#8203;woshilapin](https://github.com/woshilapin) in https://github.com/durch/rust-s3/pull/364 - Fix Bytes version requirement by [@&#8203;Ten0](https://github.com/Ten0) in https://github.com/durch/rust-s3/pull/365 - Fix fail-on-err description by [@&#8203;randomairborne](https://github.com/randomairborne) in https://github.com/durch/rust-s3/pull/371 #### New Contributors - [@&#8203;theCapypara](https://github.com/theCapypara) made their first contribution in https://github.com/durch/rust-s3/pull/324 - [@&#8203;robinfriedli](https://github.com/robinfriedli) made their first contribution in https://github.com/durch/rust-s3/pull/314 - [@&#8203;zifeo](https://github.com/zifeo) made their first contribution in https://github.com/durch/rust-s3/pull/309 - [@&#8203;tomkarw](https://github.com/tomkarw) made their first contribution in https://github.com/durch/rust-s3/pull/299 - [@&#8203;zaninime](https://github.com/zaninime) made their first contribution in https://github.com/durch/rust-s3/pull/345 - [@&#8203;utkarshgupta137](https://github.com/utkarshgupta137) made their first contribution in https://github.com/durch/rust-s3/pull/338 - [@&#8203;pascualex](https://github.com/pascualex) made their first contribution in https://github.com/durch/rust-s3/pull/356 - [@&#8203;ArielHorwitz](https://github.com/ArielHorwitz) made their first contribution in https://github.com/durch/rust-s3/pull/359 - [@&#8203;olback](https://github.com/olback) made their first contribution in https://github.com/durch/rust-s3/pull/361 - [@&#8203;jcrossley3](https://github.com/jcrossley3) made their first contribution in https://github.com/durch/rust-s3/pull/353 - [@&#8203;jsurkont](https://github.com/jsurkont) made their first contribution in https://github.com/durch/rust-s3/pull/357 - [@&#8203;urkle](https://github.com/urkle) made their first contribution in https://github.com/durch/rust-s3/pull/358 - [@&#8203;aalekhpatel07](https://github.com/aalekhpatel07) made their first contribution in https://github.com/durch/rust-s3/pull/348 - [@&#8203;woshilapin](https://github.com/woshilapin) made their first contribution in https://github.com/durch/rust-s3/pull/364 - [@&#8203;randomairborne](https://github.com/randomairborne) made their first contribution in https://github.com/durch/rust-s3/pull/371 **Full Changelog**: https://github.com/durch/rust-s3/compare/v0.33.0...v0.34.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MDguMSIsInVwZGF0ZWRJblZlciI6IjM3LjQwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Reviewed-on: https://gitea.communiquons.org/pierre/GeneIT/pulls/218
2024-06-15 08:06:21 +00:00
[[package]]
name = "tiny-keccak"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
dependencies = [
"crunchy",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
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"
version = "1.37.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
2023-05-24 12:38:18 +00:00
dependencies = [
2023-07-04 16:47:37 +00:00
"backtrace",
2023-05-24 12:38:18 +00:00
"bytes",
"libc",
"mio",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
2024-04-06 00:11:37 +00:00
"socket2",
2023-12-12 17:21:35 +00:00
"windows-sys 0.48.0",
2023-05-24 12:38:18 +00:00
]
2023-06-02 09:49:18 +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",
]
2023-08-05 12:49:17 +00:00
[[package]]
name = "tokio-stream"
version = "0.1.15"
2023-08-05 12:49:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
2023-08-05 12:49:17 +00:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "tokio-util"
2024-05-14 17:34:35 +00:00
version = "0.7.11"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
2023-05-24 12:38:18 +00:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
]
2024-03-11 17:25:47 +00:00
[[package]]
name = "toml"
version = "0.8.12"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9dd1545e8208b4a5af1aa9bbd0b4cf7e9ea08fabc5d0a5c67fcaafa17433aa3"
2024-03-11 17:25:47 +00:00
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
2024-03-11 17:25:47 +00:00
]
[[package]]
name = "toml_datetime"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
2024-05-14 17:34:35 +00:00
version = "0.22.12"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "d3328d4f68a705b2a4498da1d580585d39a6510f98318a2cec3018a7ec61ddef"
2024-03-11 17:25:47 +00:00
dependencies = [
"indexmap 2.2.6",
2024-03-11 17:25:47 +00:00
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
2024-03-11 17:25:47 +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",
"tracing",
]
[[package]]
name = "tower-layer"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2023-06-02 09:49:18 +00:00
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2023-05-24 12:38:18 +00:00
[[package]]
name = "tracing"
2023-12-12 17:21:35 +00:00
version = "0.1.40"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2023-05-24 12:38:18 +00:00
dependencies = [
"log",
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
2023-12-12 17:21:35 +00:00
version = "0.1.32"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2023-05-24 12:38:18 +00:00
dependencies = [
"once_cell",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "try-lock"
2024-03-11 17:25:47 +00:00
version = "0.2.5"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2023-06-02 09:49:18 +00:00
2023-05-24 12:38:18 +00:00
[[package]]
name = "typenum"
2023-12-12 17:21:35 +00:00
version = "1.17.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2023-05-24 12:38:18 +00:00
2023-08-17 15:37:44 +00:00
[[package]]
name = "unicase"
2023-12-12 17:21:35 +00:00
version = "2.7.0"
2023-08-17 15:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
2023-08-17 15:37:44 +00:00
dependencies = [
"version_check",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "unicode-bidi"
2024-03-11 17:25:47 +00:00
version = "0.3.15"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
2023-05-24 12:38:18 +00:00
2023-05-24 11:52:24 +00:00
[[package]]
name = "unicode-ident"
2023-12-12 17:21:35 +00:00
version = "1.0.12"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2023-05-24 11:52:24 +00:00
2023-05-24 12:38:18 +00:00
[[package]]
name = "unicode-normalization"
2024-03-11 17:25:47 +00:00
version = "0.1.23"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
2023-05-24 12:38:18 +00:00
dependencies = [
"tinyvec",
]
2023-08-04 17:03:46 +00:00
[[package]]
name = "unicode-width"
2024-05-14 17:34:35 +00:00
version = "0.1.12"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "68f5e5f3158ecfd4b8ff6fe086db7c8467a2dfdac97fe420f2b7c4aa97af66d6"
2023-08-04 17:03:46 +00:00
2023-05-24 12:38:18 +00:00
[[package]]
name = "url"
2023-12-12 17:21:35 +00:00
version = "2.5.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
2023-05-24 12:38:18 +00:00
dependencies = [
"form_urlencoded",
2023-12-12 17:21:35 +00:00
"idna",
2023-05-24 12:38:18 +00:00
"percent-encoding",
]
2023-06-02 09:49:18 +00:00
[[package]]
name = "urlencoding"
2023-12-12 17:21:35 +00:00
version = "2.1.3"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-12 17:21:35 +00:00
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
2023-06-02 09:49:18 +00:00
2023-05-24 11:52:24 +00:00
[[package]]
name = "utf8parse"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
2023-08-07 09:07:24 +00:00
[[package]]
name = "uuid"
2024-07-10 00:08:14 +00:00
version = "1.10.0"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-10 00:08:14 +00:00
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
2023-08-07 09:07:24 +00:00
dependencies = [
"getrandom",
]
2024-03-11 17:25:47 +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",
]
2023-05-24 11:52:24 +00:00
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2024-03-11 17:25:47 +00:00
[[package]]
name = "version-compare"
version = "0.2.0"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
2024-03-11 17:25:47 +00:00
2023-05-24 11:52:24 +00:00
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2023-06-02 09:49:18 +00:00
[[package]]
name = "want"
2023-07-04 16:47:37 +00:00
version = "0.3.1"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-04 16:47:37 +00:00
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2023-06-02 09:49:18 +00:00
dependencies = [
"try-lock",
]
2023-05-24 12:38:18 +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-06-02 09:49:18 +00:00
[[package]]
name = "wasm-bindgen"
2024-03-11 17:25:47 +00:00
version = "0.2.92"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
2023-06-02 09:49:18 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2024-03-11 17:25:47 +00:00
version = "0.2.92"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
2023-06-02 09:49:18 +00:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-06-02 09:49:18 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2024-03-11 17:25:47 +00:00
version = "0.4.42"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
2023-06-02 09:49:18 +00:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2024-03-11 17:25:47 +00:00
version = "0.2.92"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
2023-06-02 09:49:18 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2024-03-11 17:25:47 +00:00
version = "0.2.92"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
2023-06-02 09:49:18 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-06-02 09:49:18 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2024-03-11 17:25:47 +00:00
version = "0.2.92"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
2023-06-02 09:49:18 +00:00
[[package]]
name = "web-sys"
2024-03-11 17:25:47 +00:00
version = "0.3.69"
2023-06-02 09:49:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
2023-06-02 09:49:18 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2023-08-07 09:07:24 +00:00
[[package]]
name = "weezl"
2024-02-24 00:12:14 +00:00
version = "0.1.8"
2023-08-07 09:07:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-24 00:12:14 +00:00
checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
2023-08-07 09:07:24 +00:00
2023-05-24 12:38:18 +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-04-24 00:16:59 +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-05-14 17:34:35 +00:00
"windows-targets 0.52.5",
2024-04-24 00:16:59 +00:00
]
2023-08-04 17:03:46 +00:00
[[package]]
2023-12-12 17:21:35 +00:00
name = "windows-core"
2024-03-11 17:25:47 +00:00
version = "0.52.0"
2023-08-04 17:03:46 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-11 17:25:47 +00:00
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2023-08-04 17:03:46 +00:00
dependencies = [
2024-05-14 17:34:35 +00:00
"windows-targets 0.52.5",
2023-08-04 17:03:46 +00:00
]
2023-05-24 11:52:24 +00:00
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-12-12 17:21:35 +00:00
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
2024-05-14 17:34:35 +00:00
"windows-targets 0.52.5",
2023-12-12 17:21:35 +00:00
]
[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "windows-targets"
2024-05-14 17:34:35 +00:00
version = "0.52.5"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
2023-05-24 12:38:18 +00:00
dependencies = [
2024-05-14 17:34:35 +00:00
"windows_aarch64_gnullvm 0.52.5",
"windows_aarch64_msvc 0.52.5",
"windows_i686_gnu 0.52.5",
"windows_i686_gnullvm",
"windows_i686_msvc 0.52.5",
"windows_x86_64_gnu 0.52.5",
"windows_x86_64_gnullvm 0.52.5",
"windows_x86_64_msvc 0.52.5",
2023-05-24 11:52:24 +00:00
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-12-12 17:21:35 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
[[package]]
name = "windows_aarch64_gnullvm"
2024-05-14 17:34:35 +00:00
version = "0.52.5"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
2023-05-24 11:52:24 +00:00
[[package]]
name = "windows_aarch64_msvc"
2023-12-12 17:21:35 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
[[package]]
name = "windows_aarch64_msvc"
2024-05-14 17:34:35 +00:00
version = "0.52.5"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
2023-05-24 11:52:24 +00:00
[[package]]
name = "windows_i686_gnu"
2023-12-12 17:21:35 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
[[package]]
name = "windows_i686_gnu"
2024-05-14 17:34:35 +00:00
version = "0.52.5"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
2023-05-24 11:52:24 +00:00
[[package]]
name = "windows_i686_msvc"
2023-12-12 17:21:35 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
[[package]]
name = "windows_i686_msvc"
2024-05-14 17:34:35 +00:00
version = "0.52.5"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
2023-05-24 11:52:24 +00:00
[[package]]
name = "windows_x86_64_gnu"
2023-12-12 17:21:35 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
[[package]]
name = "windows_x86_64_gnu"
2024-05-14 17:34:35 +00:00
version = "0.52.5"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
2023-05-24 11:52:24 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-12-12 17:21:35 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
[[package]]
name = "windows_x86_64_gnullvm"
2024-05-14 17:34:35 +00:00
version = "0.52.5"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
2023-05-24 11:52:24 +00:00
[[package]]
name = "windows_x86_64_msvc"
2023-12-12 17:21:35 +00:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
[[package]]
name = "windows_x86_64_msvc"
2024-05-14 17:34:35 +00:00
version = "0.52.5"
2024-03-11 17:25:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
2024-03-11 17:25:47 +00:00
[[package]]
name = "winnow"
2024-05-14 17:34:35 +00:00
version = "0.6.8"
2023-05-24 11:52:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d"
2024-03-11 17:25:47 +00:00
dependencies = [
"memchr",
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "winreg"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
dependencies = [
"cfg-if",
"windows-sys 0.48.0",
]
2023-12-12 17:21:35 +00:00
[[package]]
name = "zerocopy"
2024-05-14 17:34:35 +00:00
version = "0.7.34"
2023-12-12 17:21:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "ae87e3fcd617500e5d106f0380cf7b77f3c6092aae37191433159dda23cfb087"
2023-12-12 17:21:35 +00:00
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
2024-05-14 17:34:35 +00:00
version = "0.7.34"
2023-12-12 17:21:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-14 17:34:35 +00:00
checksum = "15e934569e47891f7d9411f1a451d947a60e000ab3bd24fbb970f000387d1b3b"
2023-12-12 17:21:35 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-05-14 17:34:35 +00:00
"syn 2.0.63",
2023-06-02 09:49:18 +00:00
]
2023-05-31 11:33:26 +00:00
[[package]]
name = "zeroize"
2024-06-03 00:12:03 +00:00
version = "1.8.1"
2023-05-31 11:33:26 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-03 00:12:03 +00:00
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2024-05-14 17:34:35 +00:00
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.63",
]
2023-05-31 11:33:26 +00:00
2023-08-17 15:37:44 +00:00
[[package]]
name = "zip"
2024-07-21 00:24:53 +00:00
version = "2.1.5"
2023-08-17 15:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-21 00:24:53 +00:00
checksum = "b895748a3ebcb69b9d38dcfdf21760859a4b0d0b0015277640c2ef4c69640e6f"
2023-08-17 15:37:44 +00:00
dependencies = [
"aes",
2024-05-14 17:34:35 +00:00
"arbitrary",
2023-08-17 15:37:44 +00:00
"bzip2",
"constant_time_eq",
"crc32fast",
"crossbeam-utils",
2024-05-14 17:34:35 +00:00
"deflate64",
"displaydoc",
2023-08-17 15:37:44 +00:00
"flate2",
"hmac",
2024-05-14 17:34:35 +00:00
"indexmap 2.2.6",
"lzma-rs",
2024-05-29 00:20:18 +00:00
"memchr",
2023-08-17 15:37:44 +00:00
"pbkdf2",
2024-05-14 17:34:35 +00:00
"rand",
2023-08-17 15:37:44 +00:00
"sha1",
2024-05-14 17:34:35 +00:00
"thiserror",
2023-08-17 15:37:44 +00:00
"time",
2024-05-14 17:34:35 +00:00
"zeroize",
"zopfli",
"zstd",
2023-08-17 15:37:44 +00:00
]
[[package]]
2024-05-14 17:34:35 +00:00
name = "zopfli"
2024-05-25 00:24:55 +00:00
version = "0.8.1"
2023-08-17 15:37:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-25 00:24:55 +00:00
checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946"
2023-08-17 15:37:44 +00:00
dependencies = [
2024-05-25 00:24:55 +00:00
"bumpalo",
2024-05-14 17:34:35 +00:00
"crc32fast",
2024-05-25 00:24:55 +00:00
"lockfree-object-pool",
2024-05-14 17:34:35 +00:00
"log",
2024-05-25 00:24:55 +00:00
"once_cell",
2024-05-14 17:34:35 +00:00
"simd-adler32",
2023-08-17 15:37:44 +00:00
]
2023-05-24 12:38:18 +00:00
[[package]]
name = "zstd"
version = "0.13.1"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a"
2023-05-24 12:38:18 +00:00
dependencies = [
2024-05-14 17:34:35 +00:00
"zstd-safe",
2023-05-24 12:38:18 +00:00
]
[[package]]
name = "zstd-safe"
version = "7.1.0"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a"
2023-05-24 12:38:18 +00:00
dependencies = [
"zstd-sys",
]
[[package]]
name = "zstd-sys"
version = "2.0.10+zstd.1.5.6"
2023-05-24 12:38:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c253a4914af5bafc8fa8c86ee400827e83cf6ec01195ec1f1ed8441bf00d65aa"
2023-05-24 12:38:18 +00:00
dependencies = [
"cc",
"pkg-config",
]
2023-08-07 09:07:24 +00:00
2024-03-11 17:25:47 +00:00
[[package]]
name = "zune-core"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
2023-08-07 09:07:24 +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-03-11 17:25:47 +00:00
[[package]]
name = "zune-jpeg"
version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec866b44a2a1fd6133d363f073ca1b179f438f99e7e5bfb1e33f7181facfe448"
dependencies = [
"zune-core",
]