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

This commit is contained in:
Kasper Juul Hermansen 2023-10-18 13:49:31 +00:00
parent 13321a44a2
commit 03b64a61bf
6 changed files with 452 additions and 509 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
@ -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.73 as builder
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
[dependencies]
tokio = { version = "1.22", features = ["full"] }
tokio = { version = "1.33", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = { version = "1.0.66" }
anyhow = { version = "1.0.75" }
dotenv = { version = "*" }
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
[dependencies]
axum = { version = "0.5.17" }
axum-extra = { version = "0.3.7", features = ["spa"] }
axum = { version = "0.6.20" }
axum-extra = { version = "0.8.0", features = ["spa"] }
futures = "0.3.28"
tower-http = { version = "0.3.4", features = ["cors", "trace"] }
async-graphql = { version = "4.0.16", features = [
tower-http = { version = "0.4.4", features = ["cors", "trace"] }
async-graphql = { version = "6.0.7", features = [
'tracing',
'opentelemetry',
"log",
] }
async-graphql-axum = { version = "4.0.16" }
async-graphql-axum = { version = "6.0.7" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.89"
tokio = { version = "1.22", features = ["full"] }
serde_json = "1.0.107"
tokio = { version = "1.33", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3" }
anyhow = { version = "1.0.66" }
anyhow = { version = "1.0.75" }
oauth2 = { version = "*" }
async-session = { version = "*" }
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
[dependencies]
tokio = { version = "1.22", features = ["full"] }
tokio = { version = "1.33", features = ["full"] }
anyhow = { version = "*" }
async-trait = { version = "0.1.58" }
async-trait = { version = "0.1.74" }
futures = "0.3.28"
tracing = "0.1"
lazy_static = "1.4.0"
regex = { version = "1.7.0" }
thiserror = "1.0.37"
uuid = {version = "1.2.2", features = ["v4", "fast-rng"]}
regex = { version = "1.10.2" }
thiserror = "1.0.49"
uuid = {version = "1.5.0", features = ["v4", "fast-rng"]}

View File

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

File diff suppressed because it is too large Load Diff