Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix multi_thread example #689

Merged
merged 1 commit into from
Oct 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions examples/multi_thread/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ version = "0.1.0"
authors = ["Denis Kolodin <deniskolodin@gmail.com>"]
edition = "2018"

[[bin]]
name = "main"
path = "src/bin/main.rs"

[[bin]]
name = "native_worker"
path = "src/bin/native_worker.rs"

[dependencies]
log = "0.4"
web_logger = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/multi_thread/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
You should compile a worker which have to be spawned in a separate thread:

```sh
cargo web build --bin native_worker --target wasm32-unknown-unknown
cargo web build --bin native_worker --release
```
1 change: 1 addition & 0 deletions examples/multi_thread/Web.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
default-target = "wasm32-unknown-unknown"
2 changes: 1 addition & 1 deletion examples/multi_thread/static/bin