[package]
edition = "2021"
name = "codegraph-rust"
version = "0.1.3"
authors = ["anvanster"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust parser for CodeGraph - extracts code entities and relationships from Rust source files"
readme = "README.md"
keywords = [
"rust",
"parser",
"code-analysis",
"ast",
]
categories = [
"parser-implementations",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/anvanster/codegraph"
[lib]
name = "codegraph_rust"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[bench]]
name = "parsing"
path = "benches/parsing.rs"
harness = false
[dependencies.codegraph]
version = "0.1.1"
[dependencies.codegraph-parser-api]
version = "0.2.0"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.syn]
version = "2.0"
features = [
"full",
"visit",
"extra-traits",
]
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.0"