reducer 1.1.0

A predictable reactive framework for Rust apps
1
2
3
4
5
6
7
8
9
10
11
12
13
## Guidelines

* All code submitted to Reducer via pull requests is
assumed to be [licensed under the MIT]https://github.com/brunocodutra/reducer/blob/master/LICENSE.
* Every code change must be covered by unit tests, use [`tarpaulin`][tarpaulin] to generate the code coverage report:
  + `cargo +nightly tarpaulin -v --all-features`
* Besides `cargo test`, make sure [`Clippy`][clippy] and [rustfmt] checks also pass before submitting a pull request:
  + `cargo +nightly clippy --all-targets --all-features -- -D warnings`
  + `cargo +nightly fmt --all -- --check`

[clippy]: https://github.com/rust-lang/rust-clippy#usage
[rustfmt]: https://github.com/rust-lang/rustfmt#quick-start
[tarpaulin]: https://github.com/xd009642/tarpaulin#usage