[package]
edition = "2021"
rust-version = "1.88"
name = "macrame-db"
version = "0.15.0"
authors = ["opticsWolf"]
build = false
exclude = [
"pyproject.toml",
"python/",
"tests_py/",
"/.venv/",
"*.whl",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Bitemporal Graph Ledger on libSQL · Embedded knowledge database"
readme = "README.md"
keywords = [
"bitemporal",
"graph",
"libsql",
"ledger",
"database",
]
categories = [
"database",
"database-implementations",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/opticsWolf/Macrame"
[features]
default = ["metrics"]
fuzzing = []
metrics = []
property-tests = []
[lib]
name = "macrame"
path = "src/lib.rs"
[[example]]
name = "analyze_hold"
path = "examples/analyze_hold.rs"
required-features = ["metrics"]
[[example]]
name = "archive_window_diag"
path = "examples/archive_window_diag.rs"
required-features = ["metrics"]
[[example]]
name = "bitemporal_index_probe"
path = "examples/bitemporal_index_probe.rs"
[[example]]
name = "branch_cutoff_probe"
path = "examples/branch_cutoff_probe.rs"
[[example]]
name = "branch_identity_probe"
path = "examples/branch_identity_probe.rs"
[[example]]
name = "branch_index_rung_probe"
path = "examples/branch_index_rung_probe.rs"
[[example]]
name = "branch_traversal_probe"
path = "examples/branch_traversal_probe.rs"
[[example]]
name = "budget_density_diag"
path = "examples/budget_density_diag.rs"
[[example]]
name = "bulk_atomic_diag"
path = "examples/bulk_atomic_diag.rs"
required-features = ["metrics"]
[[example]]
name = "bulk_optimize"
path = "examples/bulk_optimize.rs"
required-features = ["metrics"]
[[example]]
name = "chunk_diag"
path = "examples/chunk_diag.rs"
[[example]]
name = "chunk_matrix"
path = "examples/chunk_matrix.rs"
[[example]]
name = "concepts_rebuild_probe"
path = "examples/concepts_rebuild_probe.rs"
[[example]]
name = "fairness_probe"
path = "examples/fairness_probe.rs"
required-features = ["metrics"]
[[example]]
name = "fixture_matrix_diag"
path = "examples/fixture_matrix_diag.rs"
[[example]]
name = "index_coverage_probe"
path = "examples/index_coverage_probe.rs"
[[example]]
name = "links_key_reach_probe"
path = "examples/links_key_reach_probe.rs"
[[example]]
name = "louvain_aggregation_probe"
path = "examples/louvain_aggregation_probe.rs"
[[example]]
name = "opcode_probe"
path = "examples/opcode_probe.rs"
[[example]]
name = "optimize_hold"
path = "examples/optimize_hold.rs"
required-features = ["metrics"]
[[example]]
name = "pipeline_diag"
path = "examples/pipeline_diag.rs"
required-features = ["metrics"]
[[example]]
name = "r15_soak"
path = "examples/r15_soak.rs"
[[example]]
name = "readonly_open_probe"
path = "examples/readonly_open_probe.rs"
[[example]]
name = "repair_diag"
path = "examples/repair_diag.rs"
[[example]]
name = "shadow_probe"
path = "examples/shadow_probe.rs"
[[example]]
name = "shadow_rebuild_diag"
path = "examples/shadow_rebuild_diag.rs"
required-features = ["metrics"]
[[example]]
name = "subgraph_interior"
path = "examples/subgraph_interior.rs"
[[example]]
name = "tgt_index_cost_probe"
path = "examples/tgt_index_cost_probe.rs"
[[example]]
name = "traversal_diag"
path = "examples/traversal_diag.rs"
[[example]]
name = "v8_migration_scale_probe"
path = "examples/v8_migration_scale_probe.rs"
[[example]]
name = "vacuum_rowid_probe"
path = "examples/vacuum_rowid_probe.rs"
[[example]]
name = "weight_check_probe"
path = "examples/weight_check_probe.rs"
[[test]]
name = "actor_metrics_tests"
path = "tests/actor_metrics_tests.rs"
required-features = ["metrics"]
[[test]]
name = "analyze_tests"
path = "tests/analyze_tests.rs"
[[test]]
name = "archive_lineage_tests"
path = "tests/archive_lineage_tests.rs"
[[test]]
name = "archive_window_tests"
path = "tests/archive_window_tests.rs"
[[test]]
name = "bench_control_tests"
path = "tests/bench_control_tests.rs"
[[test]]
name = "binding_parity_tests"
path = "tests/binding_parity_tests.rs"
[[test]]
name = "bitemporal_plan_tests"
path = "tests/bitemporal_plan_tests.rs"
[[test]]
name = "branch_archive_tests"
path = "tests/branch_archive_tests.rs"
[[test]]
name = "branch_diff_tests"
path = "tests/branch_diff_tests.rs"
[[test]]
name = "branch_lifecycle_tests"
path = "tests/branch_lifecycle_tests.rs"
[[test]]
name = "branch_read_tests"
path = "tests/branch_read_tests.rs"
[[test]]
name = "branch_storage_tests"
path = "tests/branch_storage_tests.rs"
[[test]]
name = "branch_view_tests"
path = "tests/branch_view_tests.rs"
[[test]]
name = "branch_write_tests"
path = "tests/branch_write_tests.rs"
[[test]]
name = "cache_size_tests"
path = "tests/cache_size_tests.rs"
[[test]]
name = "checkpoint_tests"
path = "tests/checkpoint_tests.rs"
[[test]]
name = "compat_contract_tests"
path = "tests/compat_contract_tests.rs"
[[test]]
name = "concept_archive_tests"
path = "tests/concept_archive_tests.rs"
[[test]]
name = "concurrency_tests"
path = "tests/concurrency_tests.rs"
[[test]]
name = "cross_branch_tests"
path = "tests/cross_branch_tests.rs"
[[test]]
name = "diagnostic_conn_tests"
path = "tests/diagnostic_conn_tests.rs"
[[test]]
name = "doc_currency_tests"
path = "tests/doc_currency_tests.rs"
[[test]]
name = "doc_link_tests"
path = "tests/doc_link_tests.rs"
[[test]]
name = "doc_sync_tests"
path = "tests/doc_sync_tests.rs"
[[test]]
name = "doctrine_property_tests"
path = "tests/doctrine_property_tests.rs"
required-features = ["property-tests"]
[[test]]
name = "doctrine_static_tests"
path = "tests/doctrine_static_tests.rs"
[[test]]
name = "fixture_matrix_tests"
path = "tests/fixture_matrix_tests.rs"
[[test]]
name = "graph_property_tests"
path = "tests/graph_property_tests.rs"
required-features = ["property-tests"]
[[test]]
name = "graph_tests"
path = "tests/graph_tests.rs"
[[test]]
name = "hybrid_tests"
path = "tests/hybrid_tests.rs"
[[test]]
name = "index_plan_tests"
path = "tests/index_plan_tests.rs"
[[test]]
name = "integrity_property_tests"
path = "tests/integrity_property_tests.rs"
required-features = ["property-tests"]
[[test]]
name = "integrity_tests"
path = "tests/integrity_tests.rs"
[[test]]
name = "migration_tests"
path = "tests/migration_tests.rs"
[[test]]
name = "operation_count_tests"
path = "tests/operation_count_tests.rs"
[[test]]
name = "packaging_tests"
path = "tests/packaging_tests.rs"
[[test]]
name = "perf_claim_tests"
path = "tests/perf_claim_tests.rs"
[[test]]
name = "public_path_tests"
path = "tests/public_path_tests.rs"
[[test]]
name = "replay_snapshot_tests"
path = "tests/replay_snapshot_tests.rs"
[[test]]
name = "search_visibility_tests"
path = "tests/search_visibility_tests.rs"
[[test]]
name = "shadow_rebuild_tests"
path = "tests/shadow_rebuild_tests.rs"
[[test]]
name = "snapshot_chain_tests"
path = "tests/snapshot_chain_tests.rs"
[[test]]
name = "stability_contract_tests"
path = "tests/stability_contract_tests.rs"
[[test]]
name = "statistics_effect_tests"
path = "tests/statistics_effect_tests.rs"
[[test]]
name = "storage_boundary_tests"
path = "tests/storage_boundary_tests.rs"
[[test]]
name = "temporal_tests"
path = "tests/temporal_tests.rs"
[[test]]
name = "tuning_tests"
path = "tests/tuning_tests.rs"
[[test]]
name = "vector_filter_tests"
path = "tests/vector_filter_tests.rs"
[[test]]
name = "vector_tests"
path = "tests/vector_tests.rs"
[[test]]
name = "wal_policy_tests"
path = "tests/wal_policy_tests.rs"
[[test]]
name = "wave1_regression_tests"
path = "tests/wave1_regression_tests.rs"
[[test]]
name = "write_path_tests"
path = "tests/write_path_tests.rs"
[[bench]]
name = "budgets"
path = "benches/budgets.rs"
harness = false
[dependencies.bincode]
version = "1.3"
[dependencies.libsql]
version = "0.9.30"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.ulid]
version = "1.1"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.criterion]
version = "0.5"
features = [
"async_tokio",
"cargo_bench_support",
]
default-features = false
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.tokio-test]
version = "0.4"