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"
|
2024-03-26 00:24:45 +00:00
|
|
|
anyhow = "1.0.81"
|
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"
|
2023-08-30 00:26:46 +00:00
|
|
|
actix-multipart = "0.6.1"
|
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-03-16 00:06:06 +00:00
|
|
|
diesel = { version = "2.1.5", features = ["postgres"] }
|
2024-03-11 17:25:47 +00:00
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
|
|
serde_json = "1.0.114"
|
2023-12-12 17:21:35 +00:00
|
|
|
mailchecker = "6.0.1"
|
2024-03-11 17:25:47 +00:00
|
|
|
redis = "0.25.0"
|
2024-03-27 00:24:35 +00:00
|
|
|
lettre = "0.11.5"
|
2023-05-31 11:33:26 +00:00
|
|
|
rand = "0.8.5"
|
2024-03-26 00:24:52 +00:00
|
|
|
bcrypt = "0.15.1"
|
2023-06-02 13:04:49 +00:00
|
|
|
light-openid = "1.0.1"
|
2024-03-13 00:04:38 +00:00
|
|
|
thiserror = "1.0.58"
|
2024-03-11 17:25:47 +00:00
|
|
|
serde_with = "3.6.1"
|
|
|
|
rust_iso3166 = "0.1.12"
|
2023-08-05 17:15:52 +00:00
|
|
|
rust-s3 = "0.33.0"
|
2023-12-12 17:21:35 +00:00
|
|
|
sha2 = "0.10.8"
|
2024-03-11 17:25:47 +00:00
|
|
|
image = "0.25.0"
|
|
|
|
uuid = { version = "1.7.0", features = ["v4"] }
|
2023-08-26 00:32:00 +00:00
|
|
|
httpdate = "1.0.3"
|
2023-08-17 15:37:44 +00:00
|
|
|
zip = "0.6.6"
|
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"
|