Michael Freeborn

Results 16 issues of Michael Freeborn

The README example uses an in-memory SQLite database, which actually doesn't work properly off the bat. It would be better if the README contained a more complete example, at least...

It would be great if the `report` subcommand showed a simple line chart with time on the x axis and solar elevation on the y axis. It would be even...

It would be really good to boost test coverage throughout the library, and one way to monitor that would be to use something like [cargo-llvm-cov](https://github.com/taiki-e/cargo-llvm-cov) and [codecov.io](https://about.codecov.io/). I've put together...

_Asking this here as I've received no responses on the Raspberry Pi forums or the Raspberry Pi Stack Exchange_ My goal is for videos and images to have timestamps on...

I just tried to install the library from the latest commit (in order to be able to use the greyworld auto-white balance mode) but I had to do a bit...

Do let me know if this is not the correct place for this issue - I've been half way across the internet trying to solve this. **Describe the bug** I'm...

Looking at the documentation [here](https://docs.rs/darling/latest/darling/#fromvariant), it suggests that the type for the `fields` field is `Option`. Having just tried to implement this (using `darling` v0.14.1), I get an error stating...

I have an enum which I am serializing using `serde` and `serde_json` so that some of the variants are of `String` type, and others are `bool`: ```rust enum Filter {...