distances/
lib.rs

1#![deny(clippy::correctness)]
2#![warn(
3    missing_docs,
4    clippy::all,
5    clippy::suspicious,
6    clippy::style,
7    clippy::complexity,
8    clippy::perf,
9    clippy::pedantic,
10    clippy::nursery,
11    clippy::missing_docs_in_private_items,
12    clippy::unwrap_used,
13    clippy::expect_used,
14    clippy::panic,
15    clippy::cast_lossless
16)]
17#![doc = include_str!("../README.md")]
18// #![no_std]  // TODO: re-enable as an optional feature
19
20// extern crate alloc;
21
22pub mod number;
23
24pub use number::Number;
25
26pub mod sets;
27pub mod simd;
28pub mod strings;
29pub mod vectors;
30
31/// The version of the crate.
32pub const VERSION: &str = "1.8.0";