diff --git a/crates/ironrdp-web/src/lib.rs b/crates/ironrdp-web/src/lib.rs index dbbf254e..124294ff 100644 --- a/crates/ironrdp-web/src/lib.rs +++ b/crates/ironrdp-web/src/lib.rs @@ -1,10 +1,9 @@ #![doc = include_str!("../README.md")] #![doc(html_logo_url = "https://cdnweb.devolutions.net/images/projects/devolutions/logos/devolutions-icon-shadow.svg")] -#![allow(clippy::new_without_default)] // Default trait can’t be used by wasm consumer anyway -#![allow(unsafe_op_in_unsafe_fn)] // We can’t control code generated by `wasm-bindgen` +#![allow(clippy::new_without_default)] // Default trait can’t be used by wasm consumer anyway. -// Silence the unused_crate_dependencies lint -// These crates are added just to enable additional WASM features +// Silence the unused_crate_dependencies lint. +// These crates are added just to enable additional WASM features. extern crate chrono as _; extern crate getrandom as _; extern crate time as _;