[package]
edition = "2024"
name = "athene-owlapi"
version = "0.0.1"
authors = ["Simon Johnston <johnstonskj@gmail.com"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
This package provides a Rust API for OWL that adheres as closely as possible to
the OWL 2 Web Ontology Language Structural Specification.
"""
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/johnstonskj/Athene"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
rustdoc-args = [
"--html-in-header",
"doc-src/header.html",
]
[features]
default = ["std"]
std = []
[lib]
name = "athene_owlapi"
path = "src/lib.rs"
[[test]]
name = "test_ontologies"
path = "tests/test_ontologies.rs"
[[test]]
name = "test_reader"
path = "tests/test_reader.rs"
[dependencies.ariadne]
version = "0.6"
features = ["auto-color"]
[dependencies.document-features]
version = "0.2"
[dependencies.language-tags]
version = "0.3"
[dependencies.num-traits]
version = "0.2"
[dependencies.rdftk_iri]
version = "0.4"
[dependencies.strum]
version = "0.28"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
default-features = false
[lints.clippy]
all = "warn"
[lints.rust]
absolute_paths_not_starting_with_crate = "warn"
anonymous_parameters = "deny"
bare_trait_objects = "deny"
deref_nullptr = "deny"
drop_bounds = "deny"
dyn_drop = "deny"
elided_lifetimes_in_paths = "warn"
ellipsis_inclusive_range_patterns = "deny"
explicit_outlives_requirements = "warn"
exported_private_dependencies = "deny"
macro_use_extern_crate = "warn"
missing_debug_implementations = "warn"
noop_method_call = "warn"
rust_2021_prelude_collisions = "warn"
semicolon_in_expressions_from_macros = "warn"
single_use_lifetimes = "warn"
trivial_casts = "warn"
trivial_numeric_casts = "warn"
unexpected_cfgs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unsafe_op_in_unsafe_fn = "forbid"
[lints.rust.future_incompatible]
level = "warn"
priority = -1
[lints.rust.nonstandard_style]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[lints.rust.rust_2021_compatibility]
level = "warn"
priority = -1
[lints.rust.unused]
level = "warn"
priority = -1
[lints.rustdoc]
all = "warn"
broken_intra_doc_links = "warn"
missing_crate_level_docs = "warn"