-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 1.17 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
[package]
name = "memory-mcp-server"
version = "0.4.0"
edition = "2024"
[features]
default = []
gpu = ["burn/wgpu"]
[dependencies]
diesel = { version = "2.3.11", features = ["chrono", "postgres", "r2d2", "serde_json"] }
pq-sys = { version = "0.7.5", features = ["bundled"] }
openssl-sys = { version = "0.9.117", features = ["vendored"] }
tokio = { version = "1", features = ["full"] }
hyper = { version = "1", features = ["full"] }
http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["full"] }
clap = { version = "4.6.1", features = ["derive", "env"] }
burn = { version = "0.21.0", features = ["flex"] }
burn-store = "0.21.0"
tokenizers = "0.23.1"
pgvector = { version = "0.4.2", features = ["diesel", "serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "1.1"
chrono = { version = "0.4.45", features = ["serde"] }
dotenvy = "0.15.7"
rmcp = { version = "2.2.0", features = ["server", "macros", "transport-streamable-http-server", "transport-streamable-http-server-session"] }
schemars = "1.2.1"
anyhow = "1.0"
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.23", features = ["json", "env-filter"] }
[build-dependencies]
burn-onnx = "~0.21"