diff options
| author | Fuwn <[email protected]> | 2022-01-04 18:15:04 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-01-04 18:15:04 -0800 |
| commit | f12a352b5009dacf71a5d29ad158285a0d0ae7a2 (patch) | |
| tree | ca42458b429d7e18a28b1deb5267a432736fbe25 /src/structures.rs | |
| parent | feat(main.rs): ratelimit (100 requests/minute) (diff) | |
| download | api-f12a352b5009dacf71a5d29ad158285a0d0ae7a2.tar.xz api-f12a352b5009dacf71a5d29ad158285a0d0ae7a2.zip | |
chore: stricter clippy
Diffstat (limited to 'src/structures.rs')
| -rw-r--r-- | src/structures.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/structures.rs b/src/structures.rs index 3b5a59e..7aa684c 100644 --- a/src/structures.rs +++ b/src/structures.rs @@ -1,6 +1,8 @@ // Copyright (C) 2021-2021 the senpy club // SPDX-License-Identifier: GPL-3.0-only +#![allow(clippy::used_underscore_binding)] + use serde_derive::{Deserialize, Serialize}; #[derive(Serialize, Deserialize, Debug)] |