26 lines
677 B
TOML
26 lines
677 B
TOML
[package]
|
|
name = "moneymgr_backend"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
env_logger = "0.11.7"
|
|
log = "0.4.26"
|
|
diesel = { version = "2.2.0", features = ["postgres", "r2d2"] }
|
|
diesel_migrations = "2.1.0"
|
|
clap = { version = "4.5.32", features = ["env", "derive"] }
|
|
actix-web = "4"
|
|
actix-cors = "0.7.0"
|
|
actix-multipart = "0.7.0"
|
|
actix-remote-ip = "0.1.0"
|
|
actix-session = { version = "0.10.0", features = ["redis-session"] }
|
|
lazy_static = "1.5.0"
|
|
anyhow = "1.0.97"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
rust-s3 = "0.36.0-beta.2"
|
|
thiserror = "1.0.69"
|
|
tokio = "1.44.1"
|
|
futures-util = "0.3.31"
|
|
serde_json = "1.0.140"
|
|
light-openid = "1.0.4"
|
|
rand = "0.9.0" |