[package]
edition = "2021"
rust-version = "1.87"
name = "rete-core"
version = "0.3.2"
build = false
include = [
"src/**",
"tests/**",
"examples/**",
"Cargo.toml",
"README.md",
"LICENSE",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core format types for the Rete cloud-native RDF graph file."
homepage = "https://caviri.github.io/rete/"
documentation = "https://docs.rs/rete-core"
readme = "README.md"
keywords = [
"rdf",
"sparql",
"graph",
"database",
"range-queries",
]
categories = [
"database",
"data-structures",
"web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/caviri/rete"
[package.metadata.docs.rs]
all-features = true
[features]
compression = ["dep:zstd"]
default = ["compression"]
parallel = ["dep:rayon"]
wasm-js = ["getrandom/js"]
[lib]
name = "rete_core"
path = "src/lib.rs"
[[example]]
name = "coherence_bench"
path = "examples/coherence_bench.rs"
[[example]]
name = "parallel_bench"
path = "examples/parallel_bench.rs"
required-features = ["parallel"]
[[example]]
name = "qbench"
path = "examples/qbench.rs"
[[test]]
name = "community_eval"
path = "tests/community_eval.rs"
[[test]]
name = "compatibility_v1"
path = "tests/compatibility_v1.rs"
[[test]]
name = "properties"
path = "tests/properties.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[[test]]
name = "ranged"
path = "tests/ranged.rs"
[[test]]
name = "robustness"
path = "tests/robustness.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[[test]]
name = "service_federation"
path = "tests/service_federation.rs"
[[test]]
name = "shacl_core"
path = "tests/shacl_core.rs"
[[test]]
name = "sparql_integration"
path = "tests/sparql_integration.rs"
[[test]]
name = "sparql_nondeterministic"
path = "tests/sparql_nondeterministic.rs"
[dependencies.blake3]
version = "1"
[dependencies.getrandom]
version = "0.2"
[dependencies.md-5]
version = "0.10"
[dependencies.oxrdf]
version = "0.2"
features = ["rdf-star"]
[dependencies.oxrdfxml]
version = "0.1"
[dependencies.oxttl]
version = "0.1"
features = ["rdf-star"]
[dependencies.rayon]
version = "1"
optional = true
[dependencies.regex-lite]
version = "0.1"
[dependencies.ruzstd]
version = "0.7"
[dependencies.serde_json]
version = "1"
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.spargebra]
version = "0.3"
features = ["rdf-star"]
[dependencies.thiserror]
version = "2"
[dependencies.zstd]
version = "0.13"
optional = true
[dev-dependencies.proptest]
version = "1"