[package]
edition = "2021"
name = "rdftk_core"
version = "0.5.7"
authors = ["Simon Johnston <johnstonskj@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This crate provides the core RDF data model; concrete implementations for Statements and Literals, along with a Resource type that provides a builder-like experience for models."
documentation = "https://docs.rs/rdftk_core/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/johnstonskj/rust-rdftk.git"
resolver = "3"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[features]
binary_types = ["base64"]
chrono_types = ["chrono"]
decimal_types = ["rust_decimal"]
default = [
"binary_types",
"chrono_types",
"decimal_types",
"n3_formulae",
"rdf_star",
]
n3_formulae = []
rdf_star = []
[lib]
name = "rdftk_core"
path = "src/lib.rs"
[[test]]
name = "data_sets"
path = "tests/data_sets.rs"
[[test]]
name = "graphs"
path = "tests/graphs.rs"
[[test]]
name = "literals"
path = "tests/literals.rs"
[[test]]
name = "resources"
path = "tests/resources.rs"
[[test]]
name = "skolemize"
path = "tests/skolemize.rs"
[[test]]
name = "statements"
path = "tests/statements.rs"
[dependencies.base64]
version = "0.22"
optional = true
[dependencies.chrono]
version = "0.4"
optional = true
[dependencies.language-tags]
version = "0.3.2"
[dependencies.lazy_static]
version = "1.5"
[dependencies.rdftk_iri]
version = "0.2.5"
[dependencies.rdftk_names]
version = "0.2.5"
[dependencies.rust_decimal]
version = "1.36"
optional = true
[dependencies.unique_id]
version = "0.1"
[dependencies.uuid]
version = "1.11"
features = ["v4"]
[dev-dependencies.parameterized]
version = "2.0.0"