Update all dependencies
This commit is contained in:
parent
13321a44a2
commit
715657f4d5
@ -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.72 as builder
|
||||||
|
|
||||||
WORKDIR /usr/src/scel
|
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
|
# 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.32", 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.75" }
|
||||||
dotenv = { version = "*" }
|
dotenv = { version = "*" }
|
||||||
|
|
||||||
scel_api = { path = "../../lib/scel_api" }
|
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
|
# 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.8.0", features = ["spa"] }
|
||||||
futures = "0.3.28"
|
futures = "0.3.28"
|
||||||
tower-http = { version = "0.3.4", features = ["cors", "trace"] }
|
tower-http = { version = "0.4.4", features = ["cors", "trace"] }
|
||||||
async-graphql = { version = "4.0.16", features = [
|
async-graphql = { version = "6.0.6", features = [
|
||||||
'tracing',
|
'tracing',
|
||||||
'opentelemetry',
|
'opentelemetry',
|
||||||
"log",
|
"log",
|
||||||
] }
|
] }
|
||||||
async-graphql-axum = { version = "4.0.16" }
|
async-graphql-axum = { version = "6.0.6" }
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0.89"
|
serde_json = "1.0.107"
|
||||||
tokio = { version = "1.22", features = ["full"] }
|
tokio = { version = "1.32", 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.75" }
|
||||||
oauth2 = { version = "*" }
|
oauth2 = { version = "*" }
|
||||||
async-session = { version = "*" }
|
async-session = { version = "*" }
|
||||||
reqwest = { version = "*", default-features = false, features = [
|
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
|
# 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.32", 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.5" }
|
||||||
thiserror = "1.0.37"
|
thiserror = "1.0.48"
|
||||||
uuid = {version = "1.2.2", features = ["v4", "fast-rng"]}
|
uuid = {version = "1.4.1", features = ["v4", "fast-rng"]}
|
||||||
|
@ -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.2.2",
|
||||||
"vite": "3.2.4"
|
"vite": "4.4.9"
|
||||||
}
|
}
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user