1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-05-17 09:03:56 +00:00

Fix db issues with Option<> values and upd crates (#5594)

Some tables were lacking an option to convert Option<> to NULL.
This commit will fix that.

Also updated the crates to the latest version available.
This commit is contained in:
Mathijs van Veluw 2025-02-14 17:58:57 +01:00 committed by GitHub
parent d5c353427d
commit 3baffeee9a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 14 additions and 10 deletions

View file

@ -90,7 +90,7 @@ libsqlite3-sys = { version = "0.31.0", features = ["bundled"], optional = true }
# Crypto-related libraries
rand = "0.9.0"
ring = "0.17.8"
ring = "0.17.9"
# UUID generation
uuid = { version = "1.13.1", features = ["v4"] }