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