GeneIT/geneit_backend/Cargo.toml

43 lines
1.1 KiB
TOML
Raw Normal View History

2023-05-24 09:37:02 +00:00
[package]
name = "geneit_backend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-02-29 00:12:16 +00:00
log = "0.4.21"
2024-03-11 17:25:47 +00:00
env_logger = "0.11.3"
2024-03-27 00:24:26 +00:00
clap = { version = "4.5.4", features = ["derive", "env"] }
2023-05-24 12:38:18 +00:00
lazy_static = "1.4.0"
lazy-regex = "3.1.0"
2024-05-14 17:34:35 +00:00
anyhow = "1.0.83"
2024-02-05 00:31:52 +00:00
actix-web = "4.5.1"
2024-01-07 00:10:00 +00:00
actix-cors = "0.7.0"
2024-07-24 00:07:23 +00:00
actix-multipart = "0.7.0"
2023-08-05 17:15:52 +00:00
actix-remote-ip = "0.1.0"
2024-03-11 17:25:47 +00:00
futures-util = "0.3.30"
2024-04-20 00:10:45 +00:00
diesel = { version = "2.1.6", features = ["postgres"] }
diesel_migrations = "2.1.0"
2024-04-17 00:10:41 +00:00
serde = { version = "1.0.198", features = ["derive"] }
2024-05-14 17:34:35 +00:00
serde_json = "1.0.117"
2024-04-23 00:10:38 +00:00
mailchecker = "6.0.4"
2024-04-06 00:11:37 +00:00
redis = "0.25.3"
2024-04-24 00:16:59 +00:00
lettre = "0.11.7"
2023-05-31 11:33:26 +00:00
rand = "0.8.5"
2024-03-26 00:24:52 +00:00
bcrypt = "0.15.1"
light-openid = "1.0.2"
2024-05-14 17:34:35 +00:00
thiserror = "1.0.60"
serde_with = "3.8.1"
2024-03-11 17:25:47 +00:00
rust_iso3166 = "0.1.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
rust-s3 = "0.34.0"
2023-12-12 17:21:35 +00:00
sha2 = "0.10.8"
2024-04-06 00:11:24 +00:00
image = "0.25.1"
2024-04-01 00:25:57 +00:00
uuid = { version = "1.8.0", features = ["v4"] }
2023-08-26 00:32:00 +00:00
httpdate = "1.0.3"
2024-05-25 00:24:55 +00:00
zip = "2.0.0"
2023-08-18 11:41:20 +00:00
mime_guess = "2.0.4"
2024-02-27 00:12:21 +00:00
tempfile = "3.10.1"
2024-03-03 00:12:48 +00:00
base64 = "0.22.0"
ical = { version = "0.11.0", features = ["generator", "ical", "vcard"] }
chrono = "0.4.38"