[package]
name = "mindkit"
version = "0.1.0"
authors = ["Corey Ryan <corey@coreyr.com>"]
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0"
description = "A generic sequential thinking toolkit for AI reasoning systems"
repository = "https://github.com/DevOpsDali/mindkit"
documentation = "https://docs.rs/mindkit"
readme = "README.md"
keywords = ["ai", "reasoning", "thinking", "mcp", "cognition"]
categories = ["algorithms", "data-structures"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
schemars = "1.0.4"
[lib]
crate-type = ["lib"]
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
correctness = { level = "deny", priority = -1 }
suspicious = { level = "deny", priority = -1 }
perf = { level = "deny", priority = -1 }
complexity = { level = "warn", priority = -1 }
style = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }