chore: fmt

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-11-25 23:14:38 +01:00
parent 82ccdefd93
commit 3939940c01
10 changed files with 118 additions and 121 deletions

View File

@@ -110,7 +110,7 @@ impl HtmxBuild {
let container =
match &container_image {
SlimImage::Debian { image, deps, .. } => {
let target = BuildTarget::from_target(&container_image);
let _target = BuildTarget::from_target(&container_image);
let build_container = self
.build(

View File

@@ -55,7 +55,7 @@ impl LeptosBuild {
.client
.cache_volume(format!("rust_leptos_{}", profile.to_string()));
let mut build_options = vec!["cargo", "leptos", "build", "--release", "-vv"];
let build_options = vec!["cargo", "leptos", "build", "--release", "-vv"];
let rust_prebuild = rust_build_image
.with_workdir("/mnt/src")
@@ -95,7 +95,7 @@ impl LeptosBuild {
for container_image in images {
let container = match &container_image {
SlimImage::Debian { image, deps, .. } => {
let target = BuildTarget::from_target(&container_image);
let _target = BuildTarget::from_target(&container_image);
let build_container = self
.build(

View File

@@ -1,6 +1,5 @@
use std::{
path::{Path, PathBuf},
sync::Arc,
};
use eyre::Context;

View File

@@ -1,4 +1,4 @@
use std::{path::PathBuf, sync::Arc};
use std::{path::PathBuf};
use crate::{build::RustVersion, source::RustSource};