[[bin]]
name = "release"
path = "tools/release.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.futures-channel]
optional = true
version = "0.3"
[dependencies.js-sys]
optional = true
version = "0.3"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.toml_edit]
version = "0.22"
[dependencies.wasm-bindgen]
optional = true
version = "0.2"
[dependencies.wasm-bindgen-futures]
optional = true
version = "0.4"
[dependencies.web-sys]
features = ["console", "Window", "Event", "EventTarget", "IdbFactory", "IdbDatabase", "IdbObjectStore", "IdbObjectStoreParameters", "IdbOpenDbRequest", "IdbRequest", "IdbTransaction", "IdbTransactionMode", "IdbVersionChangeEvent", "DomStringList"]
optional = true
version = "0.3"
[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"
[features]
default = []
web = ["web-sys", "js-sys", "wasm-bindgen", "wasm-bindgen-futures", "futures-channel"]
[lib]
name = "transientdb"
path = "src/lib.rs"
[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(wasm_bindgen_unstable_test_coverage)"]
level = "warn"
priority = 0
[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.2.1"
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
features = ["js"]
version = "0.2"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies.gloo-timers]
features = ["futures"]
version = "0.3"
[target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen-test]
version = "0.3"
[[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"
[[test]]
name = "transient_unit_tests"
path = "tests/transient_unit_tests.rs"
[[test]]
name = "transient_wasm_tests"
path = "tests/transient_wasm_tests.rs"