update some versions

This commit is contained in:
Niccolo Borgioli 2025-02-27 20:00:38 +01:00
parent ebbb4efa04
commit 0fa5a35dae
5 changed files with 4 additions and 8 deletions

2
.nvmrc
View File

@ -1 +1 @@
v22.7.0
v22.14.0

View File

@ -11,7 +11,7 @@ RUN pnpm run build
# BACKEND
FROM rust:1.80-alpine as backend
FROM rust:1.85-alpine as backend
WORKDIR /tmp
RUN apk add --no-cache libc-dev openssl-dev alpine-sdk
COPY ./packages/backend ./

View File

@ -17,5 +17,5 @@
"npm-run-all": "^4.1.5",
"shelljs": "^0.8.5"
},
"packageManager": "pnpm@9.15.4"
"packageManager": "pnpm@10.3.0"
}

View File

@ -3,7 +3,7 @@ name = "cryptgeon"
version = "2.9.1"
authors = ["cupcakearmy <hi@nicco.io>"]
edition = "2021"
rust-version = "1.80"
rust-version = "1.85"
[[bin]]
name = "cryptgeon"

View File

@ -1,11 +1,7 @@
use std::{collections::HashMap, sync::Arc};
use axum::{
body::Body,
extract::{DefaultBodyLimit, Request},
http::HeaderValue,
middleware::{self, Next},
response::Response,
routing::{delete, get, post},
Router, ServiceExt,
};