|
1 | | -//! A collection of data structures that are based probability theory and therefore only provide |
2 | | -//! the correct answer if a certain probability. In exchange they have a better runtime and memory |
3 | | -//! complexity compared to traditional data structures. |
4 | | -
|
5 | | -#![deny(const_err)] |
6 | | -#![deny(anonymous_parameters)] |
7 | | -#![deny(bare_trait_objects)] |
8 | | -#![deny(dead_code)] |
9 | | -#![deny(illegal_floating_point_literal_pattern)] |
10 | | -#![deny(missing_debug_implementations)] |
11 | | -#![deny(missing_docs)] |
12 | | -#![deny(non_camel_case_types)] |
13 | | -#![deny(non_snake_case)] |
14 | | -#![deny(non_upper_case_globals)] |
15 | | -#![deny(unknown_lints)] |
16 | | -#![deny(unreachable_code)] |
17 | | -#![deny(unreachable_patterns)] |
18 | | -#![deny(unreachable_pub)] |
19 | | -#![deny(unsafe_code)] |
20 | | -#![deny(unused_extern_crates)] |
| 1 | +#![doc = concat!(include_str!("../README.md"), "\n\n", include_str!("../CHANGELOG.md"))] |
| 2 | +#![deny( |
| 3 | + anonymous_parameters, |
| 4 | + bare_trait_objects, |
| 5 | + clippy::clone_on_ref_ptr, |
| 6 | + clippy::explicit_iter_loop, |
| 7 | + clippy::future_not_send, |
| 8 | + clippy::use_self, |
| 9 | + const_err, |
| 10 | + dead_code, |
| 11 | + illegal_floating_point_literal_pattern, |
| 12 | + missing_copy_implementations, |
| 13 | + missing_debug_implementations, |
| 14 | + missing_docs, |
| 15 | + non_camel_case_types, |
| 16 | + non_snake_case, |
| 17 | + non_upper_case_globals, |
| 18 | + rust_2018_idioms, |
| 19 | + rustdoc::bare_urls, |
| 20 | + rustdoc::broken_intra_doc_links, |
| 21 | + unknown_lints, |
| 22 | + unreachable_code, |
| 23 | + unreachable_patterns, |
| 24 | + unreachable_pub, |
| 25 | + unsafe_code, |
| 26 | + unused_extern_crates |
| 27 | +)] |
21 | 28 |
|
22 | 29 | #[cfg(feature = "num-traits")] |
23 | 30 | pub use num_traits; |
|
0 commit comments