Skip to content

Commit 0fa5a35

Browse files
committed
update some versions
1 parent ebbb4ef commit 0fa5a35

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v22.7.0
1+
v22.14.0

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN pnpm run build
1111

1212

1313
# BACKEND
14-
FROM rust:1.80-alpine as backend
14+
FROM rust:1.85-alpine as backend
1515
WORKDIR /tmp
1616
RUN apk add --no-cache libc-dev openssl-dev alpine-sdk
1717
COPY ./packages/backend ./

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
"npm-run-all": "^4.1.5",
1818
"shelljs": "^0.8.5"
1919
},
20-
"packageManager": "pnpm@9.15.4"
20+
"packageManager": "pnpm@10.3.0"
2121
}

packages/backend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "cryptgeon"
33
version = "2.9.1"
44
authors = ["cupcakearmy <[email protected]>"]
55
edition = "2021"
6-
rust-version = "1.80"
6+
rust-version = "1.85"
77

88
[[bin]]
99
name = "cryptgeon"

packages/backend/src/main.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
use std::{collections::HashMap, sync::Arc};
22

33
use axum::{
4-
body::Body,
54
extract::{DefaultBodyLimit, Request},
6-
http::HeaderValue,
7-
middleware::{self, Next},
8-
response::Response,
95
routing::{delete, get, post},
106
Router, ServiceExt,
117
};

0 commit comments

Comments
 (0)