code2graph 0.0.0-beta.6

Purpose-neutral code-graph extraction: source files → symbols, references, and cross-file edges. Tree-sitter based, no storage opinion.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: Apache-2.0
//! Neutral per-ABI FFI registry: one self-contained spec file per `FfiAbi`.
//! Both the producer extractors (marker→ABI classification) and the bridge
//! resolver (consumer matrix) read from here, so adding an ABI is one spec file
//! plus one `SPECS` entry — never a growing match or an inline extractor block.
mod c;
mod jni;
mod node_api;
mod python;
mod spec;
mod wasm;

#[cfg(test)]
mod sync_tests;

pub(crate) use spec::{c_name_export_abi, consumers, rust_exports};