aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfxqnlr <[email protected]>2024-08-12 17:21:16 +0200
committerfxqnlr <[email protected]>2024-08-12 17:21:16 +0200
commit843414433d68b7a7d1b60f814621766bcfca2206 (patch)
treeeccc72dd29edb7e96d5eebca0e372961cb3c20e2
parent56b7d3260c68510c95a8940385a15faefd84017e (diff)
downloadwebol-843414433d68b7a7d1b60f814621766bcfca2206.tar
webol-843414433d68b7a7d1b60f814621766bcfca2206.tar.gz
webol-843414433d68b7a7d1b60f814621766bcfca2206.zip
version bump
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--Dockerfile2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c4e0008..57960d9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2304,7 +2304,7 @@ dependencies = [
2304 2304
2305[[package]] 2305[[package]]
2306name = "webol" 2306name = "webol"
2307version = "0.4.3" 2307version = "0.5.0"
2308dependencies = [ 2308dependencies = [
2309 "axum", 2309 "axum",
2310 "axum-macros", 2310 "axum-macros",
diff --git a/Cargo.toml b/Cargo.toml
index 378cba9..80271b4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "webol" 2name = "webol"
3version = "0.4.3" 3version = "0.5.0"
4edition = "2021" 4edition = "2021"
5 5
6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
diff --git a/Dockerfile b/Dockerfile
index e5057e9..f7934fa 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,7 +5,7 @@ RUN cd /tmp && \
5 mkdir /dpkg && \ 5 mkdir /dpkg && \
6 for deb in *.deb; do dpkg --extract $deb /dpkg || exit 10; done 6 for deb in *.deb; do dpkg --extract $deb /dpkg || exit 10; done
7 7
8FROM rust:1.77 as builder 8FROM rust:1.80 as builder
9WORKDIR /app 9WORKDIR /app
10COPY . . 10COPY . .
11RUN cargo install --path . 11RUN cargo install --path .