diff options
author | boastful-squirrel <boastful.squirrel@gmail.com> | 2019-05-03 17:32:51 +0000 |
---|---|---|
committer | boastful-squirrel <boastful.squirrel@gmail.com> | 2019-05-03 17:32:51 +0000 |
commit | a73a74283f64986ff6a0b6da4c234a828bc52522 (patch) | |
tree | 04e54430bfd8ac2f16e5c5faf59effdffcbfbfb2 /src/auth.rs | |
parent | Merge branch 'master' into themed-errors (diff) | |
download | miniserve-a73a74283f64986ff6a0b6da4c234a828bc52522.tar.gz miniserve-a73a74283f64986ff6a0b6da4c234a828bc52522.zip |
Return QueryParameters struct instead of tuple
Diffstat (limited to 'src/auth.rs')
-rw-r--r-- | src/auth.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/auth.rs b/src/auth.rs index c3cbd54..f2e5fcf 100644 --- a/src/auth.rs +++ b/src/auth.rs @@ -168,7 +168,7 @@ fn build_unauthorized_response( .into_string() } -#[cfg_attr(rustfmt, rustfmt_skip)] +#[rustfmt::skip] #[cfg(test)] mod tests { use super::*; |