[package]
edition = "2024"
name = "graphlink"
version = "1.0.0"
authors = ["Rylan Polster <rslpolster@gmail.com>"]
build = false
exclude = [
".github/",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A memory-safe, relational in-memory graph database."
readme = "README.md"
keywords = [
"database",
"graph",
"in-memory",
"relational",
"orm",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT"
repository = "https://github.com/Rylan12/graphlink"
[lib]
name = "graphlink"
path = "src/lib.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.graphlink-macros]
version = "1.0.0"
[dependencies.slotmap]
version = "1.1.1"