[[bin]]
name = "release"
path = "tools/release.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.toml_edit]
version = "0.22"
[dev-dependencies.rand]
version = "0.9.0-alpha.2"
[dev-dependencies.tempfile]
version = "3.14.0"
[[example]]
name = "directory_example"
path = "examples/directory_example.rs"
[[example]]
name = "memory_example"
path = "examples/memory_example.rs"
[lib]
name = "transientdb"
path = "src/lib.rs"
[package]
authors = ["Sovran.la <support@sovran.la>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database"]
description = "A lightweight, thread-safe temporary data storage system designed for efficient handling of transient data in Rust applications"
edition = "2021"
keywords = ["database", "storage", "temporary", "thread-safe"]
license = "MIT"
name = "transientdb"
readme = "README.md"
repository = "https://github.com/sovran-rs/transientdb"
version = "0.1.2"
[[test]]
name = "performance_tests"
path = "tests/performance_tests.rs"
[[test]]
name = "recovery_tests"
path = "tests/recovery_tests.rs"
[[test]]
name = "stress_tests"
path = "tests/stress_tests.rs"