2024-07-11 00:34:50 +00:00
|
|
|
[package]
|
|
|
|
name = "reactive_stores_macro"
|
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
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-22 00:39:23 +00:00
|
|
|
convert_case = "0.6"
|
2024-09-29 01:03:28 +00:00
|
|
|
proc-macro-error2 = "2.0"
|
2024-08-11 00:01:41 +00:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
2024-09-20 19:57:54 +00:00
|
|
|
syn = { version = "2.0", features = ["full"] }
|