Compare commits

..

15 commits

Author SHA1 Message Date
aa0cd97faa Update Rust crate sha2 to 0.11.0
Some checks failed
Build and Test / account (push) Failing after 4m3s
2026-04-29 08:31:17 +00:00
b116b11901 Merge pull request 'Update Rust crate tokio to v1.52.1' (#25) from renovate/tokio-1.x-lockfile into main
All checks were successful
Build and Test / account (push) Successful in 7m49s
Reviewed-on: #25
2026-04-29 10:27:33 +02:00
7aea9d20bd Merge pull request 'Update Rust crate sentry to 0.48.0' (#31) from renovate/sentry-rust-monorepo into main
Some checks failed
Build and Test / account (push) Has been cancelled
Reviewed-on: #31
2026-04-29 10:25:58 +02:00
3eda1e5c6a Update Rust crate tokio to v1.52.1
All checks were successful
Build and Test / account (push) Successful in 7m21s
2026-04-29 08:01:13 +00:00
53f5ed9c52 Update Rust crate sentry to 0.48.0
All checks were successful
Build and Test / account (push) Successful in 7m4s
2026-04-29 08:00:57 +00:00
6a9dcb6053 Update actions/checkout action to v6 (#26)
All checks were successful
Build and Test / account (push) Successful in 6m43s
2026-04-29 09:55:09 +02:00
fd4fe0f234 Update Rust crate quick-xml to 0.39.0 (#28)
Some checks failed
Build and Test / account (push) Has been cancelled
2026-04-29 09:54:01 +02:00
267d85081c Update Rust crate prost to 0.14.0 (#27)
Some checks failed
Build and Test / account (push) Has been cancelled
2026-04-29 09:50:49 +02:00
499c10f568 Update Rust crate reqwest to 0.13.0 (#30)
Some checks failed
Build and Test / account (push) Has been cancelled
2026-04-29 09:50:33 +02:00
a4b27f6047 Update actions/cache action to v5 (#33)
Some checks failed
Build and Test / account (push) Has been cancelled
2026-04-29 09:50:05 +02:00
a4d322aacd Update actions/cache action to v5
All checks were successful
Build and Test / account (push) Successful in 4m0s
2026-04-29 01:00:57 +00:00
807306a958 Update Rust crate reqwest to 0.13.0
All checks were successful
Build and Test / account (push) Successful in 8m23s
2026-04-28 23:01:17 +00:00
ef3a33fd5d Update Rust crate quick-xml to 0.39.0
All checks were successful
Build and Test / account (push) Successful in 7m50s
2026-04-28 22:00:59 +00:00
33c8e4d1aa Update Rust crate prost to 0.14.0
All checks were successful
Build and Test / account (push) Successful in 7m55s
2026-04-28 22:00:50 +00:00
e666481d93 Update actions/checkout action to v6
All checks were successful
Build and Test / account (push) Successful in 5m53s
2026-04-28 21:45:50 +00:00
5 changed files with 1073 additions and 497 deletions

View file

@ -15,12 +15,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: recursive
- name: Cache container storage
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
/var/lib/containers/storage

814
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -16,7 +16,7 @@ incremental = false
rocket = { version = "0.5.1", features = ["json"] }
serde = { version = "1.0.218", features = ["derive"] }
log = "0.4.26"
quick-xml = { version = "0.37.2", features = ["serialize"] }
quick-xml = { version = "0.39.0", features = ["serialize"] }
tokio = "1.43.0"
dotenvy = "0.15.7"
once_cell = "1.20.3"
@ -37,16 +37,16 @@ cbc = "0.1.2"
mii = { path = "./mii" }
crc32fast = "1.4.2"
gxhash = "3.4.1"
sentry = "0.38.0"
sentry = "0.48.0"
rocket_cors = "0.6.0"
juniper = { version = "0.17.0", features = ["chrono"] }
juniper_rocket = "0.10.0"
prost = "0.13.4"
prost = "0.14.0"
lettre = "0.11.15"
rand = "0.8.5"
reqwest = "0.12.12"
reqwest = "0.13.0"
binrw = "0.15.1"
ecdsa = { version = "0.16.9", features = ["pem", "std", "verifying"] }
sha256 = "1.6.0"

760
mii/Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -6,5 +6,5 @@ edition = "2024"
[dependencies]
base64 = "0.22.1"
bytemuck = { version = "1.21.0", features = ["derive"] }
reqwest = "0.12.12"
reqwest = "0.13.0"
tokio = { version = "1.43.0", features = ["macros"] }