GeneIT/geneit_backend/Cargo.toml

39 lines
938 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]
2023-05-24 12:38:18 +00:00
log = "0.4.17"
env_logger = "0.10.0"
2023-05-24 11:52:24 +00:00
clap = { version = "4.3.0", features = ["derive", "env"] }
2023-05-24 12:38:18 +00:00
lazy_static = "1.4.0"
2023-05-24 14:19:46 +00:00
anyhow = "1.0.71"
2023-05-24 12:38:18 +00:00
actix-web = "4.3.1"
2023-06-06 13:47:30 +00:00
actix-cors = "0.6.4"
2023-08-05 17:15:52 +00:00
actix-multipart = "0.6.0"
actix-remote-ip = "0.1.0"
2023-05-31 13:52:49 +00:00
futures-util = "0.3.28"
2023-05-24 12:38:18 +00:00
diesel = { version = "2.0.4", features = ["postgres"] }
2023-05-24 14:19:46 +00:00
serde = { version = "1.0.163", features = ["derive"] }
2023-05-26 15:55:19 +00:00
serde_json = "1.0.96"
mailchecker = "5.0.9"
2023-05-30 13:12:58 +00:00
redis = "0.23.0"
lettre = "0.10.4"
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"
2023-08-04 17:03:46 +00:00
thiserror = "1.0.40"
serde_with = "3.1.0"
2023-08-05 12:49:17 +00:00
rust_iso3166 = "0.1.10"
2023-08-05 17:15:52 +00:00
rust-s3 = "0.33.0"
2023-08-07 09:07:24 +00:00
sha2 = "0.10.7"
image = "0.24.6"
2023-08-07 12:53:44 +00:00
uuid = { version = "1.4.1", features = ["v4"] }
2023-08-17 15:37:44 +00:00
httpdate = "1.0.2"
zip = "0.6.6"
2023-08-18 11:41:20 +00:00
mime_guess = "2.0.4"
tempfile = "3.7.1"
base64 = "0.21.2"