hostbasket/actix_mvc_app/Cargo.toml
Mahmoud-Emad d3a66d4fc8 feat: Add initial production deployment support
- Add .env.example file for environment variable setup
- Add .gitignore to manage sensitive files and directories
- Add Dockerfile.prod for production-ready Docker image
- Add PRODUCTION_CHECKLIST.md for pre/post deployment steps
- Add PRODUCTION_DEPLOYMENT.md for deployment instructions
- Add STRIPE_SETUP.md for Stripe payment configuration
- Add config/default.toml for default configuration settings
- Add config/local.toml.example for local configuration template
2025-06-25 18:32:20 +03:00

61 lines
1.5 KiB
TOML

[package]
name = "actix_mvc_app"
version = "0.1.0"
edition = "2024"
[lib]
name = "actix_mvc_app"
path = "src/lib.rs"
[[bin]]
name = "actix_mvc_app"
path = "src/main.rs"
[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"
tokio = { version = "1.0", features = ["full"] }
async-stripe = { version = "0.41", features = ["runtime-tokio-hyper"] }
reqwest = { version = "0.12.20", features = ["json"] }
# Security dependencies for webhook verification
hmac = "0.12.1"
sha2 = "0.10.8"
hex = "0.4.3"
# Validation dependencies
regex = "1.10.2"
[dev-dependencies]
# Testing dependencies
tokio-test = "0.4.3"
[patch."https://git.ourworld.tf/herocode/db.git"]
rhai_autobind_macros = { path = "../../rhaj/rhai_autobind_macros" }
rhai_wrapper = { path = "../../rhaj/rhai_wrapper" }