ontologos-core
In-memory OWL ontology model: interned IRIs, typed axioms, JSON v3 snapshots (v2 readable), and Reasoner builder.
Docs: ontologos.readthedocs.io · docs.rs
Install
[]
= "1.0.0"
Quick start
use Ontology;
let ontology = builder
.class?
.class?
.subclass_of?
.build?;
For file loading use ontologos-parser. For classification use ontologos-facade or profile crates — not Reasoner::classify() (deprecated).
Example