[package]
edition = "2024"
rust-version = "1.91"
name = "mcp-execution-core"
version = "0.7.0"
authors = ["Andrei G <k05h31@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types, traits, and error handling for MCP execution"
homepage = "https://github.com/bug-ops/mcp-execution"
readme = "README.md"
keywords = [
"mcp",
"execution",
"core",
"types",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bug-ops/mcp-execution"
[lib]
name = "mcp_execution_core"
path = "src/lib.rs"
[[test]]
name = "security_edge_cases"
path = "tests/security_edge_cases.rs"
[[test]]
name = "send_sync_tests"
path = "tests/send_sync_tests.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dirs]
version = "6.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.23"
features = [
"v4",
"fast-rng",
]
[dev-dependencies.tempfile]
version = "3.27"
[dev-dependencies.tokio]
version = "1.52"
features = [
"macros",
"rt",
]
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.cargo]
level = "deny"
priority = -1
[lints.clippy.cargo_common_metadata]
level = "allow"
priority = 10
[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 10
[lints.clippy.needless_borrows_for_generic_args]
level = "allow"
priority = 10
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.clippy.too_many_lines]
level = "allow"
priority = 10
[lints.rust]
missing_debug_implementations = "warn"
unsafe_op_in_unsafe_fn = "deny"
unused_lifetimes = "warn"