diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-10 15:35:35 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-10 15:35:35 +0900 |
| commit | deb44112883ab7ff932b0ab7c547680a615c7821 (patch) | |
| tree | a2f7f2416d8513eef064829e02689610e38760d3 /crates/mozart-core/src/http.rs | |
| parent | 46845eff8d1398f35099a0ef914f77bcaf473287 (diff) | |
| download | php-mozart-deb44112883ab7ff932b0ab7c547680a615c7821.tar.gz php-mozart-deb44112883ab7ff932b0ab7c547680a615c7821.tar.zst php-mozart-deb44112883ab7ff932b0ab7c547680a615c7821.zip | |
refactor(clippy): deny clippy::unused_trait_names
Diffstat (limited to 'crates/mozart-core/src/http.rs')
| -rw-r--r-- | crates/mozart-core/src/http.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crates/mozart-core/src/http.rs b/crates/mozart-core/src/http.rs index 43de55d..6fed90d 100644 --- a/crates/mozart-core/src/http.rs +++ b/crates/mozart-core/src/http.rs @@ -1,9 +1,8 @@ use crate::MOZART_VERSION; +use anyhow::{Context as _, Result, anyhow, bail}; use std::path::{Path, PathBuf}; use std::sync::OnceLock; -use anyhow::{Context, Result, anyhow, bail}; - /// Returns the common User-Agent string for all HTTP requests. /// /// Format: `Mozart/<version> (<os>; <arch>)` |
