[package]
name = "graphmind-sdk"
version = "0.8.5"
edition = "2021"
authors = ["Graphmind Team"]
description = "Client SDK for Graphmind Graph Database — embedded and remote modes"
license = "Apache-2.0"
repository = "https://github.com/fab679/graphmind"
keywords = ["graph", "database", "sdk", "cypher", "client"]
categories = ["database", "api-bindings"]
[dependencies]
tokio = { version = "1.35", features = ["net", "io-util", "rt"] }
async-trait = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.13.1", features = ["json"] }
thiserror = "1.0"
graphmind = { path = "../..", version = "0.8.5" }
graphmind-graph-algorithms = { path = "../graphmind-graph-algorithms", version = "0.8.5" }
graphmind-optimization = { path = "../graphmind-optimization", version = "0.8.5" }
ndarray = "0.15"
[dev-dependencies]
tokio = { version = "1.35", features = ["full"] }