The clippy::uninlined_format_args warning in 1.67 was downgraded to pedantic in 1.67.1 due to lack of support in rust-analyzer, so we're not updating that one yet.
16 lines
306 B
Rust
16 lines
306 B
Rust
#![recursion_limit = "256"]
|
|
#![forbid(non_ascii_idents)]
|
|
#![allow(clippy::uninlined_format_args)]
|
|
|
|
pub mod components;
|
|
pub mod infra;
|
|
|
|
use wasm_bindgen::prelude::{wasm_bindgen, JsValue};
|
|
|
|
#[wasm_bindgen]
|
|
pub fn run_app() -> Result<(), JsValue> {
|
|
yew::start_app::<components::app::App>();
|
|
|
|
Ok(())
|
|
}
|