1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-03 10:51:09 +00:00

Fix build of TODO MVC on stable

This commit is contained in:
Alex Crichton 2018-10-29 13:47:09 -07:00
parent 9a3ef7b747
commit 93564f159f
5 changed files with 4 additions and 10 deletions

@ -6,10 +6,6 @@ authors = ["The wasm-bindgen Developers"]
[lib] [lib]
crate-type = ["cdylib"] crate-type = ["cdylib"]
[profile.release]
lto = true
opt-level = 's'
[build-dependencies] [build-dependencies]
askama = "0.7.2" askama = "0.7.2"

@ -5,9 +5,9 @@
set -ex set -ex
cd "$(dirname $0)" cd "$(dirname $0)"
cargo +nightly build --target wasm32-unknown-unknown cargo build --target wasm32-unknown-unknown
cargo +nightly run --manifest-path ../../crates/cli/Cargo.toml \ cargo run --manifest-path ../../crates/cli/Cargo.toml \
--bin wasm-bindgen -- \ --bin wasm-bindgen -- \
../../target/wasm32-unknown-unknown/debug/todomvc.wasm --out-dir . ../../target/wasm32-unknown-unknown/debug/todomvc.wasm --out-dir .

@ -10,7 +10,6 @@ extern crate js_sys;
extern crate web_sys; extern crate web_sys;
use std::rc::Rc; use std::rc::Rc;
#[macro_use]
extern crate askama; extern crate askama;
/// Controller of the program /// Controller of the program

@ -26,7 +26,7 @@ impl Scheduler {
pub fn set_controller(&self, controller: Controller) { pub fn set_controller(&self, controller: Controller) {
if let Ok(mut controller_data) = self.controller.try_borrow_mut() { if let Ok(mut controller_data) = self.controller.try_borrow_mut() {
controller_data.replace(controller); *controller_data = Some(controller);
} else { } else {
exit("This might be a deadlock"); exit("This might be a deadlock");
} }
@ -34,7 +34,7 @@ impl Scheduler {
pub fn set_view(&self, view: View) { pub fn set_view(&self, view: View) {
if let Ok(mut view_data) = self.view.try_borrow_mut() { if let Ok(mut view_data) = self.view.try_borrow_mut() {
view_data.replace(view); *view_data = Some(view);
} else { } else {
exit("This might be a deadlock"); exit("This might be a deadlock");
} }

@ -1,6 +1,5 @@
use js_sys::JSON; use js_sys::JSON;
use wasm_bindgen::prelude::*; use wasm_bindgen::prelude::*;
use crate::exit;
/// Stores items into localstorage /// Stores items into localstorage
pub struct Store { pub struct Store {