[package]
edition = "2021"
rust-version = "1.75"
name = "llm-assisted-api-debugging-lab"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic API failure diagnoser with an LLM-assisted prompt template generator."
homepage = "https://github.com/infinityabundance/LLM-Assisted-API-Debugging-Lab"
documentation = "https://docs.rs/llm-assisted-api-debugging-lab"
readme = "README.md"
keywords = [
"api",
"debugging",
"llm",
"support",
"cli",
]
categories = [
"command-line-utilities",
"development-tools::debugging",
]
license = "Apache-2.0"
repository = "https://github.com/infinityabundance/LLM-Assisted-API-Debugging-Lab"
[lib]
name = "llm_assisted_api_debugging_lab"
path = "src/lib.rs"
[[bin]]
name = "llm-assisted-api-debugging-lab"
path = "src/main.rs"
[[test]]
name = "prompts"
path = "tests/prompts.rs"
[[test]]
name = "prompts_json"
path = "tests/prompts_json.rs"
[[test]]
name = "proptests"
path = "tests/proptests.rs"
[[test]]
name = "reports"
path = "tests/reports.rs"
[[test]]
name = "shorts"
path = "tests/shorts.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.toml]
version = "0.8"
features = ["parse"]
default-features = false
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
expect_used = "warn"
panic = "warn"
todo = "warn"
unimplemented = "warn"
unwrap_used = "warn"
[lints.rust]
unsafe_code = "forbid"