# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "rdftk_core"
version = "0.5.6"
authors = ["Simon Johnston <johnstonskj@gmail.com>"]
build = false
publish = true
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"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]

[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 = "prefix_mappings"
path = "tests/prefix_mappings.rs"

[[test]]
name = "qnames"
path = "tests/qnames.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.bimap]
version = "0.6"

[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"

[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 = []