[package]
edition = "2021"
rust-version = "1.82"
name = "marsdb-graph"
version = "0.7.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Property graph model and CRUD storage layer used internally by MarsDB."
homepage = "https://github.com/knoguchi/marsdb"
documentation = "https://knoguchi.github.io/marsdb/"
readme = "README.md"
keywords = [
"graph-database",
"cypher",
"opencypher",
"embedded",
"database",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/knoguchi/marsdb"
[lib]
name = "marsdb_graph"
path = "src/lib.rs"
[[test]]
name = "abort_probe"
path = "tests/abort_probe.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[bench]]
name = "graph_ops"
path = "benches/graph_ops.rs"
harness = false
[dependencies.marsdb-storage]
version = "0.7.1"
[dependencies.postcard]
version = "1"
features = ["alloc"]
[dependencies.redb]
version = "4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"