formies/backend/Cargo.toml

18 lines
388 B
TOML
Raw Permalink Normal View History

2024-12-27 14:05:56 +01:00
[package]
name = "formies_be"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = "4.0"
2024-12-27 15:40:32 +01:00
rusqlite = { version = "0.29", features = ["bundled"] }
2024-12-27 14:05:56 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.0", features = ["v4"] }
2024-12-27 15:40:32 +01:00
actix-files = "0.6"
actix-cors = "0.6"
2025-01-02 14:32:59 +01:00
env_logger = "0.10"
2025-01-02 13:20:10 +01:00
log = "0.4"
2025-01-02 14:32:59 +01:00
futures = "0.3"
bcrypt = "0.13"
anyhow = "1.0"