diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2018-07-09 23:02:17 -0700 |
---|---|---|
committer | Fernando Jiménez Moreno <ferjmoreno@gmail.com> | 2018-07-30 14:21:44 +0200 |
commit | 8f9a081ff0395e84bf303c1baa68447c087f6243 (patch) | |
tree | cdc9ee60abc5fef058ce72e6d5eda53ca00cfbb8 /components/script/lib.rs | |
parent | 34ba14385a52f062904c252818174a3c8d175016 (diff) | |
download | servo-8f9a081ff0395e84bf303c1baa68447c087f6243.tar.gz servo-8f9a081ff0395e84bf303c1baa68447c087f6243.zip |
Fix Trusted usage in audio decoder to queue tasks (#3)
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 5125607219b..3275f10a65f 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -13,6 +13,8 @@ #![deny(unsafe_code)] #![allow(non_snake_case)] +#![recursion_limit = "128"] + #![doc = "The script crate contains all matters DOM."] #![plugin(script_plugins)] |