aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/bindings/mod.rs
diff options
context:
space:
mode:
authorSamson <16504129+sagudev@users.noreply.github.com>2024-10-03 12:14:43 +0200
committerGitHub <noreply@github.com>2024-10-03 10:14:43 +0000
commit163e47766841725201f683495f4506f35fc9614c (patch)
treeb7e33c89c380a2192aa20c393277e5cb9c53d81e /components/script/dom/bindings/mod.rs
parentc7a4e4f627f0bf331cedc1700ddeb92ffcba4e78 (diff)
downloadservo-163e47766841725201f683495f4506f35fc9614c.tar.gz
servo-163e47766841725201f683495f4506f35fc9614c.zip
Less `allow(crown::unrooted_must_root)` in bindings (#33630)
* Limit `allow(crown::unrooted_must_root)` in bindings Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com> * extra_decorators Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com> --------- Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
Diffstat (limited to 'components/script/dom/bindings/mod.rs')
-rw-r--r--components/script/dom/bindings/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bindings/mod.rs b/components/script/dom/bindings/mod.rs
index e31d79cc494..7d6d03d737a 100644
--- a/components/script/dom/bindings/mod.rs
+++ b/components/script/dom/bindings/mod.rs
@@ -169,7 +169,7 @@ pub mod xmlname;
/// Generated JS-Rust bindings.
#[allow(missing_docs, non_snake_case)]
pub mod codegen {
- #[allow(dead_code, crown::unrooted_must_root)]
+ #[allow(dead_code)]
pub mod Bindings {
include!(concat!(env!("OUT_DIR"), "/Bindings/mod.rs"));
}