[[bench]]
harness = false
name = "dispatch_benchmark"
path = "benches/dispatch_benchmark.rs"
[[bench]]
harness = false
name = "throughput_benchmark"
path = "benches/throughput_benchmark.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.dashmap]
version = "6.0"
[dependencies.pforge-config]
version = "0.1.0"
[dependencies.pmcp]
default-features = false
version = "1.8"
[dependencies.rand]
version = "0.8"
[dependencies.regex]
version = "1.10"
[dependencies.reqwest]
features = ["json"]
optional = true
version = "0.12"
[dependencies.rustc-hash]
version = "2.0"
[dependencies.schemars]
features = ["derive"]
version = "0.8"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["full", "test-util"]
version = "1.35"
[dependencies.trueno-db]
default-features = false
optional = true
version = "0.3.5"
[dev-dependencies.criterion]
features = ["async_tokio"]
version = "0.5"
[dev-dependencies.mockito]
version = "1.2"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.8"
[[example]]
name = "calculator"
path = "examples/calculator.rs"
[[example]]
name = "middleware_demo"
path = "examples/middleware_demo.rs"
[features]
default = ["sse", "websocket", "http-handlers"]
full = ["sse", "websocket", "http-handlers", "persistence"]
http-handlers = ["dep:reqwest"]
persistence = ["dep:trueno-db"]
sse = ["pmcp/sse"]
websocket = ["pmcp/websocket"]
[lib]
name = "pforge_runtime"
path = "src/lib.rs"
[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"
keywords = ["mcp", "codegen", "tdd", "framework", "declarative"]
license = "MIT"
name = "pforge-runtime"
readme = "README.md"
repository = "https://github.com/paiml/pforge"
version = "0.1.4"