Compare commits

..

1 Commits

Author SHA1 Message Date
d3b4aaea3e fix(deps): update all dependencies
Some checks failed
renovate/artifacts Artifact file update failure
2025-03-25 23:21:28 +00:00
5 changed files with 1068 additions and 865 deletions

740
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
FROM node:19-alpine as web_builder
FROM node:22-alpine as web_builder
WORKDIR /usr/src/scel/web
@ -7,7 +7,7 @@ COPY src/web/ .
RUN --mount=type=cache,target=/usr/src/scel/web/dist yarn
RUN --mount=type=cache,target=/usr/src/scel/web/dist yarn build
FROM rust:1.65 as builder
FROM rust:1.85 as builder
WORKDIR /usr/src/scel

View File

@ -6,8 +6,8 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.8.0" }
axum-extra = { version = "0.10.0", features = ["spa"] }
axum = { version = "0.5.17" }
axum-extra = { version = "0.3.7", features = ["spa"] }
futures = "0.3.30"
tower-http = { version = "0.6.0", features = ["cors", "trace"] }
async-graphql = { version = "7.0.0", features = [

View File

@ -15,8 +15,8 @@
"devDependencies": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@vitejs/plugin-react": "2.2.0",
"typescript": "4.9.3",
"vite": "3.2.4"
"@vitejs/plugin-react": "4.3.4",
"typescript": "5.8.2",
"vite": "6.2.3"
}
}

File diff suppressed because it is too large Load Diff