mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* script for building examples minimal example updated to work with wasm-pack minimal_wb exampel to be used with wasm-bindgen directly * minimal is wasm-bindgen as default ( wp wasm-pack ) * examples updated to work with wasm-bindgen * script to run all yew/examples * upated example doc, added script to multi-thread * cargo fmt, disabled build_examples.sh * one build.sh for examples, updated doc * removed build size optimalization * wasm-pack requirement info in lib.rs * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/readme.md * Update examples/build.sh Co-Authored-By: Justin Starry <justin.m.starry@gmail.com> * Update examples/build.sh exit trap Co-Authored-By: Justin Starry <justin.m.starry@gmail.com> Co-authored-by: Justin Starry <justin.m.starry@gmail.com>
21 lines
363 B
TOML
21 lines
363 B
TOML
[package]
|
|
name = "multi_thread"
|
|
version = "0.1.0"
|
|
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "multi_thread_app"
|
|
path = "src/bin/app.rs"
|
|
|
|
[[bin]]
|
|
name = "multi_thread_worker"
|
|
path = "src/bin/native_worker.rs"
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
wasm-logger = "0.2"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
yew = { path = "../../yew" }
|