ontocore-core 0.10.0

Core types and workspace scanner for OntoCore (ontocore-*)
Documentation
//! Core types, workspace scanning, path sandboxing, and resource limits for OntoCore.
//!
//! Published as [`ontocore-core`](https://crates.io/crates/ontocore-core).
//!
//! # API stability
//!
//! **Pre-1.0:** public types and constants may change between minor releases until
//! [v1.0 stable core](https://github.com/eddiethedean/ontocode/blob/main/docs/design/v1.0_BACKLOG.md)
//! is complete. See [workspace limits](https://github.com/eddiethedean/ontocode/blob/main/docs/workspace-limits.md).

pub mod document_lookup;
pub mod error;
pub mod io;
pub mod limits;
pub mod model;
pub mod path_jail;
pub mod rdf_literals;
pub mod scanner;

pub use document_lookup::{
    document_for_entity, document_for_ontology_id, document_matches_entity,
    document_matches_ontology_id, file_uri_for_path, normalize_iri,
};
pub use error::{OntoCoreError, Result};
pub use io::{read_file_capped, read_to_string_capped};
pub use limits::{
    MAX_ENTITIES, MAX_FILE_BYTES, MAX_OPEN_DOCUMENTS, MAX_QUERY_BYTES, MAX_SCAN_FILES,
    MAX_SCAN_WALK_ENTRIES, MAX_SPARQL_RESULT_ROWS, MAX_SQL_RESULT_ROWS, MAX_TOTAL_TRIPLES,
    MAX_TRIPLES_PER_FILE,
};
pub use model::{
    Annotation, Axiom, Diagnostic, DiagnosticCode, DiagnosticSeverity, Entity, EntityKind, Import,
    Namespace, OntologyDocument, OntologyFormat, ParseStatus, SourceLocation,
    AXIOM_KIND_DISJOINT_CLASS, AXIOM_KIND_DOMAIN, AXIOM_KIND_EQUIVALENT_CLASS,
    AXIOM_KIND_PROPERTY_CHAIN, AXIOM_KIND_RANGE, AXIOM_KIND_SUB_CLASS_OF,
};
pub use path_jail::{
    canonical_workspace_root, discover_git_repo_root, ensure_extract_path_within, file_uri_to_path,
    is_path_within, is_path_within_any, resolve_document_path, resolve_lsp_document_path,
    resolve_lsp_document_path_any, validate_workspace_scope, validate_workspace_scope_any,
    workspace_uri_to_path,
};
pub use rdf_literals::parse_boolean_literal;
pub use scanner::{OntologyFile, WorkspaceScanner};