hostbasket/actix_mvc_app/Cargo.toml
Mahmoud Emad e4e403e231 feat: Integerated the DB:
- Added an initialization with the db
- Implemented 'add_new_proposal' function to be used in the form
2025-05-18 09:07:59 +03:00

37 lines
1.0 KiB
TOML

[package]
name = "actix_mvc_app"
version = "0.1.0"
edition = "2024"
[dependencies]
actix-multipart = "0.6.1"
futures-util = "0.3.30"
actix-web = "4.5.1"
actix-files = "0.6.5"
tera = "1.19.1"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
env_logger = "0.11.2"
log = "0.4.21"
dotenv = "0.15.0"
chrono = { version = "0.4.35", features = ["serde"] }
heromodels = { path = "../../db/heromodels" }
heromodels_core = { path = "../../db/heromodels_core" }
config = "0.14.0"
num_cpus = "1.16.0"
futures = "0.3.30"
actix-session = { version = "0.8.0", features = ["cookie-session"] }
actix-identity = "0.6.0"
bcrypt = "0.15.0"
uuid = { version = "1.6.1", features = ["v4", "serde"] }
lazy_static = "1.4.0"
redis = { version = "0.23.0", features = ["tokio-comp"] }
jsonwebtoken = "8.3.0"
pulldown-cmark = "0.13.0"
urlencoding = "2.1.3"
[patch."https://git.ourworld.tf/herocode/db.git"]
rhai_autobind_macros = { path = "../../rhaj/rhai_autobind_macros" }
rhai_wrapper = { path = "../../rhaj/rhai_wrapper" }