mirror of
https://github.com/nitnelave/lldap.git
synced 2023-04-12 14:25:13 +00:00
77ced7ea43
That prevents a class of unicode attacks, e.g. invisible characters.
15 lines
308 B
Rust
15 lines
308 B
Rust
#![recursion_limit = "256"]
|
|
#![forbid(non_ascii_idents)]
|
|
#![allow(clippy::nonstandard_macro_braces)]
|
|
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(())
|
|
}
|