GeneIT/geneit_backend/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Permalink 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-09-09 19:51:12 +00:00
env_logger = "0.11.5"
clap = { version = "4.5.17", features = ["derive", "env"] }
lazy_static = "1.5.0"
lazy-regex = "3.3.0"
anyhow = "1.0.87"
actix-web = "4.9.0"
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-09-09 19:51:12 +00:00
diesel = { version = "2.2.4", features = ["postgres"] }
diesel_migrations = "2.1.0"
2024-09-09 19:51:12 +00:00
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
mailchecker = "6.0.8"
redis = "0.26.1"
lettre = "0.11.8"
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"
2024-09-09 19:51:12 +00:00
rust-s3 = "0.35.1"
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-09-09 19:51:12 +00:00
zip = "2.2.0"
2023-08-18 11:41:20 +00:00
mime_guess = "2.0.4"
2024-09-09 19:51:12 +00:00
tempfile = "3.12.0"
2024-03-03 00:12:48 +00:00
base64 = "0.22.0"
ical = { version = "0.11.0", features = ["generator", "ical", "vcard"] }
2024-09-09 19:51:12 +00:00
chrono = "0.4.38"