23 lines
547 B
TOML
23 lines
547 B
TOML
[package]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = " "
|
|
default-run = "backend"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "4"
|
|
actix-web-lab = "^0"
|
|
actix-files = "0.6"
|
|
env_logger = "0.9.0"
|
|
log = "0.4"
|
|
diesel = { version = "1.4.8", features = ["postgres", "r2d2"] }
|
|
diesel_migrations = "1.4"
|
|
dotenv = "0.15.0"
|
|
walkdir = "2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
common = { path = "../common" } |