Compare commits

...

2 Commits

Author SHA1 Message Date
040adcf41a chore(deps): update all dependencies
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing
2024-12-11 05:57:40 +00:00
157ec7ac1a fix(deps): update rust crate serde to v1.0.216
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
2024-12-11 02:24:15 +00:00
6 changed files with 590 additions and 609 deletions

10
Cargo.lock generated
View File

@ -1,6 +1,6 @@
# This file is automatically @generated by Cargo. # This file is automatically @generated by Cargo.
# It is not intended for manual editing. # It is not intended for manual editing.
version = 3 version = 4
[[package]] [[package]]
name = "Inflector" name = "Inflector"
@ -1618,18 +1618,18 @@ dependencies = [
[[package]] [[package]]
name = "serde" name = "serde"
version = "1.0.215" version = "1.0.216"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f" checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e"
dependencies = [ dependencies = [
"serde_derive", "serde_derive",
] ]
[[package]] [[package]]
name = "serde_derive" name = "serde_derive"
version = "1.0.215" version = "1.0.216"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0" checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

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.83 as builder
WORKDIR /usr/src/scel WORKDIR /usr/src/scel

View File

@ -6,16 +6,16 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
axum = { version = "0.5.17" } axum = { version = "0.7.0" }
axum-extra = { version = "0.3.7", features = ["spa"] } axum-extra = { version = "0.9.0", features = ["spa"] }
futures = "0.3.30" futures = "0.3.30"
tower-http = { version = "0.3.4", features = ["cors", "trace"] } tower-http = { version = "0.6.0", features = ["cors", "trace"] }
async-graphql = { version = "4.0.16", features = [ async-graphql = { version = "7.0.0", features = [
'tracing', 'tracing',
'opentelemetry', 'opentelemetry',
"log", "log",
] } ] }
async-graphql-axum = { version = "4.0.16" } async-graphql-axum = { version = "7.0.0" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.89" serde_json = "1.0.89"
tokio = { version = "1.22", features = ["full"] } tokio = { version = "1.22", features = ["full"] }

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.1", "@types/react": "19.0.1",
"@types/react-dom": "19.0.2", "@types/react-dom": "19.0.2",
"@vitejs/plugin-react": "2.2.0", "@vitejs/plugin-react": "4.3.4",
"typescript": "4.9.3", "typescript": "5.7.2",
"vite": "3.2.4" "vite": "6.0.3"
} }
} }

File diff suppressed because it is too large Load Diff