1 Commits

Author SHA1 Message Date
6099d730be Update Rust crate jwt-simple to 0.12.12
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-05-18 00:07:17 +00:00
2 changed files with 6 additions and 8 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

@ -7,7 +7,7 @@ edition = "2024"
env_logger = "0.11.8"
log = "0.4.27"
diesel = { version = "2.2.10", features = ["postgres", "r2d2"] }
diesel_migrations = "2.2.0"
diesel_migrations = "2.1.0"
clap = { version = "4.5.38", features = ["env", "derive"] }
actix-web = "4.11.0"
actix-cors = "0.7.1"
@ -27,7 +27,7 @@ light-openid = "1.0.4"
rand = "0.9.1"
ipnet = { version = "2.11.0", features = ["serde"] }
lazy-regex = "3.4.1"
jwt-simple = { version = "0.12.11", default-features = false, features = ["pure-rust"] }
jwt-simple = { version = "0.12.12", default-features = false, features = ["pure-rust"] }
mime_guess = "2.0.5"
rust-embed = { version = "8.7.2" }
sha2 = "0.11.0-pre.5"