1 Commits

Author SHA1 Message Date
6bf14e423d 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-17 00:16:04 +00:00
2 changed files with 5 additions and 7 deletions

View File

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

View File

@ -13,7 +13,7 @@ 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.1", features = ["redis-session"] }
actix-session = { version = "0.10.0", features = ["redis-session"] }
actix-files = "0.6.6"
lazy_static = "1.5.0"
anyhow = "1.0.98"