vault-link/sync-server
dependabot[bot] 88240c6c32
Bump rsa in /sync-server in the cargo group across 1 directory
Bumps the cargo group with 1 update in the /sync-server directory: [rsa](https://github.com/RustCrypto/RSA).


Updates `rsa` from 0.9.7 to 0.9.10
- [Changelog](https://github.com/RustCrypto/RSA/blob/v0.9.10/CHANGELOG.md)
- [Commits](https://github.com/RustCrypto/RSA/compare/v0.9.7...v0.9.10)

---
updated-dependencies:
- dependency-name: rsa
  dependency-version: 0.9.10
  dependency-type: indirect
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-01-06 18:20:11 +00:00
..
src Improve CI (#181) 2025-12-10 22:03:13 +00:00
.dockerignore Extract reconcile (#85) 2025-07-13 11:06:42 +01:00
.env Extract reconcile (#85) 2025-07-13 11:06:42 +01:00
build.rs Extract reconcile (#85) 2025-07-13 11:06:42 +01:00
Cargo.lock Bump rsa in /sync-server in the cargo group across 1 directory 2026-01-06 18:20:11 +00:00
Cargo.toml Bump versions to 0.14.0 2025-12-14 23:31:40 +00:00
config-e2e.yml Move log level to config file 2025-12-07 16:42:23 +00:00
Dockerfile Bump rust from 1.90-slim-trixie to 1.91-slim-trixie in /sync-server (#156) 2025-11-02 17:52:18 +00:00
README.md Add migration docs 2025-10-19 11:53:58 +01:00
rust-toolchain.toml Apply editorconfig 2025-12-07 16:42:23 +00:00

Sync server

Creating/resetting the Database for development

rm -rf db.sqlite*
sqlx database create --database-url sqlite://db.sqlite3
sqlx migrate run --source src/app_state/database/migrations --database-url sqlite://db.sqlite3
cargo sqlx prepare --workspace

Updating the DB schema through a migration

sqlx migrate add --source src/app_state/database/migrations <name>
sqlx migrate run --source src/app_state/database/migrations --database-url sqlite://db.sqlite3