[[bin]]
name = "pforge"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
features = ["derive"]
version = "4.4"
[dependencies.notify]
version = "6.1"
[dependencies.notify-debouncer-mini]
version = "0.4"
[dependencies.pforge-codegen]
version = "0.1.0"
[dependencies.pforge-config]
version = "0.1.0"
[dependencies.pforge-runtime]
version = "0.1.0"
[dependencies.tokio]
features = ["full", "test-util"]
version = "1.35"
[dev-dependencies.tempfile]
version = "3.8"
[lints.clippy]
bool_to_int_with_if = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
default_constructed_unit_structs = "allow"
default_trait_access = "allow"
derive_partial_eq_without_eq = "allow"
disallowed_methods = "allow"
disallowed_types = "allow"
doc_link_with_quotes = "allow"
doc_markdown = "allow"
expect_used = "allow"
explicit_iter_loop = "allow"
float_cmp = "allow"
format_push_string = "allow"
future_not_send = "allow"
inline_always = "allow"
manual_let_else = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
match_wildcard_for_single_variants = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_pass_by_value = "allow"
needless_raw_string_hashes = "allow"
only_used_in_recursion = "allow"
option_if_let_else = "allow"
or_fun_call = "allow"
panic = "allow"
ptr_as_ptr = "allow"
ptr_cast_constness = "allow"
redundant_clone = "allow"
redundant_pub_crate = "allow"
return_self_not_must_use = "allow"
significant_drop_in_scrutinee = "allow"
significant_drop_tightening = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unused_self = "allow"
unwrap_used = "allow"
use_self = "allow"
wildcard_enum_match_arm = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "allow"
unreachable_pub = "allow"
unsafe_op_in_unsafe_fn = "warn"
[package]
authors = ["Pragmatic AI Labs"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "web-programming", "command-line-utilities"]
description = "Zero-boilerplate MCP server framework with EXTREME TDD methodology"
documentation = "https://docs.rs/pforge-runtime"
edition = "2021"
homepage = "https://github.com/paiml/pforge"
include = ["src/**/*", "templates/**/*", "README.md", "Cargo.toml"]
keywords = ["mcp", "codegen", "tdd", "framework", "declarative"]
license = "MIT"
name = "pforge-cli"
readme = "README.md"
repository = "https://github.com/paiml/pforge"
version = "0.1.3"