-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 1.14 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
[package]
name = "mcp-context-server"
version = "0.1.0"
edition = "2021"
rust-version = "1.74"
license = "Apache-2.0"
description = "Embeddable MCP server and standalone binary exposing deterministic context tools over JSON-RPC 2.0 stdio"
repository = "https://github.com/contextenginehq/context-mcp-server"
homepage = "https://github.com/contextenginehq/context-engine"
documentation = "https://docs.rs/mcp-context-server"
readme = "README.md"
keywords = ["mcp", "context", "json-rpc", "llm", "ai-agents"]
categories = ["command-line-utilities", "network-programming"]
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE",
"NOTICE",
]
[lib]
name = "mcp_context_server"
path = "src/lib.rs"
[[bin]]
name = "mcp-context-server"
path = "src/main.rs"
[dependencies]
context-core = { version = "0.1.0", path = "../context-core" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1", features = ["rt", "macros", "io-util", "io-std", "time"] }
jsonschema = "0.41.0"
[dev-dependencies]
chrono = { version = "0.4", default-features = false, features = ["std"] }
sha2 = "0.10"
tempfile = "3"