Miki Mokrysz
Miki Mokrysz
Does this limit Firecracker to EC2 instances? If so, why such a limitation–is the emulated `CPUID` required for the guest to understand what instructions are available?
As far as I can tell there still isn't a way to do this. I'm surprised as it makes `piston` unsuitable for non-trivial dynamic graphics. 🙁
@bvssvni Awesome, thank you!
Drawing to that buffer is quite slow but does work for this use-case.
Still an issue as of 0.15.0
@alamb Hi, pinging you as a maintainer. I want to use this crate, but I'd need to fix this issue to prevent users from triggering stack overflows. Hoping to get...
@alamb Thanks for such a quick response, I appreciate it. I'll get working on the PR soonish and let you know how it goes :)
serde-json is using a `check_recursion { ... }` macro each time it recurses deeper: https://github.com/serde-rs/json/blob/master/src/de.rs#L1273-L1304. That works OK for them, they only use it 8 times. But sqlparser branches a...
> I don't understand why they need to be in a separate crate Specifically the function annotation. As I understand it those have to be proc macros, and proc macros...
> Why? I'd expect only a few productions of the SQL grammar to support recursion I'd intended to track the parser's call stack. Good point though.