Skip to main content

lawkit_python/
lib.rs

1// Allow common clippy warnings in tests
2#![cfg_attr(test, allow(clippy::uninlined_format_args))]
3#![cfg_attr(test, allow(clippy::useless_vec))]
4#![cfg_attr(test, allow(clippy::single_match))]
5#![cfg_attr(test, allow(clippy::len_zero))]
6#![cfg_attr(test, allow(clippy::redundant_closure))]
7#![cfg_attr(test, allow(clippy::needless_borrow))]
8
9pub mod colors;
10pub mod common_options;
11pub mod subcommands;
12
13// 明示的なre-exportで曖昧さを回避
14pub use lawkit_core::{common, error, laws};
15pub use subcommands::{analyze, benf, diagnose, normal, pareto, poisson, validate, zipf};
16
17pub const VERSION: &str = "2.0.1";