Compare commits
11 commits
2f8fcad3db
...
53f5ed9c52
| Author | SHA1 | Date | |
|---|---|---|---|
| 53f5ed9c52 | |||
| 6a9dcb6053 | |||
| fd4fe0f234 | |||
| 267d85081c | |||
| 499c10f568 | |||
| a4b27f6047 | |||
| a4d322aacd | |||
| 807306a958 | |||
| ef3a33fd5d | |||
| 33c8e4d1aa | |||
| e666481d93 |
5 changed files with 1086 additions and 429 deletions
|
|
@ -15,12 +15,12 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- name: Cache container storage
|
- name: Cache container storage
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v5
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
/var/lib/containers/storage
|
/var/lib/containers/storage
|
||||||
|
|
|
||||||
812
Cargo.lock
generated
812
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -16,7 +16,7 @@ incremental = false
|
||||||
rocket = { version = "0.5.1", features = ["json"] }
|
rocket = { version = "0.5.1", features = ["json"] }
|
||||||
serde = { version = "1.0.218", features = ["derive"] }
|
serde = { version = "1.0.218", features = ["derive"] }
|
||||||
log = "0.4.26"
|
log = "0.4.26"
|
||||||
quick-xml = { version = "0.37.2", features = ["serialize"] }
|
quick-xml = { version = "0.39.0", features = ["serialize"] }
|
||||||
tokio = "1.43.0"
|
tokio = "1.43.0"
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0.15.7"
|
||||||
once_cell = "1.20.3"
|
once_cell = "1.20.3"
|
||||||
|
|
@ -37,16 +37,16 @@ cbc = "0.1.2"
|
||||||
mii = { path = "./mii" }
|
mii = { path = "./mii" }
|
||||||
crc32fast = "1.4.2"
|
crc32fast = "1.4.2"
|
||||||
gxhash = "3.4.1"
|
gxhash = "3.4.1"
|
||||||
sentry = "0.38.0"
|
sentry = "0.48.0"
|
||||||
rocket_cors = "0.6.0"
|
rocket_cors = "0.6.0"
|
||||||
|
|
||||||
juniper = { version = "0.17.0", features = ["chrono"] }
|
juniper = { version = "0.17.0", features = ["chrono"] }
|
||||||
juniper_rocket = "0.10.0"
|
juniper_rocket = "0.10.0"
|
||||||
|
|
||||||
prost = "0.13.4"
|
prost = "0.14.0"
|
||||||
lettre = "0.11.15"
|
lettre = "0.11.15"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
reqwest = "0.12.12"
|
reqwest = "0.13.0"
|
||||||
binrw = "0.15.1"
|
binrw = "0.15.1"
|
||||||
ecdsa = { version = "0.16.9", features = ["pem", "std", "verifying"] }
|
ecdsa = { version = "0.16.9", features = ["pem", "std", "verifying"] }
|
||||||
sha256 = "1.6.0"
|
sha256 = "1.6.0"
|
||||||
|
|
|
||||||
705
mii/Cargo.lock
generated
705
mii/Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -6,5 +6,5 @@ edition = "2024"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
base64 = "0.22.1"
|
base64 = "0.22.1"
|
||||||
bytemuck = { version = "1.21.0", features = ["derive"] }
|
bytemuck = { version = "1.21.0", features = ["derive"] }
|
||||||
reqwest = "0.12.12"
|
reqwest = "0.13.0"
|
||||||
tokio = { version = "1.43.0", features = ["macros"] }
|
tokio = { version = "1.43.0", features = ["macros"] }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue