snerd-rust 0.2.1

A lightweight, robust, asynchronous background job queue and persistence engine built for high-performance applications.
Documentation
[package]
name = "snerd-rust"
version = "0.2.1"
edition = "2024"
description = "A lightweight, robust, asynchronous background job queue and persistence engine built for high-performance applications."
license = "MIT"
repository = "https://github.com/greyhands2/snerd-rust" # TODO: Update this with the real URL

[dependencies]
chrono = { version = "0.4.45", features = ["serde"] }
fs3 = "0.5.0"
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
tokio = { version = "1.53.1", features = ["rt-multi-thread", "macros", "time", "fs", "sync"] }
uuid = { version = "1.24.0", features = ["v4"] }
xxhash-rust = { version = "0.8.18", features = ["xxh64"] }

[dev-dependencies]
tempfile = "3.27.0"