refactor(web): remove unrequired #[allow] attribute

This commit is contained in:
Benoît CORTIER 2025-04-22 19:52:10 +09:00 committed by Benoît Cortier
parent b5bd48c986
commit baafb20063

View file

@ -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 cant be used by wasm consumer anyway
#![allow(unsafe_op_in_unsafe_fn)] // We cant control code generated by `wasm-bindgen`
#![allow(clippy::new_without_default)] // Default trait cant 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 _;