feat: Add basic project structure and configuration
- Add `.env.template` file for environment variable configuration. - Add `.gitignore` file to ignore generated files and IDE artifacts. - Add `Cargo.toml` file specifying project dependencies. - Add basic project documentation in `README.md` and configuration guide in `docs/configuration.md`. - Add Gitea authentication guide in `docs/gitea-auth.md`. - Add installation guide in `docs/installation.md`. - Add MVC architecture guide in `docs/mvc.md`. - Add views guide in `docs/views.md`.
This commit is contained in:
31
Cargo.toml
Normal file
31
Cargo.toml
Normal file
@@ -0,0 +1,31 @@
|
||||
[package]
|
||||
name = "hostbasket"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["Your Name <your.email@example.com>"]
|
||||
description = "A web application framework built with Actix Web and Rust"
|
||||
|
||||
[dependencies]
|
||||
actix-web = "4.3"
|
||||
actix-files = "0.6"
|
||||
actix-session = { version = "0.7", features = ["cookie-session"] }
|
||||
tera = "1.18"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
config = "0.13"
|
||||
log = "0.4"
|
||||
env_logger = "0.10"
|
||||
dotenv = "0.15"
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
jsonwebtoken = "8.3"
|
||||
lazy_static = "1.4"
|
||||
futures-util = "0.3"
|
||||
num_cpus = "1.15"
|
||||
bcrypt = "0.14"
|
||||
uuid = { version = "1.3", features = ["v4", "serde"] }
|
||||
oauth2 = "4.3"
|
||||
reqwest = { version = "0.11", features = ["json"] }
|
||||
|
||||
[dev-dependencies]
|
||||
actix-rt = "2.8"
|
||||
tokio = { version = "1.28", features = ["full"] }
|
||||
Reference in New Issue
Block a user