[package]
edition = "2021"
rust-version = "1.95"
name = "spacedb-store"
version = "0.6.0"
authors = ["Mata Network"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SpaceDB Layer 0 — the per-node storage primitive: an engine-agnostic, transactional, order-preserving typed key/value store (redb + in-memory engines) that everything in SpaceDB rests on. Phase 1 SpaceDB Mission, M1 / Slice 1. See 'docs/plans/(working) phase 1 spacedb mission.md'."
homepage = "https://www.mata.network/"
documentation = "https://docs.rs/spacedb-store"
readme = "README.md"
keywords = [
"database",
"key-value",
"storage",
"local-first",
"redb",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Remade-With-Rust/spacedb"
[lib]
name = "spacedb_store"
crate-type = ["rlib"]
path = "src/lib.rs"
[[bin]]
name = "spacedb_crash_helper"
path = "src/bin/crash_helper.rs"
[[example]]
name = "seal_ab"
path = "examples/seal_ab.rs"
[[test]]
name = "compressed"
path = "tests/compressed.rs"
[[test]]
name = "crash"
path = "tests/crash.rs"
[[test]]
name = "encrypted"
path = "tests/encrypted.rs"
[[test]]
name = "engines"
path = "tests/engines.rs"
[[test]]
name = "meta"
path = "tests/meta.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.blake3]
version = "1"
[dependencies.postcard]
version = "1"
features = ["use-std"]
[dependencies.rand]
version = "0.8"
[dependencies.rusty_zstd]
version = "0.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "1"
[dependencies.zeroize]
version = "1.7"
features = ["derive"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.redb]
version = "2"
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]