[package]
edition = "2024"
rust-version = "1.85"
name = "infinite-db"
version = "0.4.0"
authors = ["Jonesey's Innovation"]
build = false
exclude = [
"target/**",
"target2/**",
"plans/**",
"proptest-regressions/**",
"INFINITEDB_PLAN.md",
"*.orig",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A spatial-graph database using n-dimensional curves and hyperedges for engineering logic."
documentation = "https://docs.rs/infinite-db/0.3.0"
readme = "README.md"
keywords = [
"database",
"spatial",
"hypergraph",
"engineering",
"peano",
]
categories = [
"database-implementations",
"science",
]
license = "MIT"
repository = "https://github.com/joneseysinno/infinitedb.git"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["embedded"]
embedded = []
server = [
"embedded",
"dep:tokio",
]
sync = ["server"]
[lib]
name = "infinite_db"
path = "src/lib.rs"
[[bin]]
name = "infinite-db-test"
path = "src/bin/infinite-db-test.rs"
required-features = ["sync"]
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
required-features = ["embedded"]
[[test]]
name = "concurrent_db"
path = "tests/concurrent_db.rs"
required-features = ["embedded"]
[[test]]
name = "concurrent_db_phase_c"
path = "tests/concurrent_db_phase_c.rs"
required-features = ["embedded"]
[[test]]
name = "crcw_correctness"
path = "tests/crcw_correctness.rs"
required-features = ["embedded"]
[[test]]
name = "derivation_phase6"
path = "tests/derivation_phase6.rs"
[[test]]
name = "durability"
path = "tests/durability.rs"
required-features = ["embedded"]
[[test]]
name = "fast_path_phase7"
path = "tests/fast_path_phase7.rs"
[[test]]
name = "frame_session_phase5"
path = "tests/frame_session_phase5.rs"
[[test]]
name = "hardening_epoch_reads"
path = "tests/hardening_epoch_reads.rs"
[[test]]
name = "hardening_legacy_embed"
path = "tests/hardening_legacy_embed.rs"
[[test]]
name = "hardening_retirement"
path = "tests/hardening_retirement.rs"
[[test]]
name = "hardening_wave_e"
path = "tests/hardening_wave_e.rs"
[[test]]
name = "hlc_revision"
path = "tests/hlc_revision.rs"
[[test]]
name = "hypergraph_m1"
path = "tests/hypergraph_m1.rs"
required-features = ["embedded"]
[[test]]
name = "hypergraph_m2"
path = "tests/hypergraph_m2.rs"
[[test]]
name = "hypergraph_m3"
path = "tests/hypergraph_m3.rs"
[[test]]
name = "hypergraph_m4"
path = "tests/hypergraph_m4.rs"
required-features = ["embedded"]
[[test]]
name = "hypergraph_m5"
path = "tests/hypergraph_m5.rs"
required-features = ["embedded"]
[[test]]
name = "hypergraph_m6"
path = "tests/hypergraph_m6.rs"
required-features = ["embedded"]
[[test]]
name = "hypergraph_m7"
path = "tests/hypergraph_m7.rs"
required-features = ["embedded"]
[[test]]
name = "intent_checkpoint"
path = "tests/intent_checkpoint.rs"
[[test]]
name = "server_phase_d"
path = "tests/server_phase_d.rs"
required-features = ["sync"]
[[test]]
name = "session_stamping"
path = "tests/session_stamping.rs"
[[test]]
name = "session_wal"
path = "tests/session_wal.rs"
[dependencies.arc-swap]
version = "1"
[dependencies.bincode]
version = "2"
[dependencies.blake3]
version = "1"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.dashmap]
version = "6"
[dependencies.getrandom]
version = "0.3"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tokio]
version = "1"
features = ["full"]
optional = true
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = ["full"]