[package]
edition = "2021"
name = "dataspool-rs"
version = "0.3.0"
authors = ["Magnus Trent <magnus@blackfall.dev>"]
build = false
exclude = [
"target/**",
"Cargo.lock",
".git/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Efficient data bundling system with indexed .spool files and SQLite vector database"
documentation = "https://docs.rs/dataspool-rs"
readme = "README.md"
keywords = [
"spool",
"bundling",
"database",
"indexing",
"vectors",
]
categories = [
"database-implementations",
"filesystem",
"compression",
]
license = "MIT"
repository = "https://github.com/Blackfall-Labs/dataspool-rs"
[features]
async = ["tokio"]
default = []
[lib]
name = "dataspool_rs"
path = "src/lib.rs"
[dependencies.bytepunch]
version = "0.1.0"
package = "bytepunch-rs"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.40"
features = ["full"]
optional = true