[package]
edition = "2024"
rust-version = "1.85"
name = "prikk"
version = "0.26.0"
authors = ["nabbisen"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A standalone distributed version control system built around block-oriented patch theory."
homepage = "https://nabbisen.github.io/prikk/"
readme = "README.md"
keywords = ["vcs"]
categories = ["algorithms"]
license = "Apache-2.0"
repository = "https://github.com/nabbisen/prikk"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/{ version }/prikk-{ target }.tar.gz"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
[[bin]]
name = "prikk"
path = "src/main.rs"
[[test]]
name = "dc56_commit_index"
path = "tests/dc56_commit_index.rs"
[[test]]
name = "dc57_active_patch_thresholds"
path = "tests/dc57_active_patch_thresholds.rs"
[[test]]
name = "dc59_commit_benchmark"
path = "tests/dc59_commit_benchmark.rs"
[[test]]
name = "dc60_branch_management"
path = "tests/dc60_branch_management.rs"
[[test]]
name = "dc61_branch_closure"
path = "tests/dc61_branch_closure.rs"
[[test]]
name = "dc63_tag_surface"
path = "tests/dc63_tag_surface.rs"
[[test]]
name = "dc64_baseline_cache"
path = "tests/dc64_baseline_cache.rs"
[[test]]
name = "dc65_text_edit_baseline"
path = "tests/dc65_text_edit_baseline.rs"
[[test]]
name = "dc66_multi_commit_queuing"
path = "tests/dc66_multi_commit_queuing.rs"
[[test]]
name = "dc67_ordinary_use_conformance"
path = "tests/dc67_ordinary_use_conformance.rs"
[[test]]
name = "dc72_path_safety_collisions"
path = "tests/dc72_path_safety_collisions.rs"
[[test]]
name = "dc73_node_model_apply"
path = "tests/dc73_node_model_apply.rs"
[[test]]
name = "dc74_merge_execution"
path = "tests/dc74_merge_execution.rs"
[[test]]
name = "dc75_merge_block_lineage"
path = "tests/dc75_merge_block_lineage.rs"
[[test]]
name = "dc78_bundle_exchange"
path = "tests/dc78_bundle_exchange.rs"
[[test]]
name = "dc78_seal_provenance"
path = "tests/dc78_seal_provenance.rs"
[[test]]
name = "dc78_trust_adoption"
path = "tests/dc78_trust_adoption.rs"
[[test]]
name = "dc85_merge_from_received_ref"
path = "tests/dc85_merge_from_received_ref.rs"
[[test]]
name = "dc92_lineage_replay_benchmark"
path = "tests/dc92_lineage_replay_benchmark.rs"
[[test]]
name = "format_transition"
path = "tests/format_transition.rs"
[[test]]
name = "genesis_end_to_end"
path = "tests/genesis_end_to_end.rs"
[[test]]
name = "helper_uniqueness"
path = "tests/helper_uniqueness.rs"
[[test]]
name = "merge_evidence"
path = "tests/merge_evidence.rs"
[[test]]
name = "merge_plan"
path = "tests/merge_plan.rs"
[[test]]
name = "rfc102_stage6_compact"
path = "tests/rfc102_stage6_compact.rs"
[[test]]
name = "rfc102_stage6_unlock"
path = "tests/rfc102_stage6_unlock.rs"
[[test]]
name = "rfc111_seal_drift_guard"
path = "tests/rfc111_seal_drift_guard.rs"
[[test]]
name = "rfc116_stage7_cross_platform_artifact"
path = "tests/rfc116_stage7_cross_platform_artifact.rs"
[[test]]
name = "rfc116_sync_cli"
path = "tests/rfc116_sync_cli.rs"
[[test]]
name = "rfc117_stage3_tag_travel_cli"
path = "tests/rfc117_stage3_tag_travel_cli.rs"
[[test]]
name = "rfc118_stage5_verify_json"
path = "tests/rfc118_stage5_verify_json.rs"
[[test]]
name = "seal_recovery"
path = "tests/seal_recovery.rs"
[[test]]
name = "seal_trust_gate"
path = "tests/seal_trust_gate.rs"
[dependencies.prikk-error]
version = "0.26.0"
[dependencies.prikk-hash]
version = "0.26.0"
[dependencies.prikk-object]
version = "0.26.0"
[dependencies.prikk-store]
version = "0.26.0"
[dev-dependencies.prikk-store]
version = "0.26.0"
features = ["test-support"]
[lints.clippy]
expect_used = "warn"
indexing_slicing = "warn"
undocumented_unsafe_blocks = "forbid"
unwrap_used = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"