-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (22 loc) · 927 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (22 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "memento"
authors = ["Jeff Grunewald <jeff@grunewalddesign.com>"]
readme = "README.md"
version = "0.1.0"
edition = "2024"
description = "MCP memory server for multi-agent coordination"
license = "MIT OR Apache-2.0"
repository = "https://github.com/jeffgrunewald/memento"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive", "env"] }
axum = "0.8"
rmcp = { version = "1.3", features = ["server", "transport-io", "transport-streamable-http-server", "macros"] }
schemars = "1"
serde = { version = "1", features = ["derive"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "json", "time"] }
time = { version = "0.3", features = ["formatting", "parsing", "serde"] }
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread", "signal", "io-util", "io-std"] }
tokio-util = "0.7"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }