2024-07-11 00:34:50 +00:00
|
|
|
[package]
|
|
|
|
name = "reactive_stores"
|
2024-11-04 01:19:57 +00:00
|
|
|
version = "0.1.0-rc1"
|
2024-10-14 14:18:38 +00:00
|
|
|
authors = ["Greg Johnston"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "../README.md"
|
|
|
|
repository = "https://github.com/leptos-rs/leptos"
|
|
|
|
description = "Stores for holding deeply-nested reactive state while maintaining fine-grained reactive tracking."
|
2024-07-11 00:34:50 +00:00
|
|
|
rust-version.workspace = true
|
2024-08-12 23:25:47 +00:00
|
|
|
edition.workspace = true
|
2024-07-11 00:34:50 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-08-11 00:01:41 +00:00
|
|
|
guardian = "1.2"
|
2024-07-25 01:50:16 +00:00
|
|
|
itertools = "0.13.0"
|
2024-07-11 00:34:50 +00:00
|
|
|
or_poisoned = { workspace = true }
|
2024-08-11 00:01:41 +00:00
|
|
|
paste = "1.0"
|
2024-07-11 00:34:50 +00:00
|
|
|
reactive_graph = { workspace = true }
|
2024-08-11 00:01:41 +00:00
|
|
|
rustc-hash = "2.0"
|
2024-10-14 14:18:38 +00:00
|
|
|
reactive_stores_macro = { workspace = true }
|
2024-07-11 00:34:50 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-11-04 21:21:35 +00:00
|
|
|
tokio = { version = "1.41", features = ["rt-multi-thread", "macros"] }
|
2024-08-11 00:01:41 +00:00
|
|
|
tokio-test = { version = "0.4.4" }
|
2024-07-11 00:34:50 +00:00
|
|
|
any_spawner = { workspace = true, features = ["futures-executor", "tokio"] }
|
|
|
|
reactive_graph = { workspace = true, features = ["effects"] }
|