[package]
edition = "2024"
rust-version = "1.88"
name = "ontologos-parser"
version = "1.0.0"
authors = ["Odo Matthews <odosmatthews@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OWL/RDF parsers for OntoLogos"
homepage = "https://github.com/eddiethedean/ontologos"
documentation = "https://ontologos.readthedocs.io/en/latest/"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/eddiethedean/ontologos"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "ontologos_parser"
path = "src/lib.rs"
[[example]]
name = "load_and_profile"
path = "examples/load_and_profile.rs"
[[test]]
name = "abox_mapping"
path = "tests/abox_mapping.rs"
[[test]]
name = "corpus_stress"
path = "tests/corpus_stress.rs"
[[test]]
name = "datatype_manager_waiver"
path = "tests/datatype_manager_waiver.rs"
[[test]]
name = "load_errors"
path = "tests/load_errors.rs"
[[test]]
name = "manifest_integration"
path = "tests/manifest_integration.rs"
[[test]]
name = "mapping_fixtures"
path = "tests/mapping_fixtures.rs"
[[test]]
name = "ofn_axioms_load"
path = "tests/ofn_axioms_load.rs"
[[test]]
name = "pizza_entity_dupes"
path = "tests/pizza_entity_dupes.rs"
[[test]]
name = "regression_bugs"
path = "tests/regression_bugs.rs"
[[test]]
name = "wg_supplements"
path = "tests/wg_supplements.rs"
[[test]]
name = "wine_import_merge"
path = "tests/wine_import_merge.rs"
[[bench]]
name = "load"
path = "benches/load.rs"
harness = false
[dependencies.horned-owl]
version = "1.4"
[dependencies.ontologos-core]
version = "1.0.0"
[dependencies.oxrdfio]
version = "0.2"
[dependencies.thiserror]
version = "2"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.ontologos-profile]
version = "1.0.0"
[target.'cfg(target_os = "macos")'.dependencies.libc]
version = "0.2"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "allow"
priority = -1
[lints.rust]
unsafe_code = "deny"