hexise/
lib.rs

1// Copyright 2019 Ahmed Charles <acharles@outlook.com>
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15//! A hex grid library for Rust.
16
17#![doc(html_root_url = "https://docs.rs/hexise/0.0.1/")]
18#![deny(warnings)]
19#![deny(absolute_paths_not_starting_with_crate)]
20#![deny(anonymous_parameters)]
21#![deny(bare_trait_objects)]
22#![deny(deprecated_in_future)]
23#![deny(elided_lifetimes_in_paths)]
24#![deny(ellipsis_inclusive_range_patterns)]
25#![deny(explicit_outlives_requirements)]
26#![deny(keyword_idents)]
27#![deny(macro_use_extern_crate)]
28#![deny(missing_copy_implementations)]
29#![deny(missing_debug_implementations)]
30#![deny(missing_docs)]
31#![deny(missing_doc_code_examples)]
32#![deny(private_doc_tests)]
33#![deny(question_mark_macro_sep)]
34#![deny(single_use_lifetimes)]
35#![deny(trivial_casts)]
36#![deny(trivial_numeric_casts)]
37#![deny(unsafe_code)]
38#![deny(unreachable_pub)]
39#![deny(unused_extern_crates)]
40#![deny(unused_import_braces)]
41#![deny(unused_labels)]
42#![deny(unused_lifetimes)]
43#![deny(unused_qualifications)]
44#![deny(unused_results)]
45#![deny(variant_size_differences)]