From b99bc8c93d1866c7c5bcae1b9e133f53a61fa83f Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Sat, 9 Dec 2023 11:45:11 -0500 Subject: [PATCH] deploy: (style) Move external crates before internal This is preferred style. --- lib/src/container/deploy.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/src/container/deploy.rs b/lib/src/container/deploy.rs index 52b247de..4d0ec1bf 100644 --- a/lib/src/container/deploy.rs +++ b/lib/src/container/deploy.rs @@ -2,14 +2,15 @@ use std::collections::HashSet; +use anyhow::Result; +use fn_error_context::context; +use ostree::glib; + use super::store::{gc_image_layers, LayeredImageState}; use super::{ImageReference, OstreeImageReference}; use crate::container::store::PrepareResult; use crate::keyfileext::KeyFileExt; use crate::sysroot::SysrootLock; -use anyhow::Result; -use fn_error_context::context; -use ostree::glib; /// The key in the OSTree origin which holds a serialized [`super::OstreeImageReference`]. pub const ORIGIN_CONTAINER: &str = "container-image-reference";