[package]
edition = "2021"
name = "fsmp"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FSM Prompter — a CLI that steers AI agents through workflows by re-prompting them at each transition"
readme = "README.md"
keywords = [
"fsm",
"state-machine",
"workflow",
"agent",
"prompt",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jamesmacaulay/fsmp"
[lib]
name = "fsmp"
path = "src/lib.rs"
[[bin]]
name = "fsmp"
path = "src/main.rs"
[[test]]
name = "authoring"
path = "tests/authoring.rs"
[[test]]
name = "dev_cycle"
path = "tests/dev_cycle.rs"
[[test]]
name = "guide"
path = "tests/guide.rs"
[[test]]
name = "lint"
path = "tests/lint.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.uuid]
version = "1"
features = ["v4"]