fix import order

This commit is contained in:
bitfl0wer 2023-12-02 17:36:36 +01:00
parent 7ef61eb317
commit e6c09e44eb
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ This crate uses Semantic Versioning 2.0.0 as its versioning scheme. You can read
#[cfg(all(feature = "rt", feature = "rt_multi_thread"))] #[cfg(all(feature = "rt", feature = "rt_multi_thread"))]
compile_error!("feature \"rt\" and feature \"rt_multi_thread\" cannot be enabled at the same time"); compile_error!("feature \"rt\" and feature \"rt_multi_thread\" cannot be enabled at the same time");
use serde::{Serialize, Deserialize}; use serde::{Deserialize, Serialize};
use url::{ParseError, Url}; use url::{ParseError, Url};
#[cfg(feature = "client")] #[cfg(feature = "client")]