mem-graph 0.1.0

Graph store trait and in-memory implementation for MemOS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "mem-graph"
version = "0.1.0"
edition = "2021"
description = "Graph store trait and in-memory implementation for MemOS"
license = "Apache-2.0"

[dependencies]
mem-types = { path = "../mem-types", version = "0.1.0" }
async-trait = "0.1"
thiserror = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["sync"] }

[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }