[package]
edition = "2024"
rust-version = "1.87"
name = "oxiland"
version = "0.3.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 = "Safe Redland-shaped RDF models, SPARQL query/update/results, and stream-oriented RDF I/O on Oxigraph"
homepage = "https://github.com/eddiethedean/oxiland"
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 = []
[features]
default = []
[lib]
name = "oxiland"
path = "src/lib.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 = "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 = "update"
path = "examples/update.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "io"
path = "tests/io.rs"
[[test]]
name = "model"
path = "tests/model.rs"
[[test]]
name = "query"
path = "tests/query.rs"
[dependencies.fjall]
version = "2.11"
[dependencies.oxigraph]
version = "=0.5.9"
default-features = false
[dependencies.spargebra]
version = "=0.4.6"
features = [
"sep-0002",
"sep-0006",
]
default-features = false
[dependencies.thiserror]
version = "2"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"