Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 903 Bytes

README.md

File metadata and controls

52 lines (34 loc) · 903 Bytes

Yew MDC widgets

The Material Design Components widgets for the Yew. Live demo

Run example

Setup dependencies:

cargo install wasm-bindgen-cli cargo-make

Build example wasm client:

cargo make example_client

Run example server:

cargo make run

Development notes

To check the project, use the following command:

cargo check --workspace --all-features --all-targets

To run all tests, use the following command:

cargo test --workspace --all-features --all-targets

To check and perform formatting, use the following commands:

cargo make checkfmt
cargo make fmt

To run clippy, use the following command:

cargo make clippy