Frédéric Nieto

Results 93 comments of Frédéric Nieto

For a simple version essentially take the template hierarchy, flatten it into a special template that only takes non dependent AST nodes, then iterate over each node in a pre-render...

it is slower, but it's better than having 50MB of templates per user request in the DB, which would represent 99% of the user's data consumption while it could be...

i think it would be easier to just use consts with `include_str("...")` and then include the templates with [add_raw_templates](https://docs.rs/tera/latest/tera/struct.Tera.html#method.add_raw_templates) if you don't call that function the const should not include...

@chpio If you do not need runtime modified sass, i made the PR #163 for compile time macros. you can try it by adding `rsass-macro = {git = "https://github.com/Wicpar/rsass.git"}` to...

needs to be compiled on linux to be sure before merging

in addition to the PR #1488 i see a big change that can be made in iobuf by using const generics in the config for the segment size. As they...

turns out the modifications are impossible without removing the option to change the segment_size, rust nightly using const expressions or leaking an ugly const generic into every single struct of...

have you tried reducing the segment size in the options ? it could help i think

Coexistence is supported: `resolver.create_pem_handle(pem, false)` To update `handle.use_pem(pem, false)` Domains are automatically inferred from the pem. Rate limits for new certs per domain are not taken in account because new...

now all that is left is testing in real world conditions, integrating it with the rest of the crate, renaming the structures to better names and documenting the functionnalities.