[package]
edition = "2021"
rust-version = "1.88"
name = "wallfacer-core"
version = "0.8.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime fuzzing and invariant-testing harness for MCP servers — catch crashes, hangs, schema drift, and state leaks before they ship."
homepage = "https://github.com/lacausecrypto/mcp-wallfacer"
documentation = "https://docs.rs/wallfacer-core"
readme = "README.md"
keywords = [
"mcp",
"fuzzing",
"testing",
"validation",
"security",
]
categories = [
"command-line-utilities",
"development-tools::testing",
"development-tools::debugging",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lacausecrypto/mcp-wallfacer"
[lib]
name = "wallfacer_core"
path = "src/lib.rs"
[[test]]
name = "invariant_fixtures"
path = "tests/invariant_fixtures.rs"
[[test]]
name = "pack_fixtures"
path = "tests/pack_fixtures.rs"
[[test]]
name = "proptest_schemas"
path = "tests/proptest_schemas.rs"
[[test]]
name = "torture_no_deadlock"
path = "tests/torture_no_deadlock.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.futures]
version = "0.3"
[dependencies.globset]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.http]
version = "1"
[dependencies.jsonschema]
version = "0.46"
features = ["resolve-file"]
default-features = false
[dependencies.rand]
version = "0.8"
[dependencies.rand_chacha]
version = "0.3"
[dependencies.regex]
version = "1"
[dependencies.rmcp]
version = "1.5"
features = [
"client",
"transport-async-rw",
"transport-streamable-http-client",
"transport-streamable-http-client-reqwest",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_json_path]
version = "0.7"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
expect_used = "warn"
panic = "warn"
uninlined_format_args = "allow"
unwrap_in_result = "warn"
unwrap_used = "warn"
[lints.rust]
missing_docs = "warn"