-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (59 loc) · 2.05 KB
/
Cargo.toml
File metadata and controls
64 lines (59 loc) · 2.05 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
64
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.4.0"
edition = "2024"
rust-version = "1.89"
license = "MIT OR Apache-2.0"
repository = "https://github.com/altendky/onshape-mcp"
homepage = "https://github.com/altendky/onshape-mcp"
description = "A Rust-based MCP (Model Context Protocol) server for Onshape integration"
keywords = ["mcp", "onshape", "cad", "modelcontextprotocol"]
categories = ["development-tools", "api-bindings"]
[workspace.dependencies]
# Internal crates
onshape-client-core = { path = "crates/onshape-client-core", version = "0.4.0" }
onshape-client-io = { path = "crates/onshape-client-io", version = "0.4.0" }
onshape-mcp-core = { path = "crates/onshape-mcp-core", version = "0.4.0" }
onshape-mcp-io = { path = "crates/onshape-mcp-io", version = "0.4.0" }
onshape-mcp-resources = { path = "crates/onshape-mcp-resources", version = "0.4.0" }
# External dependencies
axum = "0.8"
base64 = "0.22"
chrono = { version = "0.4", default-features = false, features = ["serde"] }
clap = { version = "4", features = ["derive"] }
dirs = "6"
figment = { version = "0.10", features = ["toml", "env"] }
http = "1"
notify = "8"
oauth2 = { version = "5", default-features = false }
oauth2-reqwest = "0.1.0-alpha.3"
open = "5"
rand = "0.10"
reqwest = { version = "0.13", default-features = false, features = ["json", "multipart", "query", "rustls"] }
rmcp = "1.0"
schemars = "1"
sha2 = "0.11"
subtle = "2"
secrecy = { version = "0.10", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "sync", "signal"] }
tokio-util = "0.7"
tower = { version = "0.5", features = ["util"] }
tower-http = { version = "0.6", features = ["cors"] }
url = "2"
proc-macro2 = "1"
pulldown-cmark = "0.13"
tempfile = "3"
toml = "1.0"
[workspace.lints.rust]
unsafe_code = "deny"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"