Rasmus Kaj
Rasmus Kaj
It is possible to define a function `render` like this: ```rust fn rendertemplate(f: F) -> String { let mut buf = Vec::new(); f(&mut buf).unwrap(); // Or return a Result buf...
Wouldn't `AsRef` be a lot nicer? Doing `res.set_content_type("text/html; charset=utf8");` may seem nice, but is error-prone and inefficient (having to parse the string and potentially panic only to format it again)....
There is a few packages providing exif info currently. I use [kamadak-exif](https://lib.rs/crates/kamadak-exif) in a project and is quite happy with that. But yes, better integration with the image echosystem would...
@Gelox : > @jxs Does that mean that it is not possible to parse vectors from a GET URL unless you choose to parse the raw string on your own?...
It would also be nice to have an easy way to access the requested compression algorithm from a handler function, to e.g. use a pre-compressed version of a static resource...
Making it possible to call rsass from other compilation environments was the point of the current `Context` / `Loader` design, but that focused on making it easy to implement the...
I'm certainly not opposed to this, but it is not a big priority for me (at least not until the sass language support is more complete). If you (or someone...
Bootstrap is not expected to work yet, as it uses `@extend` which is not supported by rsass yet. I think rsass should handle circular dependencies as well as other sass...
This is similar to #168 . I'm not sure if it is a problem with 64-bit floats on a 32-bit architecture or if it may be a problem with my...
Another workaround is to change the `first_template.rs.html` like this: ``` @use super::next_template_html; @(content: Content) @:next_template_html({@:content()}) ``` I'm considering wether I shold document this a required workaround or basically revert #125...