upgrade compiler version and rust edition

This commit is contained in:
2021-11-22 15:22:41 +01:00
parent 36c01035d5
commit f59b49b1ad
3 changed files with 349 additions and 814 deletions

1159
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
[package]
name = "ics-proxy"
version = "0.1.0"
edition = "2018"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -1,4 +1,4 @@
FROM rust:1.54 as builder
FROM rust:1.56 as builder
RUN apt-get update && apt-get install -y sqlite3 && rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/ics-proxy
COPY . .