iso/
lib.rs

1//
2// iso - implementations of datatypes related to common iso standards
3// Copyright (c) 2021 superwhiskers <whiskerdev@protonmail.com>
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8//
9
10#![allow(clippy::cognitive_complexity)]
11#![warn(clippy::cargo_common_metadata)]
12#![warn(clippy::dbg_macro)]
13#![warn(clippy::explicit_deref_methods)]
14#![warn(clippy::filetype_is_file)]
15#![warn(clippy::imprecise_flops)]
16#![warn(clippy::large_stack_arrays)]
17#![warn(clippy::todo)]
18#![warn(clippy::unimplemented)]
19#![deny(clippy::await_holding_lock)]
20#![deny(clippy::cast_lossless)]
21#![deny(clippy::clone_on_ref_ptr)]
22#![deny(clippy::doc_markdown)]
23#![deny(clippy::empty_enum)]
24#![deny(clippy::enum_glob_use)]
25#![deny(clippy::exit)]
26#![deny(clippy::explicit_into_iter_loop)]
27#![deny(clippy::explicit_iter_loop)]
28#![deny(clippy::fallible_impl_from)]
29#![deny(clippy::inefficient_to_string)]
30#![deny(clippy::large_digit_groups)]
31#![deny(clippy::wildcard_dependencies)]
32#![deny(clippy::wildcard_imports)]
33#![deny(clippy::unused_self)]
34#![deny(clippy::single_match_else)]
35#![deny(clippy::option_option)]
36#![deny(clippy::mut_mut)]
37#![cfg_attr(not(feature = "std"), no_std)]
38
39#[cfg(feature = "country")]
40pub mod country;
41
42#[cfg(feature = "language")]
43pub mod language;