[package]
edition = "2021"
rust-version = "1.82"
name = "marsdb"
version = "0.7.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embeddable property-graph database with an openCypher query subset: single binary, single file, optional in-memory mode."
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"
path = "src/lib.rs"
[[example]]
name = "params_and_batch"
path = "examples/params_and_batch.rs"
[[example]]
name = "social_graph"
path = "examples/social_graph.rs"
[[example]]
name = "task_tracker"
path = "examples/task_tracker.rs"
[[test]]
name = "embed"
path = "tests/embed.rs"
[[bench]]
name = "aggregate_ops"
path = "benches/aggregate_ops.rs"
harness = false
[[bench]]
name = "concurrency_ops"
path = "benches/concurrency_ops.rs"
harness = false
[[bench]]
name = "cypher_ops"
path = "benches/cypher_ops.rs"
harness = false
[[bench]]
name = "index_ops"
path = "benches/index_ops.rs"
harness = false
[[bench]]
name = "ldbc_ops"
path = "benches/ldbc_ops.rs"
harness = false
[dependencies.marsdb-graph]
version = "0.7.1"
[dependencies.marsdb-query]
version = "0.7.1"
[dependencies.marsdb-storage]
version = "0.7.1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.plotters]
version = "0.3"
features = [
"svg_backend",
"line_series",
"histogram",
]
default-features = false
[dev-dependencies.tempfile]
version = "3"