rocksgraph 0.1.0

A Gremlin-inspired property graph query engine written in Rust, backed by RocksDB
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"
rust-version = "1.80"
name = "rocksgraph"
version = "0.1.0"
authors = ["Austin Han <austinhan1024@gmail.com>"]
build = false
exclude = [
    "/docs",
    "/.claude",
    "/.vscode",
    "/.github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Gremlin-inspired property graph query engine written in Rust, backed by RocksDB"
documentation = "https://docs.rs/rocksgraph"
readme = "README.md"
keywords = [
    "graph",
    "gremlin",
    "rocksdb",
    "database",
]
categories = ["database-implementations"]
license = "GPL-2.0-or-later"
repository = "https://github.com/ThouAreAwesome/RocksGraph"

[features]
rocksdb-stats = []
tracing = ["dep:tracing"]

[lib]
name = "rocksgraph"
path = "src/lib.rs"

[[bin]]
name = "bench_integrity"
path = "src/bin/bench_integrity.rs"

[[bin]]
name = "bench_read"
path = "src/bin/bench_read.rs"

[[bin]]
name = "bench_write"
path = "src/bin/bench_write.rs"

[[bin]]
name = "rocksgraph"
path = "src/main.rs"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "composition_and_deletion"
path = "examples/composition_and_deletion.rs"

[[example]]
name = "explain_plan"
path = "examples/explain_plan.rs"

[[example]]
name = "schema_and_edge_modes"
path = "examples/schema_and_edge_modes.rs"

[[example]]
name = "traversal_and_filtering"
path = "examples/traversal_and_filtering.rs"

[dependencies.base64]
version = "0.21"

[dependencies.bimap]
version = "0.6"

[dependencies.hdrhistogram]
version = "7.5.4"

[dependencies.rand]
version = "0.8"

[dependencies.rocksdb]
version = "0.24"

[dependencies.smallvec]
version = "1"

[dependencies.smol_str]
version = "0.2"

[dependencies.tempfile]
version = "3"

[dependencies.tracing]
version = "0.1"
optional = true

[dev-dependencies]

[profile.bench]
debug = 2