[package]
edition = "2024"
name = "mingli-core"
version = "1.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mathematical primitives behind divination systems: cyclic groups with CRT, angle quantization, a GF(2) lattice, a hash ring, group actions, and a seeded sampler. No world data, no dependencies."
readme = false
keywords = [
"cyclic-group",
"crt",
"gf2",
"quantizer",
"divination",
]
categories = [
"algorithms",
"mathematics",
]
license = "MIT"
repository = "https://github.com/goliajp/mingli"
resolver = "2"
[lib]
name = "mingli_core"
path = "src/lib.rs"
[[bench]]
name = "core_bench"
path = "benches/core_bench.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.8"
default-features = false
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
doc_markdown = "allow"
many_single_char_names = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "forbid"