overgraph 0.11.0

An absurdly fast embedded graph database. Pure Rust, sub-microsecond reads.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "overgraph"
version = "0.11.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 = "gql_readonly"
path = "examples/rust/gql_readonly.rs"

[[example]]
name = "knowledge_graph"
path = "examples/rust/knowledge_graph.rs"

[[test]]
name = "compaction_integration"
path = "tests/compaction_integration.rs"

[[test]]
name = "engine_lifecycle_integration"
path = "tests/engine_lifecycle_integration.rs"

[[test]]
name = "graph_query_integration"
path = "tests/graph_query_integration.rs"

[[test]]
name = "identity_no_byte_check"
path = "tests/identity_no_byte_check.rs"

[[test]]
name = "inspect_integration"
path = "tests/inspect_integration.rs"
required-features = ["cli"]

[[test]]
name = "named_graph_api_integration"
path = "tests/named_graph_api_integration.rs"

[[test]]
name = "named_query_api_integration"
path = "tests/named_query_api_integration.rs"

[[test]]
name = "robustness_integration"
path = "tests/robustness_integration.rs"

[[test]]
name = "scrub_integration"
path = "tests/scrub_integration.rs"

[[test]]
name = "secondary_index_integration"
path = "tests/secondary_index_integration.rs"

[[test]]
name = "segment_reopen_integration"
path = "tests/segment_reopen_integration.rs"

[[bench]]
name = "async_flush"
path = "benches/async_flush.rs"
harness = false

[[bench]]
name = "core_ops"
path = "benches/core_ops.rs"
harness = false

[[bench]]
name = "query_ops"
path = "benches/query_ops.rs"
harness = false

[[bench]]
name = "vector_ops"
path = "benches/vector_ops.rs"
harness = false

[dependencies.arc-swap]
version = "1"

[dependencies.crc32fast]
version = "1"

[dependencies.memmap2]
version = "0.9"

[dependencies.rayon]
version = "1"

[dependencies.rmp-serde]
version = "1"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.tempfile]
version = "3"

[profile.release]
lto = true
codegen-units = 1
strip = "symbols"