Bump example recursion limits

This commit is contained in:
Justin Starry 2019-06-13 10:29:53 -04:00
parent 9f2b3e1a72
commit f9cf5ea47f
12 changed files with 22 additions and 4 deletions

View File

@ -1,3 +1,5 @@
#![recursion_limit = "128"]
use stdweb::web::Date;
use yew::{html, Component, ComponentLink, Html, Renderable, ShouldRender};
use yew::services::ConsoleService;
@ -58,4 +60,3 @@ impl Renderable<Model> for Model {
}
}
}

View File

@ -1,3 +1,5 @@
#![recursion_limit="128"]
#[macro_use]
extern crate serde_derive;

View File

@ -1,3 +1,5 @@
#![recursion_limit = "128"]
mod counter;
mod button;
mod barrier;

View File

@ -1,3 +1,5 @@
#![recursion_limit = "256"]
use failure::Error;
use serde_derive::{Deserialize, Serialize};
use yew::{html, Component, ComponentLink, Html, Renderable, ShouldRender};

View File

@ -1,3 +1,5 @@
#![recursion_limit = "128"]
use yew::{html, Component, ComponentLink, Html, Renderable, ShouldRender};
pub struct Model {

View File

@ -1,4 +1,4 @@
#![recursion_limit="128"]
#![recursion_limit="512"]
use log::info;
use std::time::Duration;

View File

@ -1,3 +1,5 @@
#![recursion_limit = "128"]
#[macro_use]
extern crate stdweb;

View File

@ -1,3 +1,5 @@
#![recursion_limit = "128"]
mod router;
mod routing;
mod b_component;
@ -126,4 +128,3 @@ impl Renderable<Model> for Child {
}
}
}

View File

@ -1,3 +1,5 @@
#![recursion_limit = "128"]
use yew::{html, Component, ComponentLink, Html, Renderable, ShouldRender};
pub struct Model {

View File

@ -1,3 +1,5 @@
#![recursion_limit="128"]
use std::time::Duration;
use yew::{html, Callback, Component, ComponentLink, Html, Renderable, ShouldRender};
use yew::services::{ConsoleService, IntervalService, TimeoutService, Task};

View File

@ -1,4 +1,4 @@
#![recursion_limit="128"]
#![recursion_limit="512"]
use serde_derive::{Deserialize, Serialize};
use strum::IntoEnumIterator;

View File

@ -1,3 +1,5 @@
#![recursion_limit = "128"]
/// This example demonstrates low-level usage of scopes.
use yew::{html, Component, ComponentLink, Html, Renderable, ShouldRender};