[package]
edition = "2024"
name = "uni-store"
version = "0.1.2"
authors = ["Dragonscale Industries Inc. <dev@dragonscale.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Storage layer for Uni graph database - Lance datasets, LSM deltas, and WAL"
readme = false
license = "Apache-2.0"
repository = "https://github.com/rustic-ai/uni"
resolver = "2"
[features]
default = []
[lib]
name = "uni_store"
path = "src/lib.rs"
[[test]]
name = "background_compaction_test"
path = "tests/background_compaction_test.rs"
[[test]]
name = "cloud_integration_test"
path = "tests/cloud_integration_test.rs"
[[test]]
name = "crdt_arrow_tests"
path = "tests/crdt_arrow_tests.rs"
[[test]]
name = "crdt_compaction_tests"
path = "tests/crdt_compaction_tests.rs"
[[test]]
name = "crdt_l0_tests"
path = "tests/crdt_l0_tests.rs"
[[test]]
name = "crdt_vc_integration"
path = "tests/crdt_vc_integration.rs"
[[test]]
name = "lancedb_integration_test"
path = "tests/lancedb_integration_test.rs"
[[test]]
name = "overflow_json_tests"
path = "tests/overflow_json_tests.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "s3_compatibility_test"
path = "tests/s3_compatibility_test.rs"
[[test]]
name = "snapshot_manager_test"
path = "tests/snapshot_manager_test.rs"
[[test]]
name = "storage_layer_test"
path = "tests/storage_layer_test.rs"
[[test]]
name = "test_issue_112_transaction_edge_versions"
path = "tests/test_issue_112_transaction_edge_versions.rs"
[[test]]
name = "test_issue_143_oom_guards"
path = "tests/test_issue_143_oom_guards.rs"
[[test]]
name = "test_issue_18_150_poisoned_mutex"
path = "tests/test_issue_18_150_poisoned_mutex.rs"
[[test]]
name = "test_issue_19_tx_memory_limit"
path = "tests/test_issue_19_tx_memory_limit.rs"
[[test]]
name = "test_issue_25_cascade_deletion"
path = "tests/test_issue_25_cascade_deletion.rs"
[[test]]
name = "test_issue_27_chunked_index"
path = "tests/test_issue_27_chunked_index.rs"
[[test]]
name = "test_issue_29_vid_labels_index"
path = "tests/test_issue_29_vid_labels_index.rs"
[[test]]
name = "test_issue_43_uid_index"
path = "tests/test_issue_43_uid_index.rs"
[[test]]
name = "test_issue_4_constraint_check"
path = "tests/test_issue_4_constraint_check.rs"
[[test]]
name = "test_issue_53_edge_properties_after_compaction"
path = "tests/test_issue_53_edge_properties_after_compaction.rs"
[[test]]
name = "test_issue_54_adjacency_compaction_visibility"
path = "tests/test_issue_54_adjacency_compaction_visibility.rs"
[[test]]
name = "test_issue_62_recursive_decoder"
path = "tests/test_issue_62_recursive_decoder.rs"
[[test]]
name = "test_issue_75_batch_frontier"
path = "tests/test_issue_75_batch_frontier.rs"
[[test]]
name = "test_issue_77_ghost_vertex_endpoints"
path = "tests/test_issue_77_ghost_vertex_endpoints.rs"
[[test]]
name = "wal_durability_test"
path = "tests/wal_durability_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.arrow]
version = "56.2.0"
features = ["prettyprint"]
[dependencies.arrow-array]
version = "56.2.0"
[dependencies.arrow-schema]
version = "56.2.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.bytes]
version = "1.6"
[dependencies.chrono]
version = "0.4.43"
[dependencies.dashmap]
version = "6.0"
[dependencies.futures]
version = "0.3"
[dependencies.lance]
version = "1.0.1"
features = [
"aws",
"azure",
"gcp",
]
default-features = false
[dependencies.lance-index]
version = "1.0.1"
[dependencies.lance-linalg]
version = "1.0.1"
[dependencies.lancedb]
version = "0.23.1"
features = [
"aws",
"gcs",
"azure",
]
default-features = false
[dependencies.log]
version = "0.4"
[dependencies.lru]
version = "0.16"
[dependencies.metrics]
version = "0.22"
[dependencies.object_store]
version = "0.11"
features = [
"aws",
"gcp",
"azure",
]
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha3]
version = "0.10.8"
[dependencies.tempfile]
version = "3.10"
[dependencies.tokio]
version = "1"
features = [
"full",
"full",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uni-common]
version = "0.1.2"
[dependencies.uni-crdt]
version = "0.1.2"
[dependencies.uni-xervo]
version = "0.1.1"
default-features = false
[dependencies.url]
version = "2.5"
[dependencies.uuid]
version = "1.8"
features = ["v4"]
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.10"