leptos/reactive_stores/Cargo.toml

26 lines
815 B
TOML
Raw Permalink Normal View History

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
edition.workspace = true
2024-07-11 00:34:50 +00:00
[dependencies]
2024-08-11 00:01:41 +00:00
guardian = "1.2"
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]
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"] }