Skip to content

Commit

Permalink
deploy: (style) Move external crates before internal
Browse files Browse the repository at this point in the history
This is preferred style.
  • Loading branch information
cgwalters committed Dec 10, 2023
1 parent 90937ca commit b99bc8c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions lib/src/container/deploy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit b99bc8c

Please sign in to comment.