Update all dependencies
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
Kasper Juul Hermansen 2023-08-15 06:50:44 +00:00
parent 13321a44a2
commit ae9ceb555a
6 changed files with 413 additions and 497 deletions

View File

@ -1,4 +1,4 @@
FROM node:19-alpine as web_builder FROM node:20-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.71 as builder
WORKDIR /usr/src/scel WORKDIR /usr/src/scel

View File

@ -6,10 +6,10 @@ 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]
tokio = { version = "1.22", features = ["full"] } tokio = { version = "1.31", features = ["full"] }
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] } tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = { version = "1.0.66" } anyhow = { version = "1.0.72" }
dotenv = { version = "*" } dotenv = { version = "*" }
scel_api = { path = "../../lib/scel_api" } scel_api = { path = "../../lib/scel_api" }

View File

@ -6,22 +6,22 @@ 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.6.20" }
axum-extra = { version = "0.3.7", features = ["spa"] } axum-extra = { version = "0.7.7", features = ["spa"] }
futures = "0.3.28" futures = "0.3.28"
tower-http = { version = "0.3.4", features = ["cors", "trace"] } tower-http = { version = "0.4.3", features = ["cors", "trace"] }
async-graphql = { version = "4.0.16", features = [ async-graphql = { version = "6.0.1", features = [
'tracing', 'tracing',
'opentelemetry', 'opentelemetry',
"log", "log",
] } ] }
async-graphql-axum = { version = "4.0.16" } async-graphql-axum = { version = "6.0.1" }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.89" serde_json = "1.0.104"
tokio = { version = "1.22", features = ["full"] } tokio = { version = "1.31", features = ["full"] }
tracing = "0.1" tracing = "0.1"
tracing-subscriber = { version = "0.3" } tracing-subscriber = { version = "0.3" }
anyhow = { version = "1.0.66" } anyhow = { version = "1.0.72" }
oauth2 = { version = "*" } oauth2 = { version = "*" }
async-session = { version = "*" } async-session = { version = "*" }
reqwest = { version = "*", default-features = false, features = [ reqwest = { version = "*", default-features = false, features = [

View File

@ -6,12 +6,12 @@ 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]
tokio = { version = "1.22", features = ["full"] } tokio = { version = "1.31", features = ["full"] }
anyhow = { version = "*" } anyhow = { version = "*" }
async-trait = { version = "0.1.58" } async-trait = { version = "0.1.73" }
futures = "0.3.28" futures = "0.3.28"
tracing = "0.1" tracing = "0.1"
lazy_static = "1.4.0" lazy_static = "1.4.0"
regex = { version = "1.7.0" } regex = { version = "1.9.3" }
thiserror = "1.0.37" thiserror = "1.0.45"
uuid = {version = "1.2.2", features = ["v4", "fast-rng"]} uuid = {version = "1.4.1", features = ["v4", "fast-rng"]}

View File

@ -15,8 +15,8 @@
"devDependencies": { "devDependencies": {
"@types/react": "18.2.20", "@types/react": "18.2.20",
"@types/react-dom": "18.2.7", "@types/react-dom": "18.2.7",
"@vitejs/plugin-react": "2.2.0", "@vitejs/plugin-react": "4.0.4",
"typescript": "4.9.3", "typescript": "5.1.6",
"vite": "3.2.4" "vite": "4.4.9"
} }
} }

File diff suppressed because it is too large Load Diff