codegraph 0.2.0

A fast, reliable, and flexible graph database optimized for storing and querying code relationships
Documentation
[package]
name = "codegraph"
version = "0.2.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
description = "A fast, reliable, and flexible graph database optimized for storing and querying code relationships"
readme = "../../README.md"
keywords = ["graph", "code-analysis", "database", "ast", "relationships"]
categories = ["database-implementations", "data-structures", "development-tools"]

[dependencies]
# Storage backend
rocksdb.workspace = true

# Serialization
serde.workspace = true
serde_json.workspace = true

# Error handling
thiserror.workspace = true

# Logging
log.workspace = true

# Utilities
uuid.workspace = true

[dev-dependencies]
# Testing utilities
criterion = "0.5"
tempfile = "3.0"

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

[[bench]]
name = "graph_operations"
harness = false