1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
////////////////////////////////////////////////////////////////////////////////
// This Source Code Form is subject to the terms of the Mozilla Public         /
// License, v. 2.0. If a copy of the MPL was not distributed with this         /
// file, You can obtain one at https://mozilla.org/MPL/2.0/.                   /
////////////////////////////////////////////////////////////////////////////////

#![warn(clippy::pedantic, clippy::cargo)]
// Default::default() is more idiomatic imo
#![allow(clippy::default_trait_access)]
// too many lines is a dumb metric
#![allow(clippy::too_many_lines)]
// as is fine, clippy is silly
#![allow(clippy::cast_lossless)]
// Not actually going to be a published crate, useless to add
#![allow(clippy::cargo_common_metadata)]
// Annoying
#![allow(clippy::module_name_repetitions)]
// Some gnarly signature I may eventually refactor into builder
#![allow(clippy::too_many_arguments)]
// TODO: actually document functions
#![allow(clippy::missing_errors_doc)]

#[macro_use]
extern crate serde_derive;

pub mod apis;
pub mod models;