[package]
edition = "2024"
rust-version = "1.87"
name = "oxiland"
version = "0.13.0"
authors = ["Odo Matthews <odosmatthews@gmail.com>"]
build = false
exclude = [
".github/",
"compatibility/harness/*-result.json",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded RDF datasets, SPARQL, persistence, and streaming I/O for Rust"
homepage = "https://oxiland.readthedocs.io/"
documentation = "https://docs.rs/oxiland"
readme = "README.md"
keywords = [
"rdf",
"sparql",
"redland",
"oxigraph",
"semantic-web",
]
categories = [
"parsing",
"data-structures",
"encoding",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/eddiethedean/oxiland"
[package.metadata.docs.rs]
features = ["storage-fjall"]
[features]
default = ["storage-fjall"]
storage-fjall = ["dep:fjall"]
storage-lmdb = ["dep:heed"]
storage-redb = ["dep:redb"]
storage-rocksdb = ["dep:rocksdb"]
storage-sqlite = ["dep:rusqlite"]
tracing = ["dep:tracing"]
[lib]
name = "oxiland"
path = "src/lib.rs"
[[example]]
name = "bench_0_10"
path = "examples/bench_0_10.rs"
[[example]]
name = "construct"
path = "examples/construct.rs"
[[example]]
name = "contexts"
path = "examples/contexts.rs"
[[example]]
name = "parse_serialize"
path = "examples/parse_serialize.rs"
[[example]]
name = "persistent_transaction"
path = "examples/persistent_transaction.rs"
[[example]]
name = "progressive_load"
path = "examples/progressive_load.rs"
[[example]]
name = "quick_start"
path = "examples/quick_start.rs"
[[example]]
name = "select"
path = "examples/select.rs"
[[example]]
name = "std_replacements"
path = "examples/std_replacements.rs"
[[example]]
name = "update"
path = "examples/update.rs"
[[test]]
name = "accounting"
path = "tests/accounting.rs"
[[test]]
name = "backend_conformance"
path = "tests/backend_conformance.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "features_factories"
path = "tests/features_factories.rs"
[[test]]
name = "io"
path = "tests/io.rs"
[[test]]
name = "model"
path = "tests/model.rs"
[[test]]
name = "model_read_only_memory"
path = "tests/model_read_only_memory.rs"
[[test]]
name = "obligations_0_11"
path = "tests/obligations_0_11.rs"
[[test]]
name = "query"
path = "tests/query.rs"
[[test]]
name = "storage"
path = "tests/storage.rs"
[[test]]
name = "utility"
path = "tests/utility.rs"
[dependencies.fjall]
version = "2.11"
optional = true
[dependencies.heed]
version = "0.21"
optional = true
[dependencies.md-5]
version = "0.10"
[dependencies.oxigraph]
version = "=0.5.9"
default-features = false
[dependencies.redb]
version = "2"
optional = true
[dependencies.rocksdb]
version = "0.22"
optional = true
default-features = true
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
optional = true
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.spargebra]
version = "=0.4.6"
features = [
"sep-0002",
"sep-0006",
]
default-features = false
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
optional = true
[dependencies.unicode-normalization]
version = "0.1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
allow_attributes_without_reason = "deny"
correctness = "deny"
dbg_macro = "deny"
fallible_impl_from = "deny"
needless_pass_by_ref_mut = "deny"
redundant_clone = "deny"
significant_drop_in_scrutinee = "deny"
significant_drop_tightening = "deny"
todo = "deny"
unimplemented = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"
unused_lifetimes = "deny"
[lints.rust.future_incompatible]
level = "deny"
priority = -1
[profile.release]
lto = "fat"
codegen-units = 1