Lukas Kalbertodt

Results 339 comments of Lukas Kalbertodt

Yes, this is intended. Supporting doc comments kind of implies supporting doc tests. But I guess it doesn't hurt to mention it explicitly, so feel free to open a PR!

The error you are getting is because all statics created with `lazy_static` have to be `Send` and `Sync`. If you change `Box`, [it works](https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=37534f4afdd18122b86a55d12e42a5b9). (I had to change another unrelated...

Do I understand this PR correctly in that it does *not* add support for "aggregated result set" as discussed in [this product discussion](https://github.com/meilisearch/product/discussions/489)? It seems like everyone in that discussion...

> This will be explored in a second iteration. Thank you for the swift reply! That's basically all I wanted to hear; I was simply confused that it was not...

Hi @t-moe, thanks for the PR! I don't have a lot of time to work on libtest-mimic currently, so my reviews won't be very quick. I just cherry picked the...

Hi! I don't quite understand the use case yet. Is it a requirement to run the tests in a no-std environment? Usually for tests you can just use your development...

Hi and thanks for your interest in working on this! Sure, go ahead and try implementing some. If you have any questions feel free to write me a mail (see...

> Would you be open at all to formatting the code via rustfmt, maybe as a separate change? To be honest this is a huge discouragement for me to contribute...

@jreniel Is there any reason you have to derive `Config` for `RastersConfig` and `RasterConfig`? Deriving `Deserialize` Should suffice. At least you can make it work, i.e. read a file that...