-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1.01 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
[package]
name = "mcp_memory"
version = "0.1.1"
edition = "2021"
rust-version = "1.86"
description = "MCP Memory is a lightweight Model Context Protocol (MCP) server that stores a knowledge graph on disk and provides simple text search capabilities."
authors = ["LLMemory Team"]
license = "MIT"
repository = "https://github.com/aliev/mcp_memory"
homepage = "https://github.com/aliev/mcp_memory"
documentation = "https://github.com/aliev/mcp_memory#readme"
keywords = ["llm", "memory", "mcp", "knowledge-graph", "ai", "mcp_memory"]
categories = ["command-line-utilities", "api-bindings"]
readme = "README.md"
[dependencies]
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rmcp = { version = "0.2.1", features = ["schemars"] }
tokio = { version = "1.0", features = ["full"] }
async-trait = "0.1"
rayon = "1.8"
[dev-dependencies]
tempfile = "3.0"
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[[bin]]
name = "mcp_memory"
path = "src/main.rs"
doc = false