graphyn-core 0.2.0

Language-agnostic code intelligence graph engine — the heart of Graphyn
Documentation
#[cfg(feature = "ast")]
pub mod ast;
pub mod error;
pub mod graph;
pub mod incremental;
pub mod index;
pub mod ir;
pub mod query;
pub mod resolver;
pub mod scan;
pub mod symbol_id;

pub use error::GraphynError;
pub use graph::{GraphynGraph, RelationshipMeta};
pub use ir::*;
pub use symbol_id::{
    external_package_id, is_placeholder, make_symbol_id, module_symbol, module_symbol_id,
    unresolved_import_id, unresolved_local_type_id, IMPORT_ALL,
};