[package] name = "rs-store" version = "0.12.0" edition = "2021" authors = ["Changju Lee", "Changju Lee"] description = "Redux Store for Rust" license-file = "LICENSE" #homepage="https://github.com/rookiecj/rs-store" #documentation="https://docs.rs/rs-store" repository = "https://github.com/rookiecj/rs-store" readme = "README.md" keywords = ["redux", "store", "rust", "state", "management"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] thiserror = "1.0.58" once_cell = "1.19.0" crossbeam = "0.8" [[bin]] name = "calc_basic" path = "src/example/calc_basic.rs" [[bin]] name = "calc_fn_basic" path = "src/example/calc_fn_basic.rs" [[bin]] name = "calc_concurrent" path = "src/example/calc_concurrent.rs" [[bin]] name = "calc_unsubscribe" path = "src/example/calc_unsubscribe.rs" [[bin]] name = "calc_clear_subscriber" path = "src/example/calc_clear_subscribers.rs" [[bin]] name = "calc_thunk" path = "src/example/calc_thunk.rs" [[bin]] name = "calc_effect" path = "src/example/calc_effect.rs"