[package]
edition = "2024"
name = "mingli-contract"
version = "1.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The ports between a divination system and the code that orchestrates it: the CastingEngine and WordEngine traits, the shared query, and the determinism and school declarations."
readme = false
keywords = [
"divination",
"traits",
"ports",
"contract",
]
categories = [
"algorithms",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/goliajp/mingli"
resolver = "2"
[lib]
name = "mingli_contract"
path = "src/lib.rs"
[dependencies.mingli-astro]
version = "1.1.1"
features = ["serde"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[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"