From 4cf6b628ee423f7113d764cba2f4fa82ae6e9325 Mon Sep 17 00:00:00 2001 From: Joakim Hulthe Date: Fri, 29 Sep 2023 19:47:40 +0200 Subject: [PATCH] Change crate type from lib --- Cargo.toml | 2 ++ Dockerfile | 2 +- frontend/Cargo.toml | 3 --- frontend/src/{lib.rs => main.rs} | 4 +--- 4 files changed, 4 insertions(+), 7 deletions(-) rename frontend/src/{lib.rs => main.rs} (62%) diff --git a/Cargo.toml b/Cargo.toml index ea3cd4d..6ad074d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,8 @@ [workspace] members = ["backend", "common", "frontend"] +resolver = "2" + [profile.dev] # Issue with const-generics incremental = false diff --git a/Dockerfile b/Dockerfile index 2e034d4..3477bc6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ################## ### BASE STAGE ### ################## -FROM rust:1.62.1 as base +FROM rust:1.72.1 as base # Install build dependencies RUN cargo install --locked cargo-make trunk strip_cargo_version diff --git a/frontend/Cargo.toml b/frontend/Cargo.toml index aa6164d..65c1456 100644 --- a/frontend/Cargo.toml +++ b/frontend/Cargo.toml @@ -4,9 +4,6 @@ version = "0.2.0" authors = ["Joakim Hulthe