diff options
| author | Fuwn <[email protected]> | 2025-05-27 16:16:35 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-27 16:16:35 +0000 |
| commit | 884aa53553e4a811dc269d60fd6fc59e837390d3 (patch) | |
| tree | 53718aa956dd7623465a9dd2fa142d024d4f9726 /src/request/verifier.rs | |
| parent | ci(ga): bump rustc (diff) | |
| download | germ-884aa53553e4a811dc269d60fd6fc59e837390d3.tar.xz germ-884aa53553e4a811dc269d60fd6fc59e837390d3.zip | |
refactor: Use latest best practices and formatting
Diffstat (limited to 'src/request/verifier.rs')
| -rw-r--r-- | src/request/verifier.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/request/verifier.rs b/src/request/verifier.rs index a858b72..8e5d015 100644 --- a/src/request/verifier.rs +++ b/src/request/verifier.rs @@ -17,7 +17,10 @@ // SPDX-License-Identifier: GPL-3.0-only use { - rustls::{client, client::ServerCertVerified, Certificate}, + rustls::{ + Certificate, + client::{self, ServerCertVerified}, + }, std::time::SystemTime, }; |