ontocore 0.14.0

OntoCore — semantic workspace engine for ontology development
Documentation
//! OntoCore — semantic workspace engine for ontology development.
//!
//! OntoCore indexes ontology workspaces and provides search, diagnostics, refactoring,
//! SQL, SPARQL, reasoning integration, and LSP services.
//!
//! Implementation is provided by the `ontocore-*` crates.

pub mod catalog;
pub mod diagnostics;
pub mod diff;
pub mod docs;
pub mod error;
pub mod obo;
pub mod owl;
pub mod parser;
pub mod query;
pub mod reasoner;
pub mod refactor;
pub mod workspace;

#[cfg(feature = "lsp")]
pub mod lsp;

#[cfg(feature = "plugins")]
pub mod plugin;

pub use error::Error;
pub use ontocore_core::{Diagnostic, Entity, OntoCoreError};
pub use workspace::{Workspace, WorkspaceOptions};