-
## Description
The following code panics:
```rust
use minijinja::Environment;
fn main() {
let env = Environment::new();
let expr = env.compile_expression("\\{").unwrap();
}
```
…
-
### Bug Description
I'm seeing this build error when trying to compile maturin `0.13.1` the error appears to have been triggered by [this](https://github.com/PyO3/maturin/commit/cb4696a8d1ed41562d0…
-
Would it be possible to add some sort of hook to allow my code to resolve the include files when they are needed, instead of adding them in ahead of time?
Right now, as far as I can tell, I have to…
-
### Problem description
This is an independent followup on https://github.com/termux/termux-packages/issues/6088 and I'm also aware of https://github.com/termux/termux-packages/issues/1745.
I'm …
-
**Is your feature request related to a problem? Please describe.**
I was converting a nodejs app to rust with actix-web. So i am using lettre "0.10.0-rc.4".
I had an ejs file of html code that shoul…
-
I got a pull request sent for the new yank which I very much appreciate (https://github.com/mitsuhiko/minijinja/pull/21). However the latest version uses `addr_of_mut!` which bumps up the rustc requir…
-
https://github.com/mitsuhiko/minijinja
-
The Error type in minijinja is `!Send` and `!Sync` and that makes needlessly annoying to use it with `anyhow`. Is it possible to bound `source` to be Send and Sync?