mirror of
https://github.com/yewstack/yew.git
synced 2026-01-25 16:43:15 +00:00
* Reorganize crates * Remove symlink * Check examples * Cleanup CI scripts * nits * cleanup * cargo fmt * Fix yew-stdweb * cargo clippy --all * stdweb-examples * run_emscripten_checks.sh * Fix typo * fix typo * yew-stdweb * Run tests from yew-stdweb * fix webgl script
25 lines
487 B
TOML
25 lines
487 B
TOML
[package]
|
|
name = "multi_thread"
|
|
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.2"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
yew = { path = "../..", package = "yew-stdweb" }
|
|
|
|
[target.'cfg(all(target_arch = "wasm32", not(target_os="wasi"), not(cargo_web)))'.dependencies]
|
|
wasm-bindgen = "0.2.60"
|
|
|