[package]
edition = "2021"
name = "triblespace"
version = "0.13.1"
authors = [
"Jan Bramkamp <crest@rlwinm.de>",
"⚫️ <jp@bultmann.eu>",
"Vanja Sophie Cangalovic <vanja@bultmann.eu>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Triblespace: A lightweight knowledge base for rust."
homepage = "https://trible.space"
documentation = "https://docs.rs/triblespace"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/triblespace/triblespace-rs"
[package.metadata.kani.flags]
default-unwind = "1"
[features]
default = [
"triblespace-core/proptest",
"wasm",
]
kani = ["triblespace-core/kani"]
proptest = ["triblespace-core/proptest"]
wasm = ["triblespace-core/wasm"]
[lib]
name = "triblespace"
path = "src/lib.rs"
[[example]]
name = "custom_schema"
path = "examples/custom_schema.rs"
[[example]]
name = "doc_comment_test"
path = "examples/doc_comment_test.rs"
[[example]]
name = "insert"
path = "examples/insert.rs"
[[example]]
name = "path"
path = "examples/path.rs"
[[example]]
name = "pattern_changes"
path = "examples/pattern_changes.rs"
[[example]]
name = "query"
path = "examples/query.rs"
[[example]]
name = "repo"
path = "examples/repo.rs"
[[example]]
name = "workspace"
path = "examples/workspace.rs"
[[test]]
name = "blob_gc"
path = "tests/blob_gc.rs"
[[test]]
name = "branch"
path = "tests/branch.rs"
[[test]]
name = "branch_mut"
path = "tests/branch_mut.rs"
[[test]]
name = "branch_store"
path = "tests/branch_store.rs"
[[test]]
name = "entity_optional"
path = "tests/entity_optional.rs"
[[test]]
name = "objectstore_meta_forget"
path = "tests/objectstore_meta_forget.rs"
[[test]]
name = "objectstore_repo"
path = "tests/objectstore_repo.rs"
[[test]]
name = "patch_get"
path = "tests/patch_get.rs"
[[test]]
name = "patch_ordered_iterator"
path = "tests/patch_ordered_iterator.rs"
[[test]]
name = "patch_value_eq"
path = "tests/patch_value_eq.rs"
[[test]]
name = "pattern_changes"
path = "tests/pattern_changes.rs"
[[test]]
name = "pattern_hygiene"
path = "tests/pattern_hygiene.rs"
[[test]]
name = "pattern_local_vars"
path = "tests/pattern_local_vars.rs"
[[test]]
name = "pile_empty_blob"
path = "tests/pile_empty_blob.rs"
[[test]]
name = "pile_iter_validation"
path = "tests/pile_iter_validation.rs"
[[test]]
name = "pile_metadata"
path = "tests/pile_metadata.rs"
[[test]]
name = "pile_refresh_truncate"
path = "tests/pile_refresh_truncate.rs"
[[test]]
name = "pile_sim"
path = "tests/pile_sim.rs"
[[test]]
name = "pile_too_large"
path = "tests/pile_too_large.rs"
[[test]]
name = "push_merge"
path = "tests/push_merge.rs"
[[test]]
name = "regular_path_constraint"
path = "tests/regular_path_constraint.rs"
[[test]]
name = "repository"
path = "tests/repository.rs"
[[test]]
name = "succinctarchive_constraint"
path = "tests/succinctarchive_constraint.rs"
[[test]]
name = "succinctarchive_distinct"
path = "tests/succinctarchive_distinct.rs"
[[test]]
name = "succinctarchive_empty"
path = "tests/succinctarchive_empty.rs"
[[test]]
name = "ufoid"
path = "tests/ufoid.rs"
[[test]]
name = "workspace"
path = "tests/workspace.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[[bench]]
name = "dataset_vs_tribles"
path = "benches/dataset_vs_tribles.rs"
harness = false
[[bench]]
name = "json_export"
path = "benches/json_export.rs"
harness = false
[[bench]]
name = "json_import"
path = "benches/json_import.rs"
harness = false
[[bench]]
name = "json_ld"
path = "benches/json_ld.rs"
harness = false
[[bench]]
name = "number_format"
path = "benches/number_format.rs"
harness = false
[[bench]]
name = "patch"
path = "benches/patch.rs"
harness = false
[[bench]]
name = "query"
path = "benches/query.rs"
harness = false
[dependencies.triblespace-core]
version = "0.13.1"
[dependencies.triblespace-macros]
version = "0.13.1"
[dev-dependencies.anybytes]
version = "0.20.0"
features = [
"bytes",
"zerocopy",
"mmap",
]
[dev-dependencies.blake3]
version = "1.5"
[dev-dependencies.criterion]
version = "0.6.0"
[dev-dependencies.ed25519-dalek]
version = "2.1.0"
features = ["rand_core"]
[dev-dependencies.f256]
version = "0.7.0"
[dev-dependencies.fake]
version = "4.3.0"
[dev-dependencies.im]
version = "15.1.0"
[dev-dependencies.memmap2]
version = "0.9.5"
[dev-dependencies.oxigraph]
version = "0.4.11"
[dev-dependencies.oxrdf]
version = "0.2.4"
[dev-dependencies.proptest]
version = "1.6.0"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rayon]
version = "1.7"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.15.0"
[dev-dependencies.trybuild]
version = "1.0.99"
[dev-dependencies.url]
version = "2.5.0"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(nightly)",
"cfg(kani)",
]
[profile.bench]
opt-level = 3
debug = 2
[profile.release]
debug = 2