graphyn-core 0.2.0

Language-agnostic code intelligence graph engine — the heart of Graphyn
Documentation
[package]
name = "graphyn-core"
description = "Language-agnostic code intelligence graph engine — the heart of Graphyn"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
categories.workspace = true
keywords.workspace = true

[features]
default = ["ast"]
# Shared tree-sitter traversal helpers used by every language adapter.
# Graph-only consumers (graphyn-store) turn this off so they do not link a parser.
ast = ["dep:tree-sitter"]

[dependencies]
petgraph = "0.6"
dashmap = "5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
rayon = "1"
walkdir = "2"
tree-sitter = { version = "0.22", optional = true }

[dev-dependencies]
tree-sitter-rust = "0.21"