[package] name = "cookbook" version = "0.1.1" edition = "2021" authors = ["Gustav Hagland"] description = "The backend for the cookbook app, a web app that lets you store and handle recipes" license = "GPL-2.0-or-later WITH Bison-exception-2.2" repository = "https://gitlab.com/gustavhaglandproject/gustav-page" homepage = "https://gitlab.com/gustavhaglandproject/gustav-page" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] actix-web = "4" actix-files = "0.6.0" diesel = { version = "2.0.0-rc.0", features = ["sqlite", "r2d2"] } dotenv = "0.15.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" r2d2 = "0.8.9" env_logger = "0.9" utoipa = { version = "0.2.0", features = ["actix_extras"] } utoipa-swagger-ui = { version = "0.3.0", features = ["actix-web"] } clap = { version = "3.1.12", features = ["derive"] } tokio = { version = "1.17.0", features = ["fs"] } actix-web-static-files = "4.0" static-files = "0.2.1" diesel_migrations = "2.0.0-rc.0" [build-dependencies] static-files = "0.2.1"