[package]
edition = "2021"
rust-version = "1.88"
name = "macrame-db"
version = "0.7.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 = []
property-tests = []
[lib]
name = "macrame"
path = "src/lib.rs"
[[example]]
name = "archive_window_diag"
path = "examples/archive_window_diag.rs"
required-features = ["metrics"]
[[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 = "chunk_diag"
path = "examples/chunk_diag.rs"
[[example]]
name = "fixture_matrix_diag"
path = "examples/fixture_matrix_diag.rs"
[[example]]
name = "index_coverage_probe"
path = "examples/index_coverage_probe.rs"
[[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 = "traversal_diag"
path = "examples/traversal_diag.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 = "archive_window_tests"
path = "tests/archive_window_tests.rs"
[[test]]
name = "bench_control_tests"
path = "tests/bench_control_tests.rs"
[[test]]
name = "compat_contract_tests"
path = "tests/compat_contract_tests.rs"
[[test]]
name = "concurrency_tests"
path = "tests/concurrency_tests.rs"
[[test]]
name = "diagnostic_conn_tests"
path = "tests/diagnostic_conn_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 = "packaging_tests"
path = "tests/packaging_tests.rs"
[[test]]
name = "replay_snapshot_tests"
path = "tests/replay_snapshot_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 = "storage_boundary_tests"
path = "tests/storage_boundary_tests.rs"
[[test]]
name = "temporal_tests"
path = "tests/temporal_tests.rs"
[[test]]
name = "vector_filter_tests"
path = "tests/vector_filter_tests.rs"
[[test]]
name = "vector_tests"
path = "tests/vector_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"