api/Cargo.toml

27 lines
620 B
TOML
Raw Normal View History

2023-12-31 00:21:07 +00:00
[package]
name = "vybr-api"
version = "0.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4"
async-trait = "0.1"
2024-01-13 00:16:01 +00:00
base64 = "0.21.5"
2023-12-31 00:21:07 +00:00
bcrypt = "0.15"
chrono = { version = "0.4", features = ["serde"] }
diesel = { version = "2", features = ["r2d2", "postgres", "chrono"] }
diesel_migrations = "2"
dotenvy = "*"
2024-01-02 23:10:33 +00:00
env_logger = "0.10"
2024-01-13 00:16:01 +00:00
futures-util = "0.3"
2023-12-31 00:21:07 +00:00
hmac = "0.12"
2024-01-02 23:10:33 +00:00
log = "0.4"
2024-01-01 22:58:26 +00:00
reqwest = { version = "0.11", features = ["blocking", "json"] }
2024-01-13 00:16:01 +00:00
sha256 = "1.5.0"
2023-12-31 00:21:07 +00:00
lazy_static = "1"
2024-01-01 02:18:33 +00:00
jsonwebtoken = "9"
2023-12-31 00:21:07 +00:00
serde = "1"
serde_json = "1"