Adrian Black
Adrian Black
Well, the honest truth is no - no plans or timeframe. I have a half-finished cleanup that has been on the back burner for a while, so I don't know...
Is this still something you'd be interested in a PR for? Here's my use case: my system uses sqlite to catalog a large number of binary files on disk, indexing...
I could go either way. The advantage to closures I think is just the scope of the changes; it's relatively easy to supply some `Fn`s and run them at the...
Actually, I think the iterator approach isn't so much harder after all. But in going through the various `migrate` methods I've noticed that the `migrate_grouped` implementations in `sync.rs` and `async.rs`...
I have iteration working, but: the iterator needs to hold onto the database connection. So, either you need a non-standard `iter()` method like `runner.iter(&mut conn)`, or you need to supply...
`iter` methods by convention are implementations of `IntoIterator`, which does not allow for any extra parameters, just `self`. Especially if you want to be able to do something like ```rust...
This repo doesn't appear to be maintained anymore, and Tidal looks to have cut off the browser it's packaging. You can update the nativefier version and work through a few...
I think this is a Swagger UI bug, actually. If you're able to see the right values listed in your browser but the request is being sent incorrectly when you...
Can you give me an example of how you have routing configured?
I think it's just the lack of a leading slash in the UriTemplate that's confusing it, but I may be missing something about what you're doing - I've been deep...