rocksgraph 0.1.0

A Gremlin-inspired property graph query engine written in Rust, backed by RocksDB
Documentation
[package]
authors = ["Austin Han <austinhan1024@gmail.com>"]
description = "A Gremlin-inspired property graph query engine written in Rust, backed by RocksDB"
edition = "2021"
license = "GPL-2.0-or-later"
name = "rocksgraph"
version = "0.1.0"
readme = "README.md"
repository = "https://github.com/ThouAreAwesome/RocksGraph"
documentation = "https://docs.rs/rocksgraph"
keywords = ["graph", "gremlin", "rocksdb", "database"]
categories = ["database-implementations"]
rust-version = "1.80"
exclude = ["/docs", "/.claude", "/.vscode", "/.github"]

[features]
# Enable RocksDB statistics collection. Adds ~5-10% overhead on every storage
# operation (atomic counter increments). Use only for profiling/diagnostics.
rocksdb-stats = []
# Enable `tracing`-based instrumentation of the pipeline.  Each step logs
# traversers it emits or filters out.  Opt-in — zero-cost when disabled.
tracing = ["dep:tracing"]

[dependencies]
# Compact inline strings (≤22 bytes stack-allocated)
smol_str = "0.2"
base64 = "0.21"

# Inline vec for Traverser labels: stack-allocates ≤2 label strings with no heap
smallvec = "1"

# RocksDB storage backend
rocksdb = "0.24"

# Bidirectional hash map — used by Schema for label_id ↔ label_string lookup
bimap = "0.6"

tempfile = "3"
rand = "0.8"
hdrhistogram = "7.5.4"
tracing = { version = "0.1", optional = true }

[dev-dependencies]

[profile.bench]
debug = true