mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 07:34:35 -05:00
26 lines
811 B
TOML
26 lines
811 B
TOML
[package]
|
|
name = "reactive_stores"
|
|
version = "0.1.0"
|
|
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."
|
|
rust-version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
guardian = "1.2"
|
|
itertools = "0.13.0"
|
|
or_poisoned = { workspace = true }
|
|
paste = "1.0"
|
|
reactive_graph = { workspace = true }
|
|
rustc-hash = "2.0"
|
|
reactive_stores_macro = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.41", features = ["rt-multi-thread", "macros"] }
|
|
tokio-test = { version = "0.4.4" }
|
|
any_spawner = { workspace = true, features = ["futures-executor", "tokio"] }
|
|
reactive_graph = { workspace = true, features = ["effects"] }
|