chore (backend-rs): cleanup
This commit is contained in:
parent
a6730c3329
commit
7246c8675c
2 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ tracing = { version = "0.1.40", default-features = false }
|
||||||
tracing-subscriber = { version = "0.3.18", default-features = false }
|
tracing-subscriber = { version = "0.3.18", default-features = false }
|
||||||
url = { version = "2.5.2", default-features = false }
|
url = { version = "2.5.2", default-features = false }
|
||||||
urlencoding = { version = "2.1.3", default-features = false }
|
urlencoding = { version = "2.1.3", default-features = false }
|
||||||
uuid = { version = "1.10.0" }
|
uuid = "1.10.0"
|
||||||
web-push = { git = "https://github.com/pimeys/rust-web-push.git", rev = "40febe4085e3cef9cdfd539c315e3e945aba0656", default-features = false }
|
web-push = { git = "https://github.com/pimeys/rust-web-push.git", rev = "40febe4085e3cef9cdfd539c315e3e945aba0656", default-features = false }
|
||||||
zhconv = "0.3.1"
|
zhconv = "0.3.1"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
use crate::{database::cache, util::http_client};
|
use crate::{database::cache, util::http_client};
|
||||||
use futures_util::AsyncReadExt;
|
use futures_util::AsyncReadExt;
|
||||||
use image::{ImageError, ImageFormat, ImageReader};
|
use image::{ImageError, ImageFormat, ImageReader};
|
||||||
use isahc::prelude::*;
|
use isahc::AsyncReadResponseExt;
|
||||||
use nom_exif::{parse_jpeg_exif, EntryValue, ExifTag};
|
use nom_exif::{parse_jpeg_exif, EntryValue, ExifTag};
|
||||||
use std::io::Cursor;
|
use std::io::Cursor;
|
||||||
use tokio::sync::Mutex;
|
use tokio::sync::Mutex;
|
||||||
|
|
Loading…
Reference in a new issue