33 lines
828 B
TOML
33 lines
828 B
TOML
[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 = { version = "4.3" }
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
|
|
[dev-dependencies]
|
|
actix-rt = "2.8"
|
|
tokio = { version = "1.28", features = ["full"] }
|