32 lines
911 B
TOML
32 lines
911 B
TOML
[package]
|
|
name = "dr_who_website"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix = "0.13.0"
|
|
actix-web = "4.2.1"
|
|
actix-files = "0.6"
|
|
actix-identity = "0.4"
|
|
actix-multipart = "0.4"
|
|
actix-form-data = "0.6.2"
|
|
actix-web-actors = "4.1.0"
|
|
oauth2 = "4.2.3"
|
|
jsonwebtoken-google = "0.1.6"
|
|
diesel = { version = "1.4.4", features = ["postgres"] }
|
|
serde = "1.0.136"
|
|
serde_json = "1.0.59"
|
|
quick-xml = { version = "0.26.0", features = ["serialize"] }
|
|
# opencv = "0.73"
|
|
rand = "0.8.5"
|
|
dotenv = "0.15.0"
|
|
sha256 = "1.0.3"
|
|
walkdir = "2.3.2"
|
|
tera = "1.8.0"
|
|
futures-util = { version = "0.3.7", default-features = false, features = ["std"] }
|
|
sanitize-filename = "0.3"
|
|
uuid = { version = "0.8", features = ["v4"] }
|
|
tempfile = "3.3.0"
|
|
minifier = "0.2.2"
|
|
lettre = { version = "0.10.0-beta.2", default-features = false, features = ["smtp-transport", "tokio1-rustls-tls", "hostname", "r2d2", "builder"] }
|
|
derive_more = "0.99.17" |