[package]
edition = "2021"
name = "smcp-computer"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A2C-SMCP Computer client for MCP server management"
readme = "README.md"
keywords = [
"smcp",
"computer",
"mcp",
"tool",
]
categories = [
"network-programming",
"development-tools",
]
license = "MIT"
repository = "https://github.com/A2C-SMCP/rust-sdk"
[features]
cli = [
"dep:clap",
"dep:crossterm",
"dep:console",
"dep:rustyline",
"dep:rustyline-derive",
]
default = ["vrl"]
e2e = []
vrl = ["dep:vrl"]
[lib]
name = "smcp_computer"
path = "src/lib.rs"
[[bin]]
name = "smcp-computer"
path = "src/main.rs"
required-features = ["cli"]
[[test]]
name = "cache_integration"
path = "tests/cache_integration.rs"
[[test]]
name = "cache_invalidation"
path = "tests/cache_invalidation.rs"
[[test]]
name = "command_input_test"
path = "tests/command_input_test.rs"
[[test]]
name = "computer_edge_cases"
path = "tests/computer_edge_cases.rs"
[[test]]
name = "computer_integration"
path = "tests/computer_integration.rs"
[[test]]
name = "desktop_integration"
path = "tests/desktop_integration.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "mcp_clients_integration"
path = "tests/mcp_clients_integration.rs"
[[test]]
name = "mock_server_integration"
path = "tests/mock_server_integration.rs"
[[test]]
name = "playwright"
path = "tests/playwright.rs"
[[test]]
name = "python_rust_alignment"
path = "tests/python_rust_alignment.rs"
[[test]]
name = "reproduce_issue_4"
path = "tests/reproduce_issue_4.rs"
[[test]]
name = "resource_subscription_e2e"
path = "tests/resource_subscription_e2e.rs"
[[test]]
name = "socketio_client_test"
path = "tests/socketio_client_test.rs"
[[test]]
name = "sse_realtime_updates"
path = "tests/sse_realtime_updates.rs"
[[test]]
name = "test_mcp_integration"
path = "tests/test_mcp_integration.rs"
[dependencies.async-recursion]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.4"
features = ["derive"]
optional = true
[dependencies.console]
version = "0.16.1"
optional = true
[dependencies.crossterm]
version = "0.29.0"
optional = true
[dependencies.dashmap]
version = "5.5"
[dependencies.eventsource-client]
version = "0.11"
[dependencies.futures]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
[dependencies.lazy_static]
version = "1.4"
[dependencies.percent-encoding]
version = "2.3"
[dependencies.regex]
version = "1.10"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"stream",
]
[dependencies.rmcp]
version = "0.11.0"
features = [
"client",
"server",
"transport-child-process",
"transport-io",
"server-side-http",
"transport-streamable-http-server",
]
[dependencies.rpassword]
version = "7.2"
[dependencies.rustyline]
version = "14.0"
features = ["derive"]
optional = true
[dependencies.rustyline-derive]
version = "0.10"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.smcp]
version = "0.1.3"
[dependencies.tf-rust-socketio]
version = "0.7.0"
features = ["async"]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"net",
"sync",
"signal",
"process",
]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.vrl]
version = "0.29.0"
optional = true
[dev-dependencies.futures-util]
version = "0.3"
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.hyper]
version = "1"
features = [
"server",
"http1",
"http2",
"full",
]
[dev-dependencies.hyper-util]
version = "0.1"
features = [
"tokio",
"service",
"full",
]
[dev-dependencies.smcp-server-core]
version = "0.1.3"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]