diff options
| author | Fuwn <[email protected]> | 2023-05-18 06:24:50 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-05-18 06:24:50 +0000 |
| commit | 56f53ddca0135e17708af585bfb50144d6836f55 (patch) | |
| tree | 1d5beea4c266a7d9bdd50fe4750540d618b0b160 /src/request/response.rs | |
| parent | fix: improve macro hygiene (diff) | |
| download | germ-56f53ddca0135e17708af585bfb50144d6836f55.tar.xz germ-56f53ddca0135e17708af585bfb50144d6836f55.zip | |
fmt: update rustfmt.toml
Diffstat (limited to 'src/request/response.rs')
| -rw-r--r-- | src/request/response.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/request/response.rs b/src/request/response.rs index 4c822e1..f0119d0 100644 --- a/src/request/response.rs +++ b/src/request/response.rs @@ -16,11 +16,7 @@ // Copyright (C) 2022-2022 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only -use std::borrow::Cow; - -use rustls::SupportedCipherSuite; - -use crate::request::Status; +use {crate::request::Status, rustls::SupportedCipherSuite, std::borrow::Cow}; #[derive(Debug, Clone)] pub struct Response { |