-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (70 loc) · 1.83 KB
/
Cargo.toml
File metadata and controls
75 lines (70 loc) · 1.83 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
65
66
67
68
69
70
71
72
73
74
75
[workspace]
resolver = "2"
members = [
"crates/apollo-mcp-server",
"crates/apollo-mcp-registry",
"crates/apollo-mcp-rhai",
"crates/apollo-schema-index",
]
[workspace.package]
authors = ["Apollo <opensource@apollographql.com>"]
edition = "2024"
license-file = "LICENSE"
repository = "https://github.com/apollographql/apollo-mcp-server"
rust-version = "1.92.0"
version = "1.11.0"
[workspace.dependencies]
apollo-compiler = "1.31.1"
apollo-federation = "2.12.0"
futures = { version = "0.3.31", features = ["thread-pool"] }
insta = { version = "1.43.1", features = [
"json",
"redactions",
"yaml",
"glob",
] }
rmcp = { version = "1.2", features = [
"server",
"transport-io",
"transport-streamable-http-server",
] }
reqwest = { version = "0.13.0", default-features = false, features = [
"gzip",
"json",
"native-tls-vendored",
] }
rstest = "0.25.0"
secrecy = { version = "0.10.3", features = ["serde"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
tempfile = "3"
thiserror = "2.0.12"
tokio = { version = "1.45.0", features = [
"fs",
"io-std",
"macros",
"net",
"rt",
"rt-multi-thread",
"signal",
"sync",
"time",
] }
tokio-stream = "0.1"
tracing = "0.1.41"
tracing-core = "0.1.33"
tracing-subscriber = { version = "0.3.19", features = ["json"] }
url = { version = "2.4", features = ["serde"] }
[workspace.metadata]
crane.name = "apollo-mcp"
# This allows usage of coverage(off) attribute without causing a linting error.
# This attribute doesn't work in stable Rust yet and can be removed whenever it does.
# See https://github.com/apollographql/apollo-mcp-server/pull/372
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage_nightly)'] }
[workspace.lints.clippy]
exit = "deny"
expect_used = "deny"
indexing_slicing = "deny"
unwrap_used = "deny"
panic = "deny"