cargo fmt

This commit is contained in:
Loïc Lecrenier 2022-09-01 11:40:29 +02:00 committed by Loïc Lecrenier
parent 36296bbb20
commit a7201ece04
12 changed files with 99 additions and 94 deletions

View file

@ -1,6 +1,9 @@
use std::borrow::Cow;
use std::convert::TryFrom;
use std::marker::PhantomData;
use heed::{BytesDecode, BytesEncode};
use roaring::RoaringBitmap;
use std::{borrow::Cow, convert::TryFrom, marker::PhantomData};
pub mod ordered_f64_codec;
pub mod str_ref;

View file

@ -1,4 +1,5 @@
use std::{borrow::Cow, convert::TryInto};
use std::borrow::Cow;
use std::convert::TryInto;
use heed::BytesDecode;