codegraph 0.2.0

A fast, reliable, and flexible graph database optimized for storing and querying code relationships
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 = "codegraph"
version = "0.2.0"
authors = ["anvanster"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
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",
]
license = "Apache-2.0"
repository = "https://github.com/anvanster/codegraph"

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

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

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

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

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

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

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

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

[dependencies.log]
version = "0.4"

[dependencies.rocksdb]
version = "0.22"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.uuid]
version = "1.0"
features = [
    "v4",
    "serde",
]

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

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