[package]
edition = "2021"
name = "overgraph"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An absurdly fast embedded graph database. Pure Rust, sub-microsecond reads."
homepage = "https://overgraph.io"
readme = "README.md"
keywords = [
"graph-database",
"embedded",
"performance",
"in-process",
"rust",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Bhensley5/overgraph"
[features]
cli = []
[lib]
name = "overgraph"
path = "src/lib.rs"
[[bin]]
name = "benchmark-harness"
path = "src/bin/benchmark_harness.rs"
required-features = ["cli"]
[[bin]]
name = "overgraph-inspect"
path = "src/bin/inspect.rs"
required-features = ["cli"]
[[example]]
name = "knowledge_graph"
path = "examples/rust/knowledge_graph.rs"
[[test]]
name = "inspect_integration"
path = "tests/inspect_integration.rs"
required-features = ["cli"]
[[test]]
name = "phase1_integration"
path = "tests/phase1_integration.rs"
[[test]]
name = "phase2_integration"
path = "tests/phase2_integration.rs"
[[test]]
name = "phase3_integration"
path = "tests/phase3_integration.rs"
[[test]]
name = "phase4_integration"
path = "tests/phase4_integration.rs"
[[test]]
name = "phase5_integration"
path = "tests/phase5_integration.rs"
[[test]]
name = "robustness_integration"
path = "tests/robustness_integration.rs"
[[bench]]
name = "core_ops"
path = "benches/core_ops.rs"
harness = false
[dependencies.crc32fast]
version = "1"
[dependencies.memmap2]
version = "0.9"
[dependencies.rmp-serde]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = true
strip = "symbols"