|
|
|
[package]
|
|
|
|
name = "oxrdfio"
|
|
|
|
version = "0.1.0-alpha.1"
|
|
|
|
authors.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["RDF"]
|
|
|
|
repository = "https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml"
|
|
|
|
homepage.workspace = true
|
|
|
|
documentation = "https://docs.rs/oxrdfio"
|
|
|
|
description = """
|
|
|
|
Parser and serializer for various RDF formats
|
|
|
|
"""
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
async-tokio = ["dep:tokio", "oxrdfxml/async-tokio", "oxttl/async-tokio"]
|
|
|
|
rdf-star = ["oxrdf/rdf-star", "oxttl/rdf-star"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
oxrdf = { version = "0.2.0-alpha.1", path = "../oxrdf" }
|
|
|
|
oxrdfxml = { version = "0.1.0-alpha.1", path = "../oxrdfxml" }
|
|
|
|
oxttl = { version = "0.1.0-alpha.1", path = "../oxttl" }
|
|
|
|
tokio = { version = "1.29", optional = true, features = ["io-util"] }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1.29", features = ["rt", "macros"] }
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|