[package]
edition = "2024"
rust-version = "1.85"
name = "lean-agent-core"
version = "0.2.0"
authors = ["Rob Sneiderman <robbysneiderman@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for tracing Lean 4 diagnostics and evaluating Lean theorem-proving agents."
homepage = "https://github.com/Robby955/lean-agent-rs"
documentation = "https://docs.rs/lean-agent-core"
readme = "README.md"
keywords = [
"lean",
"formal-methods",
"theorem-proving",
"agents",
"rust",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Robby955/lean-agent-rs"
resolver = "2"
[lib]
name = "lean_agent_core"
path = "src/lib.rs"
[[test]]
name = "accept_guards"
path = "tests/accept_guards.rs"
[[test]]
name = "snapshot_tests"
path = "tests/snapshot_tests.rs"
[dependencies.camino]
version = "1.1"
features = ["serde1"]
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
"std",
]
default-features = false
[dependencies.ignore]
version = "0.4"
[dependencies.regex]
version = "1.11"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3.20"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.45"
features = [
"macros",
"process",
"rt-multi-thread",
"time",
"io-util",
]
[dependencies.toml]
version = "1.1"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.17"
features = [
"v4",
"serde",
]
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.insta]
version = "1.43"
features = ["json"]
[lints.clippy]
expect_used = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
panic = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1