mirror of
https://github.com/netbirdio/IronRDP.git
synced 2026-05-22 18:43:12 -07:00
refactor(web): remove unrequired #[allow] attribute
This commit is contained in:
committed by
Benoît Cortier
parent
b5bd48c986
commit
baafb20063
@@ -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 _;
|
||||
|
||||
Reference in New Issue
Block a user