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]
|
2023-12-12 17:21:35 +00:00
|
|
|
log = "0.4.20"
|
|
|
|
env_logger = "0.10.1"
|
2023-12-29 00:20:09 +00:00
|
|
|
clap = { version = "4.4.12", features = ["derive", "env"] }
|
2023-05-24 12:38:18 +00:00
|
|
|
lazy_static = "1.4.0"
|
2023-08-26 00:31:54 +00:00
|
|
|
anyhow = "1.0.75"
|
2023-12-25 00:18:47 +00:00
|
|
|
actix-web = "4.4.1"
|
2023-12-13 00:13:48 +00:00
|
|
|
actix-cors = "0.6.5"
|
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"
|
2023-12-12 17:21:35 +00:00
|
|
|
futures-util = "0.3.29"
|
2023-11-15 00:24:19 +00:00
|
|
|
diesel = { version = "2.1.4", features = ["postgres"] }
|
2024-01-03 00:20:02 +00:00
|
|
|
serde = { version = "1.0.194", features = ["derive"] }
|
2023-11-29 00:08:19 +00:00
|
|
|
serde_json = "1.0.108"
|
2023-12-12 17:21:35 +00:00
|
|
|
mailchecker = "6.0.1"
|
2023-09-02 00:27:12 +00:00
|
|
|
redis = "0.23.3"
|
2023-12-12 17:21:35 +00:00
|
|
|
lettre = "0.11.2"
|
2023-05-31 11:33:26 +00:00
|
|
|
rand = "0.8.5"
|
2023-08-04 17:03:46 +00:00
|
|
|
bcrypt = "0.15.0"
|
2023-06-02 13:04:49 +00:00
|
|
|
light-openid = "1.0.1"
|
2024-01-03 00:20:08 +00:00
|
|
|
thiserror = "1.0.56"
|
2023-12-12 17:21:35 +00:00
|
|
|
serde_with = "3.4.0"
|
|
|
|
rust_iso3166 = "0.1.11"
|
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"
|
|
|
|
image = "0.24.7"
|
|
|
|
uuid = { version = "1.6.1", 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"
|
2023-12-29 00:20:46 +00:00
|
|
|
tempfile = "3.9.0"
|
2023-12-12 17:21:35 +00:00
|
|
|
base64 = "0.21.5"
|