[package]
edition = "2024"
name = "nusy-arrow-git"
version = "0.15.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Graph-native git on Arrow RecordBatches — commit, checkout, merge, diff, blame, rebase, cherry-pick, revert"
homepage = "https://nusy.dev"
readme = "README.md"
keywords = [
"git",
"arrow",
"knowledge-graph",
"version-control",
"neurosymbolic",
]
categories = [
"data-structures",
"development-tools",
]
license = "MIT"
repository = "https://github.com/hankh95/nusy-product-team"
resolver = "2"
[lib]
name = "nusy_arrow_git"
path = "src/lib.rs"
[[example]]
name = "basic_workflow"
path = "examples/basic_workflow.rs"
[[example]]
name = "branch_merge"
path = "examples/branch_merge.rs"
[[example]]
name = "crash_recovery"
path = "examples/crash_recovery.rs"
[[test]]
name = "cross_crate_test"
path = "tests/cross_crate_test.rs"
[[test]]
name = "delta_spike"
path = "tests/delta_spike.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "lifecycle_test"
path = "tests/lifecycle_test.rs"
[[test]]
name = "parquet_interop"
path = "tests/parquet_interop.rs"
[[test]]
name = "performance_gates"
path = "tests/performance_gates.rs"
[[test]]
name = "stress_test"
path = "tests/stress_test.rs"
[[bench]]
name = "performance_gates"
path = "benches/performance_gates.rs"
harness = false
[dependencies.arrow]
version = "57"
features = ["prettyprint"]
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.nusy-arrow-core]
version = "0.15.2"
[dependencies.parquet]
version = "57"
features = ["arrow"]
[dependencies.thiserror]
version = "2"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.deltalake]
version = "0.31"
features = ["datafusion"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.url]
version = "2"