mirror of https://github.com/zkat/cacache-rs.git
Re-order imports to satisfy neatness urges
(I have this exact urge too but missed this one)
This commit is contained in:
parent
15536afe8d
commit
859e1bab57
|
|
@ -5,12 +5,12 @@ use std::pin::Pin;
|
|||
use std::sync::Mutex;
|
||||
use std::task::{Context, Poll};
|
||||
|
||||
use crate::async_lib::{AsyncWrite, JoinHandle};
|
||||
use futures::prelude::*;
|
||||
use memmap2::MmapMut;
|
||||
use ssri::{Algorithm, Integrity, IntegrityOpts};
|
||||
use tempfile::NamedTempFile;
|
||||
|
||||
use crate::async_lib::{AsyncWrite, JoinHandle};
|
||||
use crate::content::path;
|
||||
use crate::errors::{Internal, Result};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue