4 Commits

Author SHA1 Message Date
c42b8b1bda Merge branch 'main' of ssh://gitea.communiquons.org:52001/pierre/MoneyMgr
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-05-19 18:36:50 +02:00
bdcbe94c97 Add api_curl to release 2025-05-19 18:36:34 +02:00
caeff985c2 Update Rust crate diesel_migrations to 2.2.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2025-05-18 00:07:13 +00:00
bed538793d Update Rust crate actix-session to 0.10.1
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2025-05-17 00:16:01 +00:00
2 changed files with 8 additions and 6 deletions

View File

@ -38,6 +38,7 @@ steps:
- cd moneymgr_backend
- rustup component add clippy
- cargo clippy -- -D warnings
- cargo clippy --example api_curl -- -D warnings
- name: backend_test
image: rust
@ -51,7 +52,7 @@ steps:
- cargo test
- name: backend_compile
- name: backend_build
image: rust
volumes:
- name: rust_registry
@ -67,15 +68,16 @@ steps:
- cd moneymgr_backend
- mv /tmp/web_build/dist static
- cargo build --release
- ls -lah target/release/moneymgr_backend
- cp target/release/moneymgr_backend /tmp/release
- cargo build --release --example api_curl
- ls -lah target/release/moneymgr_backend target/release/examples/api_curl
- cp target/release/moneymgr_backend target/release/examples/api_curl /tmp/release
# Release
- name: gitea_release
image: plugins/gitea-release
depends_on:
- backend_compile
- backend_build
when:
event:
- tag

View File

@ -7,13 +7,13 @@ edition = "2024"
env_logger = "0.11.8"
log = "0.4.27"
diesel = { version = "2.2.10", features = ["postgres", "r2d2"] }
diesel_migrations = "2.1.0"
diesel_migrations = "2.2.0"
clap = { version = "4.5.38", features = ["env", "derive"] }
actix-web = "4.11.0"
actix-cors = "0.7.1"
actix-multipart = "0.7.2"
actix-remote-ip = "0.1.0"
actix-session = { version = "0.10.0", features = ["redis-session"] }
actix-session = { version = "0.10.1", features = ["redis-session"] }
actix-files = "0.6.6"
lazy_static = "1.5.0"
anyhow = "1.0.98"