GeneIT/geneit_backend/Cargo.toml

41 lines
969 B
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"
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"
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-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"
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-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-14 17:34:35 +00:00
zip = "1.2.3"
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"