Compare commits

..

1 Commits

Author SHA1 Message Date
c3bc51ecbc fix(deps): update all dependencies
Some checks failed
renovate/artifacts Artifact file update failure
2025-03-26 00:59:46 +00:00
5 changed files with 1067 additions and 864 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 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
RUN --mount=type=cache,target=/usr/src/scel/web/dist yarn build 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 WORKDIR /usr/src/scel

View File

@ -13,5 +13,5 @@ futures = "0.3.30"
tracing = "0.1" tracing = "0.1"
lazy_static = "1.4.0" lazy_static = "1.4.0"
regex = { version = "1.7.0" } regex = { version = "1.7.0" }
thiserror = "1.0.37" thiserror = "2.0.0"
uuid = {version = "1.2.2", features = ["v4", "fast-rng"]} uuid = {version = "1.2.2", features = ["v4", "fast-rng"]}

View File

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

File diff suppressed because it is too large Load Diff