[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]
rocksdb-stats = []
tracing = ["dep:tracing"]
[dependencies]
smol_str = "0.2"
base64 = "0.21"
smallvec = "1"
rocksdb = "0.24"
bimap = "0.6"
tempfile = "3"
rand = "0.8"
hdrhistogram = "7.5.4"
tracing = { version = "0.1", optional = true }
[dev-dependencies]
[profile.bench]
debug = true