[package]
edition = "2021"
rust-version = "1.75"
name = "intermcp"
version = "0.3.0"
authors = ["Bharath B R <bharathcoorg7@gmail.com>"]
build = false
exclude = [
"php/**",
"python/**",
"go/**",
"composer.json",
"package.json",
"index.js",
"index.d.ts",
"bin/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ultra-fast, safe Model Context Protocol (MCP) engine and multiplexing hub in pure Rust, built for Interlayer Blockchain and open for all"
readme = "README.md"
keywords = [
"mcp",
"protocol",
"ai-agents",
"security",
"sandbox",
]
categories = [
"command-line-utilities",
"development-tools",
"network-programming",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/Bharathcoorg/intermcp"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/intermcp-v{ version }-{ target }.tar.gz"
bin-dir = "intermcp{ binary-ext }"
pkg-fmt = "tar.gz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[lib]
name = "intermcp"
path = "src/lib.rs"
[[bin]]
name = "intermcp"
path = "src/main.rs"
[[test]]
name = "auto_config"
path = "tests/auto_config.rs"
[[test]]
name = "composition"
path = "tests/composition.rs"
[[test]]
name = "dos_resilience"
path = "tests/dos_resilience.rs"
[[test]]
name = "flight_recorder"
path = "tests/flight_recorder.rs"
[[test]]
name = "gravity_tools"
path = "tests/gravity_tools.rs"
[[test]]
name = "hardening_security_pass"
path = "tests/hardening_security_pass.rs"
[[test]]
name = "http_sse_conformance"
path = "tests/http_sse_conformance.rs"
[[test]]
name = "hub_resilience"
path = "tests/hub_resilience.rs"
[[test]]
name = "manifest_declarative"
path = "tests/manifest_declarative.rs"
[[test]]
name = "mcp_conformance_harness"
path = "tests/mcp_conformance_harness.rs"
[[test]]
name = "panic_isolation"
path = "tests/panic_isolation.rs"
[[test]]
name = "policy_engine"
path = "tests/policy_engine.rs"
[[test]]
name = "protocol_compliance"
path = "tests/protocol_compliance.rs"
[[test]]
name = "reaper_windows"
path = "tests/reaper_windows.rs"
[[test]]
name = "redaction_corpus"
path = "tests/redaction_corpus.rs"
[[test]]
name = "sandbox_escape"
path = "tests/sandbox_escape.rs"
[[test]]
name = "shell_linter_fuzz"
path = "tests/shell_linter_fuzz.rs"
[[test]]
name = "signed_receipts"
path = "tests/signed_receipts.rs"
[[test]]
name = "smac_audit"
path = "tests/smac_audit.rs"
[[test]]
name = "supply_chain_firewall"
path = "tests/supply_chain_firewall.rs"
[[test]]
name = "taint_tracking"
path = "tests/taint_tracking.rs"
[[test]]
name = "time_locked_vault"
path = "tests/time_locked_vault.rs"
[[test]]
name = "wasm_sandbox"
path = "tests/wasm_sandbox.rs"
[dependencies.aho-corasick]
version = "1.1"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1.6"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dunce]
version = "1.0"
[dependencies.futures]
version = "0.3"
[dependencies.governor]
version = "0.7"
[dependencies.parking_lot]
version = "0.12"
[dependencies.rand]
version = "0.8"
[dependencies.rustls]
version = "0.23"
features = [
"std",
"aws_lc_rs",
]
default-features = false
[dependencies.rustls-pki-types]
version = "1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_jcs]
version = "0.1"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.shell-words]
version = "1.1"
[dependencies.subtle]
version = "2.5"
[dependencies.tempfile]
version = "3.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.38"
features = ["full"]
[dependencies.tokio-rustls]
version = "0.26"
features = ["aws_lc_rs"]
default-features = false
[dependencies.tokio-util]
version = "0.7"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.tokio-test]
version = "0.4"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows]
version = "0.58"
features = [
"Win32_System_JobObjects",
"Win32_System_Threading",
"Win32_Foundation",
"Win32_Storage_FileSystem",
"Win32_Security",
"Win32_System_ProcessStatus",
]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true