-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (51 loc) · 1.41 KB
/
Cargo.toml
File metadata and controls
63 lines (51 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "serial-mcp-server"
version = "0.1.0"
edition = "2021"
authors = ["adancurusul <[email protected]>"]
description = "A comprehensive MCP server for serial port communication"
license = "MIT"
readme = "README.md"
repository = "https://github.com/adancurusul/serial-mcp-server"
keywords = ["mcp", "serial", "communication", "embedded", "protocol"]
categories = ["development-tools", "embedded"]
[dependencies]
# MCP SDK
rmcp = { version = "0.3.2", features = ["server", "macros", "transport-io"] }
# Core serial communication
serialport = "4.5"
tokio = { version = "1.41", features = ["full"] }
tokio-serial = "5.4"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
schemars = { version = "1.0", features = ["derive"] }
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Command line and configuration
clap = { version = "4.5", features = ["derive", "env"] }
toml = "0.8"
# Utilities
uuid = { version = "1.11", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
hex = "0.4"
base64 = "0.22"
# Async utilities
futures = "0.3"
async-trait = "0.1"
[dev-dependencies]
mockall = "0.13"
tempfile = "3.14"
tokio-test = "0.4"
[features]
default = []
[[bin]]
name = "serial-mcp-server"
path = "src/main.rs"
[lib]
name = "serial_mcp_server"
path = "src/lib.rs"