Armin Ronacher
Armin Ronacher
Right now the choice loader and the prefix loader are using get_source to load templates. That's unfortunate because not every loader can provide the source for templates (for example the...
Right now if three templates down the line all import with context the same thing make_module is called a whole bunch of times. That might be worth caching if possible....
### Motivation Chrome, Firefox and now also Sentry support DWARF for WebAssembly as debug format. In particularly for crash reporting systems like Sentry DWARF is a very important tool to...
Click evolved unfortunately really badly the last two releases because the internal logic just grew too complex and it's totally not sound. This needs to be cleaned up but I'm...
Right now there is just one way to format everything and it does not make everybody happy. Also it makes it hard for us to change it without potentially breaking...
These two special loop variables are currently not supported but both very useful. `loop.previtem` points to the last value of the iteration, `loop.nextitem` to the next one.
The library currently does not support sending a query with parameters out of band (eg: to avoid sql injections). It would be nice to have a way to send a...
Currently if `poll_ready` returns `Ready` it effectively reserves something (for instance a semaphore token). This means you *must* be following up with `call` next. The only other option is to...
This changes the release builds to optimize for size and strip symbols. I don't think this is necessarily a good idea but I wonder how small the linux binaries get...
Out of curiosity I tried to load a Windows CE minidump. This was triggered by the discussion in https://github.com/luser/rust-minidump/pull/466. Since I do not have a Windows CE dump I searched...