Compare commits

...

2 Commits

Author SHA1 Message Date
0f717c1fd6 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
2025-02-21 02:14:30 +00:00
2b3b4bc38c fix(deps): update rust crate serde to v1.0.218
Some checks failed
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is failing
2025-02-20 06:17:31 +00:00
6 changed files with 595 additions and 608 deletions

8
Cargo.lock generated
View File

@ -1618,18 +1618,18 @@ dependencies = [
[[package]] [[package]]
name = "serde" name = "serde"
version = "1.0.217" version = "1.0.218"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70" checksum = "e8dfc9d19bdbf6d17e22319da49161d5d0108e4188e8b680aef6299eed22df60"
dependencies = [ dependencies = [
"serde_derive", "serde_derive",
] ]
[[package]] [[package]]
name = "serde_derive" name = "serde_derive"
version = "1.0.217" version = "1.0.218"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0" checksum = "f09503e191f4e797cb8aac08e9a4a4695c5edf6a2e70e376d961ddd5c969f82b"
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.85 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.8.0" }
axum-extra = { version = "0.3.7", features = ["spa"] } axum-extra = { version = "0.10.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.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.7.3",
"vite": "3.2.4" "vite": "6.1.1"
} }
} }

File diff suppressed because it is too large Load Diff