Update all dependencies
This commit is contained in:
parent
13321a44a2
commit
068c7ccc47
@ -1,4 +1,4 @@
|
||||
FROM node:19-alpine as web_builder
|
||||
FROM node:21-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.76 as builder
|
||||
|
||||
WORKDIR /usr/src/scel
|
||||
|
||||
|
@ -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.36", features = ["full"] }
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
anyhow = { version = "1.0.66" }
|
||||
anyhow = { version = "1.0.81" }
|
||||
dotenv = { version = "*" }
|
||||
|
||||
scel_api = { path = "../../lib/scel_api" }
|
||||
|
@ -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.7.4" }
|
||||
axum-extra = { version = "0.9.2", 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.5.2", features = ["cors", "trace"] }
|
||||
async-graphql = { version = "7.0.3", features = [
|
||||
'tracing',
|
||||
'opentelemetry',
|
||||
"log",
|
||||
] }
|
||||
async-graphql-axum = { version = "4.0.16" }
|
||||
async-graphql-axum = { version = "7.0.3" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0.89"
|
||||
tokio = { version = "1.22", features = ["full"] }
|
||||
serde_json = "1.0.114"
|
||||
tokio = { version = "1.36", features = ["full"] }
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3" }
|
||||
anyhow = { version = "1.0.66" }
|
||||
anyhow = { version = "1.0.81" }
|
||||
oauth2 = { version = "*" }
|
||||
async-session = { version = "*" }
|
||||
reqwest = { version = "*", default-features = false, features = [
|
||||
|
@ -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.36", features = ["full"] }
|
||||
anyhow = { version = "*" }
|
||||
async-trait = { version = "0.1.58" }
|
||||
async-trait = { version = "0.1.78" }
|
||||
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.3" }
|
||||
thiserror = "1.0.58"
|
||||
uuid = {version = "1.8.0", features = ["v4", "fast-rng"]}
|
||||
|
@ -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.2.1",
|
||||
"typescript": "5.4.2",
|
||||
"vite": "5.1.6"
|
||||
}
|
||||
}
|
1034
src/web/yarn.lock
1034
src/web/yarn.lock
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user