diff options
author | Vika <vika@fireburn.ru> | 2024-08-02 16:13:43 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-08-02 16:13:43 +0300 |
commit | 81771f9f0629488bad521d5a4f8476941e025e7d (patch) | |
tree | 3ae86f66f6cc782510aac1466932023fe33663fd /templates-neo/src | |
parent | 2318a33f9b359ae27b52cd9a19db1f6782d8dae3 (diff) | |
download | kittybox-81771f9f0629488bad521d5a4f8476941e025e7d.tar.zst |
kittybox-html: raise recursion limit to 512
I'm not sure why this is required.
Diffstat (limited to 'templates-neo/src')
-rw-r--r-- | templates-neo/src/lib.rs | 1 | ||||
-rw-r--r-- | templates-neo/src/main.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/templates-neo/src/lib.rs b/templates-neo/src/lib.rs index c5bd925..1ae9e03 100644 --- a/templates-neo/src/lib.rs +++ b/templates-neo/src/lib.rs @@ -1 +1,2 @@ +#![recursion_limit = "512"] pub mod mf2; diff --git a/templates-neo/src/main.rs b/templates-neo/src/main.rs index d2c7ea9..d374e3f 100644 --- a/templates-neo/src/main.rs +++ b/templates-neo/src/main.rs @@ -1,3 +1,4 @@ +#![recursion_limit = "512"] use std::io::Write; use kittybox_html::mf2::Entry; |